From 2a467547ed5963ca96041a338b34c2264619d8b7 Mon Sep 17 00:00:00 2001 From: PythonFZ Date: Thu, 4 Dec 2025 14:13:58 +0100 Subject: [PATCH 1/4] aserpc entry point --- mlipx/aserpc.py | 134 ++++++++++++++++++++++++++++++++++++++++++++++++ pyproject.toml | 3 ++ 2 files changed, 137 insertions(+) create mode 100644 mlipx/aserpc.py diff --git a/mlipx/aserpc.py b/mlipx/aserpc.py new file mode 100644 index 00000000..9168ba8d --- /dev/null +++ b/mlipx/aserpc.py @@ -0,0 +1,134 @@ +"""ASE RPC calculator metadata provider. + +This module provides calculator metadata for the aserpc plugin system. +Uses importlib.util.find_spec() for lightweight package detection without +triggering expensive imports (like torch). + +Register via entry point in pyproject.toml: + [project.entry-points."aserpc.calculators"] + mlipx = "mlipx.aserpc:get_calculators" +""" + +import importlib.util + + +def _create_orb_calculator(name: str = "orb_v2", device: str = "auto"): + """Wrapper for ORB models that need pretrained loading.""" + from orb_models.forcefield import pretrained + from orb_models.forcefield.calculator import ORBCalculator + + method = getattr(pretrained, name) + if device == "auto": + import torch + + device = "cuda" if torch.cuda.is_available() else "cpu" + orbff = method(device=device) + return ORBCalculator(orbff, device=device) + + +def _create_matgl_calculator(path: str): + """Wrapper for matgl models that need load_model first.""" + import matgl + from matgl.ext.ase import PESCalculator + + potential = matgl.load_model(path) + return PESCalculator(potential) + + +def _create_fairchem_calculator( + path: str, task_name: str = "oc20", device: str = "auto" +): + """Wrapper for fairchem models.""" + from fairchem.core import FAIRChemCalculator + from fairchem.core.units.mlip_unit import load_predict_unit + + if device == "auto": + import torch + + device = "cuda" if torch.cuda.is_available() else "cpu" + predictor = load_predict_unit(path, device=device) + return FAIRChemCalculator(predictor, task_name=task_name) + + +def get_calculators() -> dict[str, dict]: + """Return metadata for available calculators. + + Each entry is: {"factory": "module:class", "kwargs": {...}} + or {"factory_fn": callable, "kwargs": {...}} for custom initialization. + + Uses importlib.util.find_spec() to check availability without importing. + """ + calcs = {} + + # MACE models + if importlib.util.find_spec("mace") is not None: + calcs["mace-mpa-0"] = { + "factory": "mace.calculators:mace_mp", + "kwargs": {"model": "../../models/mace-mpa-0-medium.model"}, + } + calcs["mace-matpes-pbe-0"] = { + "factory": "mace.calculators:mace_mp", + "kwargs": {"model": "../../models/mace-matpes-pbe-omat-ft.model"}, + } + + # SevenNet models + if importlib.util.find_spec("sevenn") is not None: + calcs["7net-0"] = { + "factory": "sevenn.sevennet_calculator:SevenNetCalculator", + "kwargs": {"model": "7net-0"}, + } + calcs["7net-mf-ompa-mpa"] = { + "factory": "sevenn.sevennet_calculator:SevenNetCalculator", + "kwargs": {"model": "7net-mf-ompa", "modal": "mpa"}, + } + + # ORB models (custom init) + if importlib.util.find_spec("orb_models") is not None: + calcs["orb-v2"] = { + "factory_fn": _create_orb_calculator, + "kwargs": {"name": "orb_v2"}, + } + calcs["orb-v3"] = { + "factory_fn": _create_orb_calculator, + "kwargs": {"name": "orb_v3_conservative_inf_omat"}, + } + + # CHGNet + if importlib.util.find_spec("chgnet") is not None: + calcs["chgnet"] = {"factory": "chgnet.model:CHGNetCalculator"} + + # MatterSim + if importlib.util.find_spec("mattersim") is not None: + calcs["mattersim"] = { + "factory": "mattersim.forcefield:MatterSimCalculator", + } + + # GRACE (tensorpotential) + if importlib.util.find_spec("tensorpotential") is not None: + calcs["grace-2l-omat"] = { + "factory": "tensorpotential.calculator:TPCalculator", + "kwargs": {"model": "../../models/GRACE-2L-OMAT"}, + } + + # MatGL models (custom init) + if importlib.util.find_spec("matgl") is not None: + calcs["matpes-pbe"] = { + "factory_fn": _create_matgl_calculator, + "kwargs": {"path": "../../models/TensorNet-MatPES-PBE-v2025.1-PES"}, + } + + # FairChem models (custom init) + if importlib.util.find_spec("fairchem") is not None: + calcs["meta-uma-sm"] = { + "factory_fn": _create_fairchem_calculator, + "kwargs": {"path": "../../models/meta-uam.pt"}, + } + + # PET-MAD + if importlib.util.find_spec("pet_mad") is not None: + calcs["pet-mad"] = { + "factory": "pet_mad.calculator:PETMADCalculator", + "kwargs": {"checkpoint_path": "../../models/pet-mad-latest.ckpt"}, + } + + return calcs diff --git a/pyproject.toml b/pyproject.toml index c22b269f..586951c3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -137,3 +137,6 @@ select = ["I", "F", "E", "C", "W"] [project.entry-points.'zntrack.nodes'] mlipx = 'mlipx.entrypoints:nodes' + +[project.entry-points.'aserpc.calculators'] +mlipx = 'mlipx.aserpc:get_calculators' From 27dc64605c08e216f5eee5f95a59fe089ada2a2c Mon Sep 17 00:00:00 2001 From: Fabian Zills Date: Thu, 4 Dec 2025 14:23:33 +0100 Subject: [PATCH 2/4] reduce supported models --- mlipx/aserpc.py | 57 ------------------------------------------------- 1 file changed, 57 deletions(-) diff --git a/mlipx/aserpc.py b/mlipx/aserpc.py index 9168ba8d..093727de 100644 --- a/mlipx/aserpc.py +++ b/mlipx/aserpc.py @@ -26,30 +26,6 @@ def _create_orb_calculator(name: str = "orb_v2", device: str = "auto"): return ORBCalculator(orbff, device=device) -def _create_matgl_calculator(path: str): - """Wrapper for matgl models that need load_model first.""" - import matgl - from matgl.ext.ase import PESCalculator - - potential = matgl.load_model(path) - return PESCalculator(potential) - - -def _create_fairchem_calculator( - path: str, task_name: str = "oc20", device: str = "auto" -): - """Wrapper for fairchem models.""" - from fairchem.core import FAIRChemCalculator - from fairchem.core.units.mlip_unit import load_predict_unit - - if device == "auto": - import torch - - device = "cuda" if torch.cuda.is_available() else "cpu" - predictor = load_predict_unit(path, device=device) - return FAIRChemCalculator(predictor, task_name=task_name) - - def get_calculators() -> dict[str, dict]: """Return metadata for available calculators. @@ -64,11 +40,6 @@ def get_calculators() -> dict[str, dict]: if importlib.util.find_spec("mace") is not None: calcs["mace-mpa-0"] = { "factory": "mace.calculators:mace_mp", - "kwargs": {"model": "../../models/mace-mpa-0-medium.model"}, - } - calcs["mace-matpes-pbe-0"] = { - "factory": "mace.calculators:mace_mp", - "kwargs": {"model": "../../models/mace-matpes-pbe-omat-ft.model"}, } # SevenNet models @@ -103,32 +74,4 @@ def get_calculators() -> dict[str, dict]: "factory": "mattersim.forcefield:MatterSimCalculator", } - # GRACE (tensorpotential) - if importlib.util.find_spec("tensorpotential") is not None: - calcs["grace-2l-omat"] = { - "factory": "tensorpotential.calculator:TPCalculator", - "kwargs": {"model": "../../models/GRACE-2L-OMAT"}, - } - - # MatGL models (custom init) - if importlib.util.find_spec("matgl") is not None: - calcs["matpes-pbe"] = { - "factory_fn": _create_matgl_calculator, - "kwargs": {"path": "../../models/TensorNet-MatPES-PBE-v2025.1-PES"}, - } - - # FairChem models (custom init) - if importlib.util.find_spec("fairchem") is not None: - calcs["meta-uma-sm"] = { - "factory_fn": _create_fairchem_calculator, - "kwargs": {"path": "../../models/meta-uam.pt"}, - } - - # PET-MAD - if importlib.util.find_spec("pet_mad") is not None: - calcs["pet-mad"] = { - "factory": "pet_mad.calculator:PETMADCalculator", - "kwargs": {"checkpoint_path": "../../models/pet-mad-latest.ckpt"}, - } - return calcs From cf8acff1337b47ba52824ff6320bf02720b5cfef Mon Sep 17 00:00:00 2001 From: Fabian Zills Date: Thu, 4 Dec 2025 15:27:32 +0100 Subject: [PATCH 3/4] add aserpc --- pyproject.toml | 3 +- uv.lock | 19593 ++++++++++++++++++++++------------------------- 2 files changed, 9334 insertions(+), 10262 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 586951c3..aa6bcf52 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,7 +10,7 @@ authors = [ readme = "README.md" license = "MIT" -requires-python = ">=3.10" +requires-python = ">=3.11" keywords=["data-version-control", "machine-learning", "reproducibility", "collaboration", "machine-learned interatomic potential", "mlip", "mlff"] dependencies = [ @@ -26,6 +26,7 @@ dependencies = [ "dvc-s3>=3.2.0", "mpcontribs-client>=5.10.2", "pydantic>=2.10.6", + "aserpc>=0.1.1", ] [dependency-groups] diff --git a/uv.lock b/uv.lock index cc4e5261..acdf4946 100644 --- a/uv.lock +++ b/uv.lock @@ -1,547 +1,511 @@ version = 1 -revision = 2 -requires-python = ">=3.10" +revision = 3 +requires-python = ">=3.11" resolution-markers = [ - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", ] conflicts = [[ { package = "mlipx", extra = "mace" }, @@ -571,16 +535,28 @@ conflicts = [[ [[package]] name = "absl-py" -version = "2.3.0" +version = "2.3.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/10/2a/c93173ffa1b39c1d0395b7e842bbdc62e556ca9d8d3b5572926f3e4ca752/absl_py-2.3.1.tar.gz", hash = "sha256:a97820526f7fbfd2ec1bce83f3f25e3a14840dac0d8e02a0b71cd75db3f77fc9", size = 116588, upload-time = "2025-07-03T09:31:44.05Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8f/aa/ba0014cc4659328dc818a28827be78e6d97312ab0cb98105a770924dc11e/absl_py-2.3.1-py3-none-any.whl", hash = "sha256:eeecf07f0c2a93ace0772c92e596ace6d3d3996c042b2128459aaae2a76de11d", size = 135811, upload-time = "2025-07-03T09:31:42.253Z" }, +] + +[[package]] +name = "accessible-pygments" +version = "0.0.5" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/03/15/18693af986560a5c3cc0b84a8046b536ffb2cdb536e03cce897f2759e284/absl_py-2.3.0.tar.gz", hash = "sha256:d96fda5c884f1b22178852f30ffa85766d50b99e00775ea626c23304f582fc4f", size = 116400, upload-time = "2025-05-27T09:15:50.143Z" } +dependencies = [ + { name = "pygments" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/bc/c1/bbac6a50d02774f91572938964c582fff4270eee73ab822a4aeea4d8b11b/accessible_pygments-0.0.5.tar.gz", hash = "sha256:40918d3e6a2b619ad424cb91e556bd3bd8865443d9f22f1dcdf79e33c8046872", size = 1377899, upload-time = "2024-05-10T11:23:10.216Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/87/04/9d75e1d3bb4ab8ec67ff10919476ccdee06c098bcfcf3a352da5f985171d/absl_py-2.3.0-py3-none-any.whl", hash = "sha256:9824a48b654a306168f63e0d97714665f8490b8d89ec7bf2efc24bf67cf579b3", size = 135657, upload-time = "2025-05-27T09:15:48.742Z" }, + { url = "https://files.pythonhosted.org/packages/8d/3f/95338030883d8c8b91223b4e21744b04d11b161a3ef117295d8241f50ab4/accessible_pygments-0.0.5-py3-none-any.whl", hash = "sha256:88ae3211e68a1d0b011504b2ffc1691feafce124b845bd072ab6f9f66f34d4b7", size = 1395903, upload-time = "2024-05-10T11:23:08.421Z" }, ] [[package]] name = "aiobotocore" -version = "2.22.0" +version = "2.26.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "aiohttp" }, @@ -591,9 +567,9 @@ dependencies = [ { name = "python-dateutil" }, { name = "wrapt" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/9c/4c/113c4f5611103bba8e5252805fbee7944f5d9541addba9a96b091c0c4308/aiobotocore-2.22.0.tar.gz", hash = "sha256:11091477266b75c2b5d28421c1f2bc9a87d175d0b8619cb830805e7a113a170b", size = 110322, upload-time = "2025-05-01T16:45:45.484Z" } +sdist = { url = "https://files.pythonhosted.org/packages/4d/f8/99fa90d9c25b78292899fd4946fce97b6353838b5ecc139ad8ba1436e70c/aiobotocore-2.26.0.tar.gz", hash = "sha256:50567feaf8dfe2b653570b4491f5bc8c6e7fb9622479d66442462c021db4fadc", size = 122026, upload-time = "2025-11-28T07:54:59.956Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/00/8e/ffa5840cb7de19ada85bda1fae1ae22671a18992e9373f2e2df9db5389b5/aiobotocore-2.22.0-py3-none-any.whl", hash = "sha256:b4e6306f79df9d81daff1f9d63189a2dbee4b77ce3ab937304834e35eaaeeccf", size = 78930, upload-time = "2025-05-01T16:45:43.508Z" }, + { url = "https://files.pythonhosted.org/packages/b7/58/3bf0b7d474607dc7fd67dd1365c4e0f392c8177eaf4054e5ddee3ebd53b5/aiobotocore-2.26.0-py3-none-any.whl", hash = "sha256:a793db51c07930513b74ea7a95bd79aaa42f545bdb0f011779646eafa216abec", size = 87333, upload-time = "2025-11-28T07:54:58.457Z" }, ] [package.optional-dependencies] @@ -612,88 +588,104 @@ wheels = [ [[package]] name = "aiohttp" -version = "3.12.12" +version = "3.13.2" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "aiohappyeyeballs" }, { name = "aiosignal" }, - { name = "async-timeout", marker = "python_full_version < '3.11'" }, { name = "attrs" }, { name = "frozenlist" }, { name = "multidict" }, { name = "propcache" }, { name = "yarl" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/f2/84/ea27e6ad14747d8c51afe201fb88a5c8282b6278256d30a6f71f730add88/aiohttp-3.12.12.tar.gz", hash = "sha256:05875595d2483d96cb61fa9f64e75262d7ac6251a7e3c811d8e26f7d721760bd", size = 7818643, upload-time = "2025-06-10T05:22:00.247Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/b4/d9/cfde93b9cb75253c716b8b1c773565209e3d4dd0772dd3ce3a2adcaa4639/aiohttp-3.12.12-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:6f25e9d274d6abbb15254f76f100c3984d6b9ad6e66263cc60a465dd5c7e48f5", size = 702071, upload-time = "2025-06-10T05:18:23.986Z" }, - { url = "https://files.pythonhosted.org/packages/ee/b0/46e38b8bc0bc645317deec32612af922ad9bafd85a1df255a67c2f2305f6/aiohttp-3.12.12-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:b8ec3c1a1c13d24941b5b913607e57b9364e4c0ea69d5363181467492c4b2ba6", size = 478436, upload-time = "2025-06-10T05:18:28.411Z" }, - { url = "https://files.pythonhosted.org/packages/8f/47/9c83db7f02ca71eb99a707ee13657fc24ba703b9babc59000c1f58ac1198/aiohttp-3.12.12-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:81ef2f9253c327c211cb7b06ea2edd90e637cf21c347b894d540466b8d304e08", size = 466213, upload-time = "2025-06-10T05:18:30.706Z" }, - { url = "https://files.pythonhosted.org/packages/31/fe/4690c112e269e06c9182c32eeb43f3a95c4f203fdb095502717327993b80/aiohttp-3.12.12-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:28ded835c3663fd41c9ad44685811b11e34e6ac9a7516a30bfce13f6abba4496", size = 1648258, upload-time = "2025-06-10T05:18:32.498Z" }, - { url = "https://files.pythonhosted.org/packages/c8/1f/dacca6c7bbe69c77d8535d7a672478803e7078cc20fd9993fe09aa5be880/aiohttp-3.12.12-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:a4b78ccf254fc10605b263996949a94ca3f50e4f9100e05137d6583e266b711e", size = 1622316, upload-time = "2025-06-10T05:18:34.357Z" }, - { url = "https://files.pythonhosted.org/packages/ff/65/5ef47708f70524fcdecda735e0aea06e0feb7b8679e976e9bd1e7900f4c0/aiohttp-3.12.12-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4f4a5af90d5232c41bb857568fe7d11ed84408653ec9da1ff999cc30258b9bd1", size = 1694723, upload-time = "2025-06-10T05:18:36.858Z" }, - { url = "https://files.pythonhosted.org/packages/18/62/ab32bfa59f61292e4096c383316863e10001eec30e5b4b314856ed7156e2/aiohttp-3.12.12-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ffa5205c2f53f1120e93fdf2eca41b0f6344db131bc421246ee82c1e1038a14a", size = 1737037, upload-time = "2025-06-10T05:18:39.663Z" }, - { url = "https://files.pythonhosted.org/packages/c1/b9/8b8f793081311e4f63aea63003a519064048e406c627c0454d6ed09dbc99/aiohttp-3.12.12-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f68301660f0d7a3eddfb84f959f78a8f9db98c76a49b5235508fa16edaad0f7c", size = 1641701, upload-time = "2025-06-10T05:18:41.666Z" }, - { url = "https://files.pythonhosted.org/packages/1a/5c/72f510d42d626463b526345dcb8d14b390de89a9ba27a4717b518460bcd4/aiohttp-3.12.12-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:db874d3b0c92fdbb553751af9d2733b378c25cc83cd9dfba87f12fafd2dc9cd5", size = 1581824, upload-time = "2025-06-10T05:18:44.136Z" }, - { url = "https://files.pythonhosted.org/packages/61/6f/9378c9e1543d1c800ca040e21cd333b8f923ed051ae82b5a49ad96a6ac71/aiohttp-3.12.12-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:5e53cf9c201b45838a2d07b1f2d5f7fec9666db7979240002ce64f9b8a1e0cf2", size = 1625674, upload-time = "2025-06-10T05:18:46.716Z" }, - { url = "https://files.pythonhosted.org/packages/bb/85/4eef9bd52b497a405c88469cc099f4d15d33b149b5746ca4ef8ec6ab6388/aiohttp-3.12.12-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:8687cc5f32b4e328c233acd387d09a1b477007896b2f03c1c823a0fd05f63883", size = 1636460, upload-time = "2025-06-10T05:18:49.305Z" }, - { url = "https://files.pythonhosted.org/packages/56/59/d8e954830b375fd658843cf7d88d27ca5e38dd5fcbfe62db3d1ba415d0fe/aiohttp-3.12.12-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:5ee537ad29de716a3d8dc46c609908de0c25ffeebf93cd94a03d64cdc07d66d0", size = 1611912, upload-time = "2025-06-10T05:18:51.694Z" }, - { url = "https://files.pythonhosted.org/packages/c3/5d/d0096a02f0515a38dff67db42d966273a12d17fc895e91466bfb4ab3875e/aiohttp-3.12.12-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:411f821be5af6af11dc5bed6c6c1dc6b6b25b91737d968ec2756f9baa75e5f9b", size = 1691498, upload-time = "2025-06-10T05:18:54.36Z" }, - { url = "https://files.pythonhosted.org/packages/87/8d/d3a02397a6345c06623ae4648e2aef18fced858510b4a89d7262cfa4c683/aiohttp-3.12.12-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:f90319d94cf5f9786773237f24bd235a7b5959089f1af8ec1154580a3434b503", size = 1714737, upload-time = "2025-06-10T05:18:56.806Z" }, - { url = "https://files.pythonhosted.org/packages/a9/40/b81000bf07c96db878703ea3dc561393d82441597729910459a8e06acc9a/aiohttp-3.12.12-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:73b148e606f34e9d513c451fd65efe1091772659ca5703338a396a99f60108ff", size = 1643078, upload-time = "2025-06-10T05:18:59.33Z" }, - { url = "https://files.pythonhosted.org/packages/41/e5/31830642ce2c6d3dba74ed8a94933213df5e1651c1e8b4efc81cc88105ab/aiohttp-3.12.12-cp310-cp310-win32.whl", hash = "sha256:d40e7bfd577fdc8a92b72f35dfbdd3ec90f1bc8a72a42037fefe34d4eca2d4a1", size = 427517, upload-time = "2025-06-10T05:19:01.535Z" }, - { url = "https://files.pythonhosted.org/packages/55/9d/a4e5379d44679e5f8d7d7ebecb0dae8cafab95176c4e753da6bc4b4aebb5/aiohttp-3.12.12-cp310-cp310-win_amd64.whl", hash = "sha256:65c7804a2343893d6dea9fce69811aea0a9ac47f68312cf2e3ee1668cd9a387f", size = 450725, upload-time = "2025-06-10T05:19:03.874Z" }, - { url = "https://files.pythonhosted.org/packages/47/1f/b1b66e05dc3066a9ba7862d50e2e95b3871db82ccf9652568845f353eeba/aiohttp-3.12.12-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:38823fe0d8bc059b3eaedb263fe427d887c7032e72b4ef92c472953285f0e658", size = 709385, upload-time = "2025-06-10T05:19:05.763Z" }, - { url = "https://files.pythonhosted.org/packages/43/e6/3230e42af16438b450b1e193c537fd3d2d31771dafda3c2105a8d11af707/aiohttp-3.12.12-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:10237f2c34711215d04ed21da63852ce023608299554080a45c576215d9df81c", size = 481660, upload-time = "2025-06-10T05:19:08.332Z" }, - { url = "https://files.pythonhosted.org/packages/06/ba/cfa91fe5cc262535e1175b1522d8fcc09f9d6ad18b85241f4ee3be1d780f/aiohttp-3.12.12-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:563ec477c0dc6d56fc7f943a3475b5acdb399c7686c30f5a98ada24bb7562c7a", size = 469924, upload-time = "2025-06-10T05:19:10.342Z" }, - { url = "https://files.pythonhosted.org/packages/9a/f0/5c706cfddd4769b55c0cda466aa6034412d39e416f0b30dda81c4a24616f/aiohttp-3.12.12-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f3d05c46a61aca7c47df74afff818bc06a251ab95d95ff80b53665edfe1e0bdf", size = 1740116, upload-time = "2025-06-10T05:19:12.783Z" }, - { url = "https://files.pythonhosted.org/packages/4d/9f/04dba2e1c8bee53c3c623d11a1f947c9e2712500f734dc0dfd06daad32ec/aiohttp-3.12.12-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:277c882916759b4a6b6dc7e2ceb124aad071b3c6456487808d9ab13e1b448d57", size = 1688784, upload-time = "2025-06-10T05:19:15.36Z" }, - { url = "https://files.pythonhosted.org/packages/df/24/19d6d4c41fbf8304fe7c111fcc701e0aa5a2232ee3ac16272677a11f9cfe/aiohttp-3.12.12-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:216abf74b324b0f4e67041dd4fb2819613909a825904f8a51701fbcd40c09cd7", size = 1787575, upload-time = "2025-06-10T05:19:18.586Z" }, - { url = "https://files.pythonhosted.org/packages/0c/59/01f4c55a1f91ad3b5255b2498b3a22362a3fe6ee9bc9ba1af3cc668244da/aiohttp-3.12.12-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:65d6cefad286459b68e7f867b9586a821fb7f121057b88f02f536ef570992329", size = 1826621, upload-time = "2025-06-10T05:19:21.284Z" }, - { url = "https://files.pythonhosted.org/packages/55/85/6357166918ff5025602a7cc41332c1ae7a5b57f2fe3da4d755ae30f24bd0/aiohttp-3.12.12-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:feaaaff61966b5f4b4eae0b79fc79427f49484e4cfa5ab7d138ecd933ab540a8", size = 1729082, upload-time = "2025-06-10T05:19:23.307Z" }, - { url = "https://files.pythonhosted.org/packages/e3/ca/de3b5ccd5a2aa9352f6ec6f446565f6e1601ebb54860c94c686a9ff76660/aiohttp-3.12.12-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a05917780b7cad1755784b16cfaad806bc16029a93d15f063ca60185b7d9ba05", size = 1666159, upload-time = "2025-06-10T05:19:25.929Z" }, - { url = "https://files.pythonhosted.org/packages/d1/69/a1006021a1d3244c0872ee75cd8da150e0098b3b2ec6945c225754d11a60/aiohttp-3.12.12-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:082c5ec6d262c1b2ee01c63f4fb9152c17f11692bf16f0f100ad94a7a287d456", size = 1714433, upload-time = "2025-06-10T05:19:28.044Z" }, - { url = "https://files.pythonhosted.org/packages/d2/2a/15aa1179e9fbdd0d17cdf117b4296dedad098abb5a93f8e9c8ab4626f6ea/aiohttp-3.12.12-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:b265a3a8b379b38696ac78bdef943bdc4f4a5d6bed1a3fb5c75c6bab1ecea422", size = 1709590, upload-time = "2025-06-10T05:19:30.165Z" }, - { url = "https://files.pythonhosted.org/packages/a2/f0/95ed9e21250815f1d1a0cd3e868a3f39400a16010ae59f19ddd4ccc4e787/aiohttp-3.12.12-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:2e0f2e208914ecbc4b2a3b7b4daa759d0c587d9a0b451bb0835ac47fae7fa735", size = 1689776, upload-time = "2025-06-10T05:19:32.965Z" }, - { url = "https://files.pythonhosted.org/packages/81/4d/370ecc133c648c98a85445f2d331c1272859c89cd52c29a293015bc352c7/aiohttp-3.12.12-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:9923b025845b72f64d167bca221113377c8ffabd0a351dc18fb839d401ee8e22", size = 1783378, upload-time = "2025-06-10T05:19:35.14Z" }, - { url = "https://files.pythonhosted.org/packages/a8/86/414e3dae7e07caf6b02cd75d7148d0d8673d4c5077f407be3627d6e33fac/aiohttp-3.12.12-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:1ebb213445900527831fecc70e185bf142fdfe5f2a691075f22d63c65ee3c35a", size = 1803841, upload-time = "2025-06-10T05:19:37.41Z" }, - { url = "https://files.pythonhosted.org/packages/88/df/486f10df681cd1a8c898acc8dc2edbd46ffb088b886757b71ae362bf44d3/aiohttp-3.12.12-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:6fc369fb273a8328077d37798b77c1e65676709af5c182cb74bd169ca9defe81", size = 1716896, upload-time = "2025-06-10T05:19:40.172Z" }, - { url = "https://files.pythonhosted.org/packages/07/1e/1cacaf5d838869432e96ece1580d0b51494ebb66351f0e8118b74b38d2f0/aiohttp-3.12.12-cp311-cp311-win32.whl", hash = "sha256:58ecd10fda6a44c311cd3742cfd2aea8c4c600338e9f27cb37434d9f5ca9ddaa", size = 427030, upload-time = "2025-06-10T05:19:42.152Z" }, - { url = "https://files.pythonhosted.org/packages/30/dd/e89c1d190da2c84e0ca03c2970b9988a9c56005d18db7f447cf62b3ae6d0/aiohttp-3.12.12-cp311-cp311-win_amd64.whl", hash = "sha256:b0066e88f30be00badffb5ef8f2281532b9a9020863d873ae15f7c147770b6ec", size = 451419, upload-time = "2025-06-10T05:19:44.176Z" }, - { url = "https://files.pythonhosted.org/packages/df/e6/df14ec151942818ecc5e685fa8a4b07d3d3d8a9e4a7d2701047c89290551/aiohttp-3.12.12-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:98451ce9ce229d092f278a74a7c2a06b3aa72984673c87796126d7ccade893e9", size = 700494, upload-time = "2025-06-10T05:19:46.18Z" }, - { url = "https://files.pythonhosted.org/packages/4f/dc/7bc6e17adcd7a82b0d0317ad3e792ac22c93fb672077f0eade93e8d70182/aiohttp-3.12.12-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:adbac7286d89245e1aff42e948503fdc6edf6d5d65c8e305a67c40f6a8fb95f4", size = 475095, upload-time = "2025-06-10T05:19:48.246Z" }, - { url = "https://files.pythonhosted.org/packages/80/fd/c4e8846ad9d9ecdb7d5ba96de65b7bf2c1582f0b2732f2023080c1c05255/aiohttp-3.12.12-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0728882115bfa85cbd8d0f664c8ccc0cfd5bd3789dd837596785450ae52fac31", size = 467929, upload-time = "2025-06-10T05:19:50.79Z" }, - { url = "https://files.pythonhosted.org/packages/70/40/abebcf5c81f5e65b4379c05929773be2731ce12414264d3e0fe09ee241eb/aiohttp-3.12.12-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6bf3b9d9e767f9d0e09fb1a31516410fc741a62cc08754578c40abc497d09540", size = 1714729, upload-time = "2025-06-10T05:19:52.989Z" }, - { url = "https://files.pythonhosted.org/packages/8e/67/4c4f96ef6f16405e7c5205ab3c28852c7e904493b6ddc1c744dda1c97a81/aiohttp-3.12.12-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:c944860e86b9f77a462321a440ccf6fa10f5719bb9d026f6b0b11307b1c96c7b", size = 1697380, upload-time = "2025-06-10T05:19:55.832Z" }, - { url = "https://files.pythonhosted.org/packages/e9/a2/dae9ebea4caa8030170c0237e55fa0960df44b3596a849ab9ea621964054/aiohttp-3.12.12-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3b1979e1f0c98c06fd0cd940988833b102fa3aa56751f6c40ffe85cabc51f6fd", size = 1752474, upload-time = "2025-06-10T05:19:58.007Z" }, - { url = "https://files.pythonhosted.org/packages/31/ef/f3d9073565ac7ad5257aaa1490ebfc2f182dfc817d3ccfd38c8ab35b2247/aiohttp-3.12.12-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:120b7dd084e96cfdad85acea2ce1e7708c70a26db913eabb8d7b417c728f5d84", size = 1798631, upload-time = "2025-06-10T05:20:00.393Z" }, - { url = "https://files.pythonhosted.org/packages/8b/0b/8b1978662274c80c8e4a739d9be1ae9ef25e5ce42b55838d6a9d1a4e3497/aiohttp-3.12.12-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0e58f5ae79649ffa247081c2e8c85e31d29623cf2a3137dda985ae05c9478aae", size = 1718071, upload-time = "2025-06-10T05:20:02.812Z" }, - { url = "https://files.pythonhosted.org/packages/56/aa/35786137db867901b41cb3d2c19c0f4c56dfe581694dba99dec2683d8f8d/aiohttp-3.12.12-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9aa5f049e3e2745b0141f13e5a64e7c48b1a1427ed18bbb7957b348f282fee56", size = 1633871, upload-time = "2025-06-10T05:20:05.127Z" }, - { url = "https://files.pythonhosted.org/packages/63/1d/34d45497dd04d08d662ecda875c44e91d271bbc5d21f4c9e4cbd3ddf7ae2/aiohttp-3.12.12-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:7163cc9cf3722d90f1822f8a38b211e3ae2fc651c63bb55449f03dc1b3ff1d44", size = 1694933, upload-time = "2025-06-10T05:20:07.431Z" }, - { url = "https://files.pythonhosted.org/packages/29/c7/41e09a4517449eabbb0a7fe6d60f584fe5b21d4bff761197eb0b81e70034/aiohttp-3.12.12-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:ef97c4d035b721de6607f3980fa3e4ef0ec3aca76474b5789b7fac286a8c4e23", size = 1716386, upload-time = "2025-06-10T05:20:09.787Z" }, - { url = "https://files.pythonhosted.org/packages/3a/32/907bd2010b51b70de5314ad707dfc4e898ea0011ff3d678cdf43d6f8980a/aiohttp-3.12.12-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:1c14448d6a86acadc3f7b2f4cc385d1fb390acb6f37dce27f86fe629410d92e3", size = 1657039, upload-time = "2025-06-10T05:20:12.198Z" }, - { url = "https://files.pythonhosted.org/packages/60/27/8d87344a33346dcd39273adc33060aeb135e0ef70d1d6e71a3b03894a8e9/aiohttp-3.12.12-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:a1b6df6255cfc493454c79221183d64007dd5080bcda100db29b7ff181b8832c", size = 1736599, upload-time = "2025-06-10T05:20:14.519Z" }, - { url = "https://files.pythonhosted.org/packages/ca/45/57c7ef1af694a6d0906abab6edde03787c8c6b0cf5d8359b69d1eb0679df/aiohttp-3.12.12-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:60fc7338dfb0626c2927bfbac4785de3ea2e2bbe3d328ba5f3ece123edda4977", size = 1764575, upload-time = "2025-06-10T05:20:16.993Z" }, - { url = "https://files.pythonhosted.org/packages/2a/cc/b1f918cd702efa9ead9d41f89214e9225cda4e5d013d6eed7f1915c17d0a/aiohttp-3.12.12-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d2afc72207ef4c9d4ca9fcd00689a6a37ef2d625600c3d757b5c2b80c9d0cf9a", size = 1724184, upload-time = "2025-06-10T05:20:19.296Z" }, - { url = "https://files.pythonhosted.org/packages/47/55/089762ee32c2a2e0f523d9ab38c9da2a344cac0e0cc8d16ecf206517ef7e/aiohttp-3.12.12-cp312-cp312-win32.whl", hash = "sha256:8098a48f93b2cbcdb5778e7c9a0e0375363e40ad692348e6e65c3b70d593b27c", size = 421762, upload-time = "2025-06-10T05:20:22.063Z" }, - { url = "https://files.pythonhosted.org/packages/ab/47/151f657e429972916f61399bd52b410e9072d5a2cae1b794f890930e5797/aiohttp-3.12.12-cp312-cp312-win_amd64.whl", hash = "sha256:d1c1879b2e0fc337d7a1b63fe950553c2b9e93c071cf95928aeea1902d441403", size = 447863, upload-time = "2025-06-10T05:20:24.326Z" }, - { url = "https://files.pythonhosted.org/packages/ee/3e/396a7d1c47aa7a74612b186dc716857506c61afac72337a7a96215c2a124/aiohttp-3.12.12-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ea5d604318234427929d486954e3199aded65f41593ac57aa0241ab93dda3d15", size = 694901, upload-time = "2025-06-10T05:20:26.58Z" }, - { url = "https://files.pythonhosted.org/packages/cc/97/235e48eadf73a1854b4d4da29b88d00049309d897d55a511e1cbe4412603/aiohttp-3.12.12-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:e03ff38250b8b572dce6fcd7b6fb6ee398bb8a59e6aa199009c5322d721df4fc", size = 472552, upload-time = "2025-06-10T05:20:28.957Z" }, - { url = "https://files.pythonhosted.org/packages/6b/73/cd7c9439e8cab4113650541017c6524bd0e675b219dfdbbf945a78305e3f/aiohttp-3.12.12-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:71125b1fc2b6a94bccc63bbece620906a4dead336d2051f8af9cbf04480bc5af", size = 464853, upload-time = "2025-06-10T05:20:31.652Z" }, - { url = "https://files.pythonhosted.org/packages/d1/33/eea88ee55ed4b3f74732d9fc773e6fcf134a2971a19c7ecc49a291e7e57f/aiohttp-3.12.12-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:784a66f9f853a22c6b8c2bd0ff157f9b879700f468d6d72cfa99167df08c5c9c", size = 1703671, upload-time = "2025-06-10T05:20:33.969Z" }, - { url = "https://files.pythonhosted.org/packages/2a/e3/a67ecf9c154b13bad9e2a86ea3782a4b73e889343ffde8c1aadcf9099c09/aiohttp-3.12.12-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:a5be0b58670b54301404bd1840e4902570a1c3be00358e2700919cb1ea73c438", size = 1684934, upload-time = "2025-06-10T05:20:36.721Z" }, - { url = "https://files.pythonhosted.org/packages/89/f0/3aaea866531be2f2fcf3a87607e1f55fa72e6ce5acd6b058941a4fc35e15/aiohttp-3.12.12-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ce8f13566fc7bf5a728275b434bc3bdea87a7ed3ad5f734102b02ca59d9b510f", size = 1737004, upload-time = "2025-06-10T05:20:39.533Z" }, - { url = "https://files.pythonhosted.org/packages/a7/7a/15867a4c7d39d8fd9bd02191cf60b1d06415fc407bbd4ff2f9660845f1cb/aiohttp-3.12.12-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d736e57d1901683bc9be648aa308cb73e646252c74b4c639c35dcd401ed385ea", size = 1786378, upload-time = "2025-06-10T05:20:42.03Z" }, - { url = "https://files.pythonhosted.org/packages/bd/61/82b15f87088b35705e01fce55806241b45a1099b3470bbca0bed8ee98662/aiohttp-3.12.12-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e2007eaa7aae9102f211c519d1ec196bd3cecb1944a095db19eeaf132b798738", size = 1708707, upload-time = "2025-06-10T05:20:44.474Z" }, - { url = "https://files.pythonhosted.org/packages/28/f2/aed0786d5a1c2ed1f5a13ff2a98baacc27206b81d93812da28fc49d8a5d0/aiohttp-3.12.12-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2a813e61583cab6d5cdbaa34bc28863acdb92f9f46e11de1b3b9251a1e8238f6", size = 1622410, upload-time = "2025-06-10T05:20:46.957Z" }, - { url = "https://files.pythonhosted.org/packages/17/54/8305f49a960376136ada977be1370fddb584c63d40bd1b9bef59469f28c7/aiohttp-3.12.12-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:e408293aa910b0aea48b86a28eace41d497a85ba16c20f619f0c604597ef996c", size = 1675435, upload-time = "2025-06-10T05:20:49.379Z" }, - { url = "https://files.pythonhosted.org/packages/bb/dc/0a55350025bc297265cfa6c6b1b1f7508f4226ca3238697cbe5e772a7d76/aiohttp-3.12.12-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:f3d31faf290f5a30acba46b388465b67c6dbe8655d183e9efe2f6a1d594e6d9d", size = 1707099, upload-time = "2025-06-10T05:20:51.974Z" }, - { url = "https://files.pythonhosted.org/packages/d8/70/d949a1612b996e49d540c10ed77a0a1465c482a590e9a59c1c7897746119/aiohttp-3.12.12-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:0b84731697325b023902aa643bd1726d999f5bc7854bc28b17ff410a81151d4b", size = 1649693, upload-time = "2025-06-10T05:20:54.973Z" }, - { url = "https://files.pythonhosted.org/packages/c1/ea/fb87beb7135e25576a1e6fbe98106c037d9fcf1543f19108f9ceb73c192c/aiohttp-3.12.12-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:a324c6852b6e327811748446e56cc9bb6eaa58710557922183175816e82a4234", size = 1725825, upload-time = "2025-06-10T05:20:57.433Z" }, - { url = "https://files.pythonhosted.org/packages/f1/1f/adbeb3e440d49b733cef499ace94723ab1fe9fb516425e219379e03b7c9a/aiohttp-3.12.12-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:22fd867fbd72612dcf670c90486dbcbaf702cb807fb0b42bc0b7a142a573574a", size = 1759300, upload-time = "2025-06-10T05:21:00.444Z" }, - { url = "https://files.pythonhosted.org/packages/f2/c1/2fe007ad930f409d0d7fd9916cd55ec9b78b6a611a237424266ed71da48b/aiohttp-3.12.12-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:3e092f1a970223794a4bf620a26c0e4e4e8e36bccae9b0b5da35e6d8ee598a03", size = 1708189, upload-time = "2025-06-10T05:21:02.969Z" }, - { url = "https://files.pythonhosted.org/packages/85/5e/ed3ed640fafae3972eae6cd26f66240108cf62452ac8128d59970d538cb1/aiohttp-3.12.12-cp313-cp313-win32.whl", hash = "sha256:7f5f5eb8717ef8ba15ab35fcde5a70ad28bbdc34157595d1cddd888a985f5aae", size = 420783, upload-time = "2025-06-10T05:21:06.287Z" }, - { url = "https://files.pythonhosted.org/packages/a6/db/57d2bb4af52dd0c6f62c42c7d34b82495b2902e50440134f70bfb7ee0fdd/aiohttp-3.12.12-cp313-cp313-win_amd64.whl", hash = "sha256:ace2499bdd03c329c054dc4b47361f2b19d5aa470f7db5c7e0e989336761b33c", size = 446721, upload-time = "2025-06-10T05:21:08.738Z" }, +sdist = { url = "https://files.pythonhosted.org/packages/1c/ce/3b83ebba6b3207a7135e5fcaba49706f8a4b6008153b4e30540c982fae26/aiohttp-3.13.2.tar.gz", hash = "sha256:40176a52c186aefef6eb3cad2cdd30cd06e3afbe88fe8ab2af9c0b90f228daca", size = 7837994, upload-time = "2025-10-28T20:59:39.937Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/35/74/b321e7d7ca762638cdf8cdeceb39755d9c745aff7a64c8789be96ddf6e96/aiohttp-3.13.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:4647d02df098f6434bafd7f32ad14942f05a9caa06c7016fdcc816f343997dd0", size = 743409, upload-time = "2025-10-28T20:56:00.354Z" }, + { url = "https://files.pythonhosted.org/packages/99/3d/91524b905ec473beaf35158d17f82ef5a38033e5809fe8742e3657cdbb97/aiohttp-3.13.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:e3403f24bcb9c3b29113611c3c16a2a447c3953ecf86b79775e7be06f7ae7ccb", size = 497006, upload-time = "2025-10-28T20:56:01.85Z" }, + { url = "https://files.pythonhosted.org/packages/eb/d3/7f68bc02a67716fe80f063e19adbd80a642e30682ce74071269e17d2dba1/aiohttp-3.13.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:43dff14e35aba17e3d6d5ba628858fb8cb51e30f44724a2d2f0c75be492c55e9", size = 493195, upload-time = "2025-10-28T20:56:03.314Z" }, + { url = "https://files.pythonhosted.org/packages/98/31/913f774a4708775433b7375c4f867d58ba58ead833af96c8af3621a0d243/aiohttp-3.13.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e2a9ea08e8c58bb17655630198833109227dea914cd20be660f52215f6de5613", size = 1747759, upload-time = "2025-10-28T20:56:04.904Z" }, + { url = "https://files.pythonhosted.org/packages/e8/63/04efe156f4326f31c7c4a97144f82132c3bb21859b7bb84748d452ccc17c/aiohttp-3.13.2-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:53b07472f235eb80e826ad038c9d106c2f653584753f3ddab907c83f49eedead", size = 1704456, upload-time = "2025-10-28T20:56:06.986Z" }, + { url = "https://files.pythonhosted.org/packages/8e/02/4e16154d8e0a9cf4ae76f692941fd52543bbb148f02f098ca73cab9b1c1b/aiohttp-3.13.2-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:e736c93e9c274fce6419af4aac199984d866e55f8a4cec9114671d0ea9688780", size = 1807572, upload-time = "2025-10-28T20:56:08.558Z" }, + { url = "https://files.pythonhosted.org/packages/34/58/b0583defb38689e7f06798f0285b1ffb3a6fb371f38363ce5fd772112724/aiohttp-3.13.2-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:ff5e771f5dcbc81c64898c597a434f7682f2259e0cd666932a913d53d1341d1a", size = 1895954, upload-time = "2025-10-28T20:56:10.545Z" }, + { url = "https://files.pythonhosted.org/packages/6b/f3/083907ee3437425b4e376aa58b2c915eb1a33703ec0dc30040f7ae3368c6/aiohttp-3.13.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a3b6fb0c207cc661fa0bf8c66d8d9b657331ccc814f4719468af61034b478592", size = 1747092, upload-time = "2025-10-28T20:56:12.118Z" }, + { url = "https://files.pythonhosted.org/packages/ac/61/98a47319b4e425cc134e05e5f3fc512bf9a04bf65aafd9fdcda5d57ec693/aiohttp-3.13.2-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:97a0895a8e840ab3520e2288db7cace3a1981300d48babeb50e7425609e2e0ab", size = 1606815, upload-time = "2025-10-28T20:56:14.191Z" }, + { url = "https://files.pythonhosted.org/packages/97/4b/e78b854d82f66bb974189135d31fce265dee0f5344f64dd0d345158a5973/aiohttp-3.13.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:9e8f8afb552297aca127c90cb840e9a1d4bfd6a10d7d8f2d9176e1acc69bad30", size = 1723789, upload-time = "2025-10-28T20:56:16.101Z" }, + { url = "https://files.pythonhosted.org/packages/ed/fc/9d2ccc794fc9b9acd1379d625c3a8c64a45508b5091c546dea273a41929e/aiohttp-3.13.2-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:ed2f9c7216e53c3df02264f25d824b079cc5914f9e2deba94155190ef648ee40", size = 1718104, upload-time = "2025-10-28T20:56:17.655Z" }, + { url = "https://files.pythonhosted.org/packages/66/65/34564b8765ea5c7d79d23c9113135d1dd3609173da13084830f1507d56cf/aiohttp-3.13.2-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:99c5280a329d5fa18ef30fd10c793a190d996567667908bef8a7f81f8202b948", size = 1785584, upload-time = "2025-10-28T20:56:19.238Z" }, + { url = "https://files.pythonhosted.org/packages/30/be/f6a7a426e02fc82781afd62016417b3948e2207426d90a0e478790d1c8a4/aiohttp-3.13.2-cp311-cp311-musllinux_1_2_riscv64.whl", hash = "sha256:2ca6ffef405fc9c09a746cb5d019c1672cd7f402542e379afc66b370833170cf", size = 1595126, upload-time = "2025-10-28T20:56:20.836Z" }, + { url = "https://files.pythonhosted.org/packages/e5/c7/8e22d5d28f94f67d2af496f14a83b3c155d915d1fe53d94b66d425ec5b42/aiohttp-3.13.2-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:47f438b1a28e926c37632bff3c44df7d27c9b57aaf4e34b1def3c07111fdb782", size = 1800665, upload-time = "2025-10-28T20:56:22.922Z" }, + { url = "https://files.pythonhosted.org/packages/d1/11/91133c8b68b1da9fc16555706aa7276fdf781ae2bb0876c838dd86b8116e/aiohttp-3.13.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:9acda8604a57bb60544e4646a4615c1866ee6c04a8edef9b8ee6fd1d8fa2ddc8", size = 1739532, upload-time = "2025-10-28T20:56:25.924Z" }, + { url = "https://files.pythonhosted.org/packages/17/6b/3747644d26a998774b21a616016620293ddefa4d63af6286f389aedac844/aiohttp-3.13.2-cp311-cp311-win32.whl", hash = "sha256:868e195e39b24aaa930b063c08bb0c17924899c16c672a28a65afded9c46c6ec", size = 431876, upload-time = "2025-10-28T20:56:27.524Z" }, + { url = "https://files.pythonhosted.org/packages/c3/63/688462108c1a00eb9f05765331c107f95ae86f6b197b865d29e930b7e462/aiohttp-3.13.2-cp311-cp311-win_amd64.whl", hash = "sha256:7fd19df530c292542636c2a9a85854fab93474396a52f1695e799186bbd7f24c", size = 456205, upload-time = "2025-10-28T20:56:29.062Z" }, + { url = "https://files.pythonhosted.org/packages/29/9b/01f00e9856d0a73260e86dd8ed0c2234a466c5c1712ce1c281548df39777/aiohttp-3.13.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:b1e56bab2e12b2b9ed300218c351ee2a3d8c8fdab5b1ec6193e11a817767e47b", size = 737623, upload-time = "2025-10-28T20:56:30.797Z" }, + { url = "https://files.pythonhosted.org/packages/5a/1b/4be39c445e2b2bd0aab4ba736deb649fabf14f6757f405f0c9685019b9e9/aiohttp-3.13.2-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:364e25edaabd3d37b1db1f0cbcee8c73c9a3727bfa262b83e5e4cf3489a2a9dc", size = 492664, upload-time = "2025-10-28T20:56:32.708Z" }, + { url = "https://files.pythonhosted.org/packages/28/66/d35dcfea8050e131cdd731dff36434390479b4045a8d0b9d7111b0a968f1/aiohttp-3.13.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:c5c94825f744694c4b8db20b71dba9a257cd2ba8e010a803042123f3a25d50d7", size = 491808, upload-time = "2025-10-28T20:56:34.57Z" }, + { url = "https://files.pythonhosted.org/packages/00/29/8e4609b93e10a853b65f8291e64985de66d4f5848c5637cddc70e98f01f8/aiohttp-3.13.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ba2715d842ffa787be87cbfce150d5e88c87a98e0b62e0f5aa489169a393dbbb", size = 1738863, upload-time = "2025-10-28T20:56:36.377Z" }, + { url = "https://files.pythonhosted.org/packages/9d/fa/4ebdf4adcc0def75ced1a0d2d227577cd7b1b85beb7edad85fcc87693c75/aiohttp-3.13.2-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:585542825c4bc662221fb257889e011a5aa00f1ae4d75d1d246a5225289183e3", size = 1700586, upload-time = "2025-10-28T20:56:38.034Z" }, + { url = "https://files.pythonhosted.org/packages/da/04/73f5f02ff348a3558763ff6abe99c223381b0bace05cd4530a0258e52597/aiohttp-3.13.2-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:39d02cb6025fe1aabca329c5632f48c9532a3dabccd859e7e2f110668972331f", size = 1768625, upload-time = "2025-10-28T20:56:39.75Z" }, + { url = "https://files.pythonhosted.org/packages/f8/49/a825b79ffec124317265ca7d2344a86bcffeb960743487cb11988ffb3494/aiohttp-3.13.2-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:e67446b19e014d37342f7195f592a2a948141d15a312fe0e700c2fd2f03124f6", size = 1867281, upload-time = "2025-10-28T20:56:41.471Z" }, + { url = "https://files.pythonhosted.org/packages/b9/48/adf56e05f81eac31edcfae45c90928f4ad50ef2e3ea72cb8376162a368f8/aiohttp-3.13.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:4356474ad6333e41ccefd39eae869ba15a6c5299c9c01dfdcfdd5c107be4363e", size = 1752431, upload-time = "2025-10-28T20:56:43.162Z" }, + { url = "https://files.pythonhosted.org/packages/30/ab/593855356eead019a74e862f21523db09c27f12fd24af72dbc3555b9bfd9/aiohttp-3.13.2-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:eeacf451c99b4525f700f078becff32c32ec327b10dcf31306a8a52d78166de7", size = 1562846, upload-time = "2025-10-28T20:56:44.85Z" }, + { url = "https://files.pythonhosted.org/packages/39/0f/9f3d32271aa8dc35036e9668e31870a9d3b9542dd6b3e2c8a30931cb27ae/aiohttp-3.13.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d8a9b889aeabd7a4e9af0b7f4ab5ad94d42e7ff679aaec6d0db21e3b639ad58d", size = 1699606, upload-time = "2025-10-28T20:56:46.519Z" }, + { url = "https://files.pythonhosted.org/packages/2c/3c/52d2658c5699b6ef7692a3f7128b2d2d4d9775f2a68093f74bca06cf01e1/aiohttp-3.13.2-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:fa89cb11bc71a63b69568d5b8a25c3ca25b6d54c15f907ca1c130d72f320b76b", size = 1720663, upload-time = "2025-10-28T20:56:48.528Z" }, + { url = "https://files.pythonhosted.org/packages/9b/d4/8f8f3ff1fb7fb9e3f04fcad4e89d8a1cd8fc7d05de67e3de5b15b33008ff/aiohttp-3.13.2-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:8aa7c807df234f693fed0ecd507192fc97692e61fee5702cdc11155d2e5cadc8", size = 1737939, upload-time = "2025-10-28T20:56:50.77Z" }, + { url = "https://files.pythonhosted.org/packages/03/d3/ddd348f8a27a634daae39a1b8e291ff19c77867af438af844bf8b7e3231b/aiohttp-3.13.2-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:9eb3e33fdbe43f88c3c75fa608c25e7c47bbd80f48d012763cb67c47f39a7e16", size = 1555132, upload-time = "2025-10-28T20:56:52.568Z" }, + { url = "https://files.pythonhosted.org/packages/39/b8/46790692dc46218406f94374903ba47552f2f9f90dad554eed61bfb7b64c/aiohttp-3.13.2-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:9434bc0d80076138ea986833156c5a48c9c7a8abb0c96039ddbb4afc93184169", size = 1764802, upload-time = "2025-10-28T20:56:54.292Z" }, + { url = "https://files.pythonhosted.org/packages/ba/e4/19ce547b58ab2a385e5f0b8aa3db38674785085abcf79b6e0edd1632b12f/aiohttp-3.13.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ff15c147b2ad66da1f2cbb0622313f2242d8e6e8f9b79b5206c84523a4473248", size = 1719512, upload-time = "2025-10-28T20:56:56.428Z" }, + { url = "https://files.pythonhosted.org/packages/70/30/6355a737fed29dcb6dfdd48682d5790cb5eab050f7b4e01f49b121d3acad/aiohttp-3.13.2-cp312-cp312-win32.whl", hash = "sha256:27e569eb9d9e95dbd55c0fc3ec3a9335defbf1d8bc1d20171a49f3c4c607b93e", size = 426690, upload-time = "2025-10-28T20:56:58.736Z" }, + { url = "https://files.pythonhosted.org/packages/0a/0d/b10ac09069973d112de6ef980c1f6bb31cb7dcd0bc363acbdad58f927873/aiohttp-3.13.2-cp312-cp312-win_amd64.whl", hash = "sha256:8709a0f05d59a71f33fd05c17fc11fcb8c30140506e13c2f5e8ee1b8964e1b45", size = 453465, upload-time = "2025-10-28T20:57:00.795Z" }, + { url = "https://files.pythonhosted.org/packages/bf/78/7e90ca79e5aa39f9694dcfd74f4720782d3c6828113bb1f3197f7e7c4a56/aiohttp-3.13.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:7519bdc7dfc1940d201651b52bf5e03f5503bda45ad6eacf64dda98be5b2b6be", size = 732139, upload-time = "2025-10-28T20:57:02.455Z" }, + { url = "https://files.pythonhosted.org/packages/db/ed/1f59215ab6853fbaa5c8495fa6cbc39edfc93553426152b75d82a5f32b76/aiohttp-3.13.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:088912a78b4d4f547a1f19c099d5a506df17eacec3c6f4375e2831ec1d995742", size = 490082, upload-time = "2025-10-28T20:57:04.784Z" }, + { url = "https://files.pythonhosted.org/packages/68/7b/fe0fe0f5e05e13629d893c760465173a15ad0039c0a5b0d0040995c8075e/aiohttp-3.13.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:5276807b9de9092af38ed23ce120539ab0ac955547b38563a9ba4f5b07b95293", size = 489035, upload-time = "2025-10-28T20:57:06.894Z" }, + { url = "https://files.pythonhosted.org/packages/d2/04/db5279e38471b7ac801d7d36a57d1230feeee130bbe2a74f72731b23c2b1/aiohttp-3.13.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1237c1375eaef0db4dcd7c2559f42e8af7b87ea7d295b118c60c36a6e61cb811", size = 1720387, upload-time = "2025-10-28T20:57:08.685Z" }, + { url = "https://files.pythonhosted.org/packages/31/07/8ea4326bd7dae2bd59828f69d7fdc6e04523caa55e4a70f4a8725a7e4ed2/aiohttp-3.13.2-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:96581619c57419c3d7d78703d5b78c1e5e5fc0172d60f555bdebaced82ded19a", size = 1688314, upload-time = "2025-10-28T20:57:10.693Z" }, + { url = "https://files.pythonhosted.org/packages/48/ab/3d98007b5b87ffd519d065225438cc3b668b2f245572a8cb53da5dd2b1bc/aiohttp-3.13.2-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:a2713a95b47374169409d18103366de1050fe0ea73db358fc7a7acb2880422d4", size = 1756317, upload-time = "2025-10-28T20:57:12.563Z" }, + { url = "https://files.pythonhosted.org/packages/97/3d/801ca172b3d857fafb7b50c7c03f91b72b867a13abca982ed6b3081774ef/aiohttp-3.13.2-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:228a1cd556b3caca590e9511a89444925da87d35219a49ab5da0c36d2d943a6a", size = 1858539, upload-time = "2025-10-28T20:57:14.623Z" }, + { url = "https://files.pythonhosted.org/packages/f7/0d/4764669bdf47bd472899b3d3db91fffbe925c8e3038ec591a2fd2ad6a14d/aiohttp-3.13.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ac6cde5fba8d7d8c6ac963dbb0256a9854e9fafff52fbcc58fdf819357892c3e", size = 1739597, upload-time = "2025-10-28T20:57:16.399Z" }, + { url = "https://files.pythonhosted.org/packages/c4/52/7bd3c6693da58ba16e657eb904a5b6decfc48ecd06e9ac098591653b1566/aiohttp-3.13.2-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:f2bef8237544f4e42878c61cef4e2839fee6346dc60f5739f876a9c50be7fcdb", size = 1555006, upload-time = "2025-10-28T20:57:18.288Z" }, + { url = "https://files.pythonhosted.org/packages/48/30/9586667acec5993b6f41d2ebcf96e97a1255a85f62f3c653110a5de4d346/aiohttp-3.13.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:16f15a4eac3bc2d76c45f7ebdd48a65d41b242eb6c31c2245463b40b34584ded", size = 1683220, upload-time = "2025-10-28T20:57:20.241Z" }, + { url = "https://files.pythonhosted.org/packages/71/01/3afe4c96854cfd7b30d78333852e8e851dceaec1c40fd00fec90c6402dd2/aiohttp-3.13.2-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:bb7fb776645af5cc58ab804c58d7eba545a97e047254a52ce89c157b5af6cd0b", size = 1712570, upload-time = "2025-10-28T20:57:22.253Z" }, + { url = "https://files.pythonhosted.org/packages/11/2c/22799d8e720f4697a9e66fd9c02479e40a49de3de2f0bbe7f9f78a987808/aiohttp-3.13.2-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:e1b4951125ec10c70802f2cb09736c895861cd39fd9dcb35107b4dc8ae6220b8", size = 1733407, upload-time = "2025-10-28T20:57:24.37Z" }, + { url = "https://files.pythonhosted.org/packages/34/cb/90f15dd029f07cebbd91f8238a8b363978b530cd128488085b5703683594/aiohttp-3.13.2-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:550bf765101ae721ee1d37d8095f47b1f220650f85fe1af37a90ce75bab89d04", size = 1550093, upload-time = "2025-10-28T20:57:26.257Z" }, + { url = "https://files.pythonhosted.org/packages/69/46/12dce9be9d3303ecbf4d30ad45a7683dc63d90733c2d9fe512be6716cd40/aiohttp-3.13.2-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:fe91b87fc295973096251e2d25a811388e7d8adf3bd2b97ef6ae78bc4ac6c476", size = 1758084, upload-time = "2025-10-28T20:57:28.349Z" }, + { url = "https://files.pythonhosted.org/packages/f9/c8/0932b558da0c302ffd639fc6362a313b98fdf235dc417bc2493da8394df7/aiohttp-3.13.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:e0c8e31cfcc4592cb200160344b2fb6ae0f9e4effe06c644b5a125d4ae5ebe23", size = 1716987, upload-time = "2025-10-28T20:57:30.233Z" }, + { url = "https://files.pythonhosted.org/packages/5d/8b/f5bd1a75003daed099baec373aed678f2e9b34f2ad40d85baa1368556396/aiohttp-3.13.2-cp313-cp313-win32.whl", hash = "sha256:0740f31a60848d6edb296a0df827473eede90c689b8f9f2a4cdde74889eb2254", size = 425859, upload-time = "2025-10-28T20:57:32.105Z" }, + { url = "https://files.pythonhosted.org/packages/5d/28/a8a9fc6957b2cee8902414e41816b5ab5536ecf43c3b1843c10e82c559b2/aiohttp-3.13.2-cp313-cp313-win_amd64.whl", hash = "sha256:a88d13e7ca367394908f8a276b89d04a3652044612b9a408a0bb22a5ed976a1a", size = 452192, upload-time = "2025-10-28T20:57:34.166Z" }, + { url = "https://files.pythonhosted.org/packages/9b/36/e2abae1bd815f01c957cbf7be817b3043304e1c87bad526292a0410fdcf9/aiohttp-3.13.2-cp314-cp314-macosx_10_13_universal2.whl", hash = "sha256:2475391c29230e063ef53a66669b7b691c9bfc3f1426a0f7bcdf1216bdbac38b", size = 735234, upload-time = "2025-10-28T20:57:36.415Z" }, + { url = "https://files.pythonhosted.org/packages/ca/e3/1ee62dde9b335e4ed41db6bba02613295a0d5b41f74a783c142745a12763/aiohttp-3.13.2-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:f33c8748abef4d8717bb20e8fb1b3e07c6adacb7fd6beaae971a764cf5f30d61", size = 490733, upload-time = "2025-10-28T20:57:38.205Z" }, + { url = "https://files.pythonhosted.org/packages/1a/aa/7a451b1d6a04e8d15a362af3e9b897de71d86feac3babf8894545d08d537/aiohttp-3.13.2-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:ae32f24bbfb7dbb485a24b30b1149e2f200be94777232aeadba3eecece4d0aa4", size = 491303, upload-time = "2025-10-28T20:57:40.122Z" }, + { url = "https://files.pythonhosted.org/packages/57/1e/209958dbb9b01174870f6a7538cd1f3f28274fdbc88a750c238e2c456295/aiohttp-3.13.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5d7f02042c1f009ffb70067326ef183a047425bb2ff3bc434ead4dd4a4a66a2b", size = 1717965, upload-time = "2025-10-28T20:57:42.28Z" }, + { url = "https://files.pythonhosted.org/packages/08/aa/6a01848d6432f241416bc4866cae8dc03f05a5a884d2311280f6a09c73d6/aiohttp-3.13.2-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:93655083005d71cd6c072cdab54c886e6570ad2c4592139c3fb967bfc19e4694", size = 1667221, upload-time = "2025-10-28T20:57:44.869Z" }, + { url = "https://files.pythonhosted.org/packages/87/4f/36c1992432d31bbc789fa0b93c768d2e9047ec8c7177e5cd84ea85155f36/aiohttp-3.13.2-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:0db1e24b852f5f664cd728db140cf11ea0e82450471232a394b3d1a540b0f906", size = 1757178, upload-time = "2025-10-28T20:57:47.216Z" }, + { url = "https://files.pythonhosted.org/packages/ac/b4/8e940dfb03b7e0f68a82b88fd182b9be0a65cb3f35612fe38c038c3112cf/aiohttp-3.13.2-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:b009194665bcd128e23eaddef362e745601afa4641930848af4c8559e88f18f9", size = 1838001, upload-time = "2025-10-28T20:57:49.337Z" }, + { url = "https://files.pythonhosted.org/packages/d7/ef/39f3448795499c440ab66084a9db7d20ca7662e94305f175a80f5b7e0072/aiohttp-3.13.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:c038a8fdc8103cd51dbd986ecdce141473ffd9775a7a8057a6ed9c3653478011", size = 1716325, upload-time = "2025-10-28T20:57:51.327Z" }, + { url = "https://files.pythonhosted.org/packages/d7/51/b311500ffc860b181c05d91c59a1313bdd05c82960fdd4035a15740d431e/aiohttp-3.13.2-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:66bac29b95a00db411cd758fea0e4b9bdba6d549dfe333f9a945430f5f2cc5a6", size = 1547978, upload-time = "2025-10-28T20:57:53.554Z" }, + { url = "https://files.pythonhosted.org/packages/31/64/b9d733296ef79815226dab8c586ff9e3df41c6aff2e16c06697b2d2e6775/aiohttp-3.13.2-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:4ebf9cfc9ba24a74cf0718f04aac2a3bbe745902cc7c5ebc55c0f3b5777ef213", size = 1682042, upload-time = "2025-10-28T20:57:55.617Z" }, + { url = "https://files.pythonhosted.org/packages/3f/30/43d3e0f9d6473a6db7d472104c4eff4417b1e9df01774cb930338806d36b/aiohttp-3.13.2-cp314-cp314-musllinux_1_2_armv7l.whl", hash = "sha256:a4b88ebe35ce54205c7074f7302bd08a4cb83256a3e0870c72d6f68a3aaf8e49", size = 1680085, upload-time = "2025-10-28T20:57:57.59Z" }, + { url = "https://files.pythonhosted.org/packages/16/51/c709f352c911b1864cfd1087577760ced64b3e5bee2aa88b8c0c8e2e4972/aiohttp-3.13.2-cp314-cp314-musllinux_1_2_ppc64le.whl", hash = "sha256:98c4fb90bb82b70a4ed79ca35f656f4281885be076f3f970ce315402b53099ae", size = 1728238, upload-time = "2025-10-28T20:57:59.525Z" }, + { url = "https://files.pythonhosted.org/packages/19/e2/19bd4c547092b773caeb48ff5ae4b1ae86756a0ee76c16727fcfd281404b/aiohttp-3.13.2-cp314-cp314-musllinux_1_2_riscv64.whl", hash = "sha256:ec7534e63ae0f3759df3a1ed4fa6bc8f75082a924b590619c0dd2f76d7043caa", size = 1544395, upload-time = "2025-10-28T20:58:01.914Z" }, + { url = "https://files.pythonhosted.org/packages/cf/87/860f2803b27dfc5ed7be532832a3498e4919da61299b4a1f8eb89b8ff44d/aiohttp-3.13.2-cp314-cp314-musllinux_1_2_s390x.whl", hash = "sha256:5b927cf9b935a13e33644cbed6c8c4b2d0f25b713d838743f8fe7191b33829c4", size = 1742965, upload-time = "2025-10-28T20:58:03.972Z" }, + { url = "https://files.pythonhosted.org/packages/67/7f/db2fc7618925e8c7a601094d5cbe539f732df4fb570740be88ed9e40e99a/aiohttp-3.13.2-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:88d6c017966a78c5265d996c19cdb79235be5e6412268d7e2ce7dee339471b7a", size = 1697585, upload-time = "2025-10-28T20:58:06.189Z" }, + { url = "https://files.pythonhosted.org/packages/0c/07/9127916cb09bb38284db5036036042b7b2c514c8ebaeee79da550c43a6d6/aiohttp-3.13.2-cp314-cp314-win32.whl", hash = "sha256:f7c183e786e299b5d6c49fb43a769f8eb8e04a2726a2bd5887b98b5cc2d67940", size = 431621, upload-time = "2025-10-28T20:58:08.636Z" }, + { url = "https://files.pythonhosted.org/packages/fb/41/554a8a380df6d3a2bba8a7726429a23f4ac62aaf38de43bb6d6cde7b4d4d/aiohttp-3.13.2-cp314-cp314-win_amd64.whl", hash = "sha256:fe242cd381e0fb65758faf5ad96c2e460df6ee5b2de1072fe97e4127927e00b4", size = 457627, upload-time = "2025-10-28T20:58:11Z" }, + { url = "https://files.pythonhosted.org/packages/c7/8e/3824ef98c039d3951cb65b9205a96dd2b20f22241ee17d89c5701557c826/aiohttp-3.13.2-cp314-cp314t-macosx_10_13_universal2.whl", hash = "sha256:f10d9c0b0188fe85398c61147bbd2a657d616c876863bfeff43376e0e3134673", size = 767360, upload-time = "2025-10-28T20:58:13.358Z" }, + { url = "https://files.pythonhosted.org/packages/a4/0f/6a03e3fc7595421274fa34122c973bde2d89344f8a881b728fa8c774e4f1/aiohttp-3.13.2-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:e7c952aefdf2460f4ae55c5e9c3e80aa72f706a6317e06020f80e96253b1accd", size = 504616, upload-time = "2025-10-28T20:58:15.339Z" }, + { url = "https://files.pythonhosted.org/packages/c6/aa/ed341b670f1bc8a6f2c6a718353d13b9546e2cef3544f573c6a1ff0da711/aiohttp-3.13.2-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:c20423ce14771d98353d2e25e83591fa75dfa90a3c1848f3d7c68243b4fbded3", size = 509131, upload-time = "2025-10-28T20:58:17.693Z" }, + { url = "https://files.pythonhosted.org/packages/7f/f0/c68dac234189dae5c4bbccc0f96ce0cc16b76632cfc3a08fff180045cfa4/aiohttp-3.13.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e96eb1a34396e9430c19d8338d2ec33015e4a87ef2b4449db94c22412e25ccdf", size = 1864168, upload-time = "2025-10-28T20:58:20.113Z" }, + { url = "https://files.pythonhosted.org/packages/8f/65/75a9a76db8364b5d0e52a0c20eabc5d52297385d9af9c35335b924fafdee/aiohttp-3.13.2-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:23fb0783bc1a33640036465019d3bba069942616a6a2353c6907d7fe1ccdaf4e", size = 1719200, upload-time = "2025-10-28T20:58:22.583Z" }, + { url = "https://files.pythonhosted.org/packages/f5/55/8df2ed78d7f41d232f6bd3ff866b6f617026551aa1d07e2f03458f964575/aiohttp-3.13.2-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:2e1a9bea6244a1d05a4e57c295d69e159a5c50d8ef16aa390948ee873478d9a5", size = 1843497, upload-time = "2025-10-28T20:58:24.672Z" }, + { url = "https://files.pythonhosted.org/packages/e9/e0/94d7215e405c5a02ccb6a35c7a3a6cfff242f457a00196496935f700cde5/aiohttp-3.13.2-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:0a3d54e822688b56e9f6b5816fb3de3a3a64660efac64e4c2dc435230ad23bad", size = 1935703, upload-time = "2025-10-28T20:58:26.758Z" }, + { url = "https://files.pythonhosted.org/packages/0b/78/1eeb63c3f9b2d1015a4c02788fb543141aad0a03ae3f7a7b669b2483f8d4/aiohttp-3.13.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:7a653d872afe9f33497215745da7a943d1dc15b728a9c8da1c3ac423af35178e", size = 1792738, upload-time = "2025-10-28T20:58:29.787Z" }, + { url = "https://files.pythonhosted.org/packages/41/75/aaf1eea4c188e51538c04cc568040e3082db263a57086ea74a7d38c39e42/aiohttp-3.13.2-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:56d36e80d2003fa3fc0207fac644216d8532e9504a785ef9a8fd013f84a42c61", size = 1624061, upload-time = "2025-10-28T20:58:32.529Z" }, + { url = "https://files.pythonhosted.org/packages/9b/c2/3b6034de81fbcc43de8aeb209073a2286dfb50b86e927b4efd81cf848197/aiohttp-3.13.2-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:78cd586d8331fb8e241c2dd6b2f4061778cc69e150514b39a9e28dd050475661", size = 1789201, upload-time = "2025-10-28T20:58:34.618Z" }, + { url = "https://files.pythonhosted.org/packages/c9/38/c15dcf6d4d890217dae79d7213988f4e5fe6183d43893a9cf2fe9e84ca8d/aiohttp-3.13.2-cp314-cp314t-musllinux_1_2_armv7l.whl", hash = "sha256:20b10bbfbff766294fe99987f7bb3b74fdd2f1a2905f2562132641ad434dcf98", size = 1776868, upload-time = "2025-10-28T20:58:38.835Z" }, + { url = "https://files.pythonhosted.org/packages/04/75/f74fd178ac81adf4f283a74847807ade5150e48feda6aef024403716c30c/aiohttp-3.13.2-cp314-cp314t-musllinux_1_2_ppc64le.whl", hash = "sha256:9ec49dff7e2b3c85cdeaa412e9d438f0ecd71676fde61ec57027dd392f00c693", size = 1790660, upload-time = "2025-10-28T20:58:41.507Z" }, + { url = "https://files.pythonhosted.org/packages/e7/80/7368bd0d06b16b3aba358c16b919e9c46cf11587dc572091031b0e9e3ef0/aiohttp-3.13.2-cp314-cp314t-musllinux_1_2_riscv64.whl", hash = "sha256:94f05348c4406450f9d73d38efb41d669ad6cd90c7ee194810d0eefbfa875a7a", size = 1617548, upload-time = "2025-10-28T20:58:43.674Z" }, + { url = "https://files.pythonhosted.org/packages/7d/4b/a6212790c50483cb3212e507378fbe26b5086d73941e1ec4b56a30439688/aiohttp-3.13.2-cp314-cp314t-musllinux_1_2_s390x.whl", hash = "sha256:fa4dcb605c6f82a80c7f95713c2b11c3b8e9893b3ebd2bc9bde93165ed6107be", size = 1817240, upload-time = "2025-10-28T20:58:45.787Z" }, + { url = "https://files.pythonhosted.org/packages/ff/f7/ba5f0ba4ea8d8f3c32850912944532b933acbf0f3a75546b89269b9b7dde/aiohttp-3.13.2-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:cf00e5db968c3f67eccd2778574cf64d8b27d95b237770aa32400bd7a1ca4f6c", size = 1762334, upload-time = "2025-10-28T20:58:47.936Z" }, + { url = "https://files.pythonhosted.org/packages/7e/83/1a5a1856574588b1cad63609ea9ad75b32a8353ac995d830bf5da9357364/aiohttp-3.13.2-cp314-cp314t-win32.whl", hash = "sha256:d23b5fe492b0805a50d3371e8a728a9134d8de5447dce4c885f5587294750734", size = 464685, upload-time = "2025-10-28T20:58:50.642Z" }, + { url = "https://files.pythonhosted.org/packages/9f/4d/d22668674122c08f4d56972297c51a624e64b3ed1efaa40187607a7cb66e/aiohttp-3.13.2-cp314-cp314t-win_amd64.whl", hash = "sha256:ff0a7b0a82a7ab905cbda74006318d1b12e37c797eb1b0d4eb3e316cf47f658f", size = 498093, upload-time = "2025-10-28T20:58:52.782Z" }, ] [[package]] @@ -710,23 +702,24 @@ wheels = [ [[package]] name = "aioitertools" -version = "0.12.0" +version = "0.13.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/06/de/38491a84ab323b47c7f86e94d2830e748780525f7a10c8600b67ead7e9ea/aioitertools-0.12.0.tar.gz", hash = "sha256:c2a9055b4fbb7705f561b9d86053e8af5d10cc845d22c32008c43490b2d8dd6b", size = 19369, upload-time = "2024-09-02T03:33:40.349Z" } +sdist = { url = "https://files.pythonhosted.org/packages/fd/3c/53c4a17a05fb9ea2313ee1777ff53f5e001aefd5cc85aa2f4c2d982e1e38/aioitertools-0.13.0.tar.gz", hash = "sha256:620bd241acc0bbb9ec819f1ab215866871b4bbd1f73836a55f799200ee86950c", size = 19322, upload-time = "2025-11-06T22:17:07.609Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/85/13/58b70a580de00893223d61de8fea167877a3aed97d4a5e1405c9159ef925/aioitertools-0.12.0-py3-none-any.whl", hash = "sha256:fc1f5fac3d737354de8831cbba3eb04f79dd649d8f3afb4c5b114925e662a796", size = 24345, upload-time = "2024-09-02T03:34:59.454Z" }, + { url = "https://files.pythonhosted.org/packages/10/a1/510b0a7fadc6f43a6ce50152e69dbd86415240835868bb0bd9b5b88b1e06/aioitertools-0.13.0-py3-none-any.whl", hash = "sha256:0be0292b856f08dfac90e31f4739432f4cb6d7520ab9eb73e143f4f2fa5259be", size = 24182, upload-time = "2025-11-06T22:17:06.502Z" }, ] [[package]] name = "aiosignal" -version = "1.3.2" +version = "1.4.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "frozenlist" }, + { name = "typing-extensions", marker = "python_full_version < '3.13' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/ba/b5/6d55e80f6d8a08ce22b982eafa278d823b541c925f11ee774b0b9c43473d/aiosignal-1.3.2.tar.gz", hash = "sha256:a8c255c66fafb1e499c9351d0bf32ff2d8a0321595ebac3b93713656d2436f54", size = 19424, upload-time = "2024-12-13T17:10:40.86Z" } +sdist = { url = "https://files.pythonhosted.org/packages/61/62/06741b579156360248d1ec624842ad0edf697050bbaf7c3e46394e106ad1/aiosignal-1.4.0.tar.gz", hash = "sha256:f47eecd9468083c2029cc99945502cb7708b082c232f9aca65da147157b251c7", size = 25007, upload-time = "2025-07-03T22:54:43.528Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/ec/6a/bc7e17a3e87a2985d3e8f4da4cd0f481060eb78fb08596c42be62c90a4d9/aiosignal-1.3.2-py2.py3-none-any.whl", hash = "sha256:45cde58e409a301715980c2b01d0c28bdde3770d8290b5eb2173759d9acb31a5", size = 7597, upload-time = "2024-12-13T17:10:38.469Z" }, + { url = "https://files.pythonhosted.org/packages/fb/76/641ae371508676492379f16e2fa48f4e2c11741bd63c48be4b12a6b09cba/aiosignal-1.4.0-py3-none-any.whl", hash = "sha256:053243f8b92b990551949e63930a839ff0cf0b0ebbe0597b0f3fb19e1a0fe82e", size = 7490, upload-time = "2025-07-03T22:54:42.156Z" }, ] [[package]] @@ -765,6 +758,19 @@ version = "4.9.3" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/3e/38/7859ff46355f76f8d19459005ca000b6e7012f2f1ca597746cbcd1fbfe5e/antlr4-python3-runtime-4.9.3.tar.gz", hash = "sha256:f224469b4168294902bb1efa80a8bf7855f24c99aef99cbefc1bcd3cce77881b", size = 117034, upload-time = "2021-11-06T17:52:23.524Z" } +[[package]] +name = "anyio" +version = "4.12.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "idna" }, + { name = "typing-extensions", marker = "python_full_version < '3.13' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/16/ce/8a777047513153587e5434fd752e89334ac33e379aa3497db860eeb60377/anyio-4.12.0.tar.gz", hash = "sha256:73c693b567b0c55130c104d0b43a9baf3aa6a31fc6110116509f27bf75e21ec0", size = 228266, upload-time = "2025-11-28T23:37:38.911Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7f/9c/36c5c37947ebfb8c7f22e0eb6e4d188ee2d53aa3880f3f2744fb894f0cb1/anyio-4.12.0-py3-none-any.whl", hash = "sha256:dad2376a628f98eeca4881fc56cd06affd18f659b17a747d3ff0307ced94b1bb", size = 113362, upload-time = "2025-11-28T23:36:57.897Z" }, +] + [[package]] name = "appdirs" version = "1.4.4" @@ -785,56 +791,71 @@ wheels = [ [[package]] name = "arrow" -version = "1.3.0" +version = "1.4.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "python-dateutil" }, - { name = "types-python-dateutil" }, + { name = "tzdata" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/2e/00/0f6e8fcdb23ea632c866620cc872729ff43ed91d284c866b515c6342b173/arrow-1.3.0.tar.gz", hash = "sha256:d4540617648cb5f895730f1ad8c82a65f2dad0166f57b75f3ca54759c4d67a85", size = 131960, upload-time = "2023-09-30T22:11:18.25Z" } +sdist = { url = "https://files.pythonhosted.org/packages/b9/33/032cdc44182491aa708d06a68b62434140d8c50820a087fac7af37703357/arrow-1.4.0.tar.gz", hash = "sha256:ed0cc050e98001b8779e84d461b0098c4ac597e88704a655582b21d116e526d7", size = 152931, upload-time = "2025-10-18T17:46:46.761Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/f8/ed/e97229a566617f2ae958a6b13e7cc0f585470eac730a73e9e82c32a3cdd2/arrow-1.3.0-py3-none-any.whl", hash = "sha256:c728b120ebc00eb84e01882a6f5e7927a53960aa990ce7dd2b10f39005a67f80", size = 66419, upload-time = "2023-09-30T22:11:16.072Z" }, + { url = "https://files.pythonhosted.org/packages/ed/c9/d7977eaacb9df673210491da99e6a247e93df98c715fc43fd136ce1d3d33/arrow-1.4.0-py3-none-any.whl", hash = "sha256:749f0769958ebdc79c173ff0b0670d59051a535fa26e8eba02953dc19eb43205", size = 68797, upload-time = "2025-10-18T17:46:45.663Z" }, ] [[package]] name = "ase" -version = "3.25.0" +version = "3.26.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "matplotlib" }, - { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-5-mlipx-grace' or extra == 'extra-5-mlipx-matpes' or extra == 'extra-5-mlipx-mattersim' or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-5-mlipx-fairchem' or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'extra-5-mlipx-grace') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "numpy", version = "2.1.3", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform != 'linux' or extra == 'extra-5-mlipx-fairchem' or extra != 'extra-5-mlipx-grace' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, { name = "scipy" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/e8/a1/5735ced2f159979f5b27c4083126b7796a5750cee6f027864e59818a5b76/ase-3.25.0.tar.gz", hash = "sha256:374cf8ca9fe588f05d6e856da3c9c17ef262dc968027b231d449334140c962c2", size = 2400055, upload-time = "2025-04-11T17:14:39.975Z" } +sdist = { url = "https://files.pythonhosted.org/packages/30/33/2ffa44950267450f6a5cdb711c68e12d0d72d626e246e5897e3bada7bac6/ase-3.26.0.tar.gz", hash = "sha256:a071a355775b0a8062d23e9266e9d811b19d9f6d9ec5215e8032f7d93dc65075", size = 2405567, upload-time = "2025-08-12T13:06:55.589Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/07/f5/007d993fcf3b051acb304d5402e0bd103fd20816b47dee9531bdbfb3aa0c/ase-3.25.0-py3-none-any.whl", hash = "sha256:f9a5295e1154da355af04726d001fa76a311c076616d98e49cd9f34fc3afe188", size = 2951559, upload-time = "2025-04-11T17:14:37.617Z" }, + { url = "https://files.pythonhosted.org/packages/dd/f0/6e52d797bee63530f4b778cb4cbb3a01970f104197c364a8ff51bc9f5a21/ase-3.26.0-py3-none-any.whl", hash = "sha256:77fd0e609bd3868006d4bb3bb95cdc4081d9e292ac84f6c9fb564b5751d2689e", size = 2946787, upload-time = "2025-08-12T13:06:53.316Z" }, ] [[package]] name = "ase-db-backends" -version = "0.10.0" +version = "0.11.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "ase" }, { name = "cryptography" }, { name = "lmdb" }, - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" } }, + { name = "numpy", version = "2.1.3", source = { registry = "https://pypi.org/simple" } }, { name = "psycopg2-binary" }, { name = "pymysql" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/35/67/fd728ceb06a4a0d8ed1d9179fe49ceff00b3400fb673375ce73658a775ff/ase_db_backends-0.10.0.tar.gz", hash = "sha256:fef98a88f47b8075c1f5aa068205009acdacbfa446e508077c2c477dc105079a", size = 34068, upload-time = "2025-05-15T14:09:31.883Z" } +sdist = { url = "https://files.pythonhosted.org/packages/83/d5/c448e9c4470e4b8612154e13cd5369c8b8792a1bdf901a32a35e79408d20/ase_db_backends-0.11.0.tar.gz", hash = "sha256:8575938eaf7708a52eb951c6f955f39082fa79c8332f4568715dacb8e733717a", size = 35605, upload-time = "2025-11-12T08:02:50.328Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/32/63/0c2e7d0ff2ad640ffd41c9d61939c9d268163562211717d4753329545bbd/ase_db_backends-0.10.0-py3-none-any.whl", hash = "sha256:429d6f1ef0d84dab628f2dba3d22eb6239e7527d8453c54085c190277a9a6bbd", size = 42868, upload-time = "2025-05-15T14:09:30.343Z" }, + { url = "https://files.pythonhosted.org/packages/90/24/35e57bdbd6d1c37ae889b669c4bf06b159fa275afe189a81460d392d187e/ase_db_backends-0.11.0-py3-none-any.whl", hash = "sha256:dd5959b9a3cbe3deb5726724afa0045d7d009e04e08be5f4b7ffae703a563a99", size = 44738, upload-time = "2025-11-12T08:02:49.215Z" }, +] + +[[package]] +name = "aserpc" +version = "0.1.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "ase" }, + { name = "msgspec" }, + { name = "pyzmq" }, + { name = "rich", version = "13.9.4", source = { registry = "https://pypi.org/simple" }, marker = "(extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn')" }, + { name = "rich", version = "14.2.0", source = { registry = "https://pypi.org/simple" }, marker = "(extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb')" }, + { name = "typer" }, + { name = "uvloop" }, ] +sdist = { url = "https://files.pythonhosted.org/packages/ed/83/1b7bfba149bee01da57cf2187eb1a1d9d8ee734ecab5b7191c0b3b822f47/aserpc-0.1.1.tar.gz", hash = "sha256:e996bb9742992084a10f943e246259e1b6bda54a916fba82c1264b1c6ce7db56", size = 107193, upload-time = "2025-12-04T14:25:13.353Z" } [[package]] name = "asttokens" -version = "3.0.0" +version = "3.0.1" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/4a/e7/82da0a03e7ba5141f05cce0d302e6eed121ae055e0456ca228bf693984bc/asttokens-3.0.0.tar.gz", hash = "sha256:0dcd8baa8d62b0c1d118b399b2ddba3c4aff271d0d7a9e0d4c1681c79035bbc7", size = 61978, upload-time = "2024-11-30T04:30:14.439Z" } +sdist = { url = "https://files.pythonhosted.org/packages/be/a5/8e3f9b6771b0b408517c82d97aed8f2036509bc247d46114925e32fe33f0/asttokens-3.0.1.tar.gz", hash = "sha256:71a4ee5de0bde6a31d64f6b13f2293ac190344478f081c3d1bccfcf5eacb0cb7", size = 62308, upload-time = "2025-11-15T16:43:48.578Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/25/8a/c46dcc25341b5bce5472c718902eb3d38600a903b14fa6aeecef3f21a46f/asttokens-3.0.0-py3-none-any.whl", hash = "sha256:e3078351a059199dd5138cb1c706e6430c05eff2ff136af5eb4790f9d28932e2", size = 26918, upload-time = "2024-11-30T04:30:10.946Z" }, + { url = "https://files.pythonhosted.org/packages/d2/39/e7eaf1799466a4aef85b6a4fe7bd175ad2b1c6345066aa33f1f58d4b18d0/asttokens-3.0.1-py3-none-any.whl", hash = "sha256:15a3ebc0f43c2d0a50eeafea25e19046c68398e487b9f1f5b517f7c0f40f976a", size = 27047, upload-time = "2025-11-15T16:43:16.109Z" }, ] [[package]] @@ -861,15 +882,15 @@ wheels = [ [[package]] name = "asyncssh" -version = "2.21.0" +version = "2.21.1" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "cryptography" }, { name = "typing-extensions" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/e8/d6/823ed5a227f7da70b33681e49eec4a36fae31b9296b27a8d6aead2bd3f77/asyncssh-2.21.0.tar.gz", hash = "sha256:450fe13bb8d86a8f4e7d7b5fafce7791181ca3e7c92e15bbc45dfb25866e48b3", size = 539740, upload-time = "2025-05-03T13:42:05.945Z" } +sdist = { url = "https://files.pythonhosted.org/packages/6b/b8/065c20bb5c9b8991648c0f25b13e445b4f51556cc3fdd0ad13ce4787c156/asyncssh-2.21.1.tar.gz", hash = "sha256:9943802955e2131536c2b1e71aacc68f56973a399937ed0b725086d7461c990c", size = 540515, upload-time = "2025-09-28T16:36:19.468Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/99/56/db25216aa7f385ec71fdc489af80812171515cddbe68c0e515e98a291390/asyncssh-2.21.0-py3-none-any.whl", hash = "sha256:cf7f3dfa52b2cb4ad31f0d77ff0d0a8fdd850203da84a0e72e62c36fdd4daf4b", size = 374919, upload-time = "2025-05-03T13:42:04.539Z" }, + { url = "https://files.pythonhosted.org/packages/0e/89/4a9a61bc120ca68bce92b0ea176ddc0e550e58c60ab820603bd5246e7261/asyncssh-2.21.1-py3-none-any.whl", hash = "sha256:f218f9f303c78df6627d0646835e04039a156d15e174ad63c058d62de61e1968", size = 375529, upload-time = "2025-09-28T16:36:17.68Z" }, ] [[package]] @@ -882,7 +903,8 @@ dependencies = [ { name = "emmet-core" }, { name = "jobflow" }, { name = "monty" }, - { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" } }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb')" }, + { name = "numpy", version = "2.1.3", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'linux' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb')" }, { name = "pydantic" }, { name = "pydantic-settings" }, { name = "pymatgen" }, @@ -895,39 +917,38 @@ wheels = [ [[package]] name = "atpublic" -version = "6.0.1" +version = "7.0.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/20/40/e686038a07af08e8462a71dc9201867ffdde408b4d93be90a4ad0fbc83ef/atpublic-6.0.1.tar.gz", hash = "sha256:718932844f5bdfdf5d80ad4c64e13964f22274b4f8937d54a8d3811d6bc5dc05", size = 17520, upload-time = "2025-05-07T03:11:30.609Z" } +sdist = { url = "https://files.pythonhosted.org/packages/a9/05/e2e131a0debaf0f01b8a1b586f5f11713f6affc3e711b406f15f11eafc92/atpublic-7.0.0.tar.gz", hash = "sha256:466ef10d0c8bbd14fd02a5fbd5a8b6af6a846373d91106d3a07c16d72d96b63e", size = 17801, upload-time = "2025-11-29T05:56:45.45Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/cd/37/66f9fcdd6a56ab3da53291c7501890246c39bc7b5891e27cd956efe127ca/atpublic-6.0.1-py3-none-any.whl", hash = "sha256:f9a23902faf5ca1fdc6436b3712d79452f71abc61a810d22be1f31b40a8004c5", size = 6421, upload-time = "2025-05-07T03:11:29.398Z" }, + { url = "https://files.pythonhosted.org/packages/96/c0/271f3e1e3502a8decb8ee5c680dbed2d8dc2cd504f5e20f7ed491d5f37e1/atpublic-7.0.0-py3-none-any.whl", hash = "sha256:6702bd9e7245eb4e8220a3e222afcef7f87412154732271ee7deee4433b72b4b", size = 6421, upload-time = "2025-11-29T05:56:44.604Z" }, ] [[package]] name = "attrs" -version = "25.3.0" +version = "25.4.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/5a/b0/1367933a8532ee6ff8d63537de4f1177af4bff9f3e829baf7331f595bb24/attrs-25.3.0.tar.gz", hash = "sha256:75d7cefc7fb576747b2c81b4442d4d4a1ce0900973527c011d1030fd3bf4af1b", size = 812032, upload-time = "2025-03-13T11:10:22.779Z" } +sdist = { url = "https://files.pythonhosted.org/packages/6b/5c/685e6633917e101e5dcb62b9dd76946cbb57c26e133bae9e0cd36033c0a9/attrs-25.4.0.tar.gz", hash = "sha256:16d5969b87f0859ef33a48b35d55ac1be6e42ae49d5e853b597db70c35c57e11", size = 934251, upload-time = "2025-10-06T13:54:44.725Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/77/06/bb80f5f86020c4551da315d78b3ab75e8228f89f0162f2c3a819e407941a/attrs-25.3.0-py3-none-any.whl", hash = "sha256:427318ce031701fea540783410126f03899a97ffc6f61596ad581ac2e40e3bc3", size = 63815, upload-time = "2025-03-13T11:10:21.14Z" }, + { url = "https://files.pythonhosted.org/packages/3a/2a/7cc015f5b9f5db42b7d48157e23356022889fc354a2813c15934b7cb5c0e/attrs-25.4.0-py3-none-any.whl", hash = "sha256:adcf7e2a1fb3b36ac48d97835bb6d8ade15b8dcce26aba8bf1d14847b57a3373", size = 67615, upload-time = "2025-10-06T13:54:43.17Z" }, ] [[package]] name = "azure-core" -version = "1.34.0" +version = "1.36.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "requests" }, - { name = "six" }, { name = "typing-extensions" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/c9/29/ff7a519a315e41c85bab92a7478c6acd1cf0b14353139a08caee4c691f77/azure_core-1.34.0.tar.gz", hash = "sha256:bdb544989f246a0ad1c85d72eeb45f2f835afdcbc5b45e43f0dbde7461c81ece", size = 297999, upload-time = "2025-05-01T23:17:27.59Z" } +sdist = { url = "https://files.pythonhosted.org/packages/0a/c4/d4ff3bc3ddf155156460bff340bbe9533f99fac54ddea165f35a8619f162/azure_core-1.36.0.tar.gz", hash = "sha256:22e5605e6d0bf1d229726af56d9e92bc37b6e726b141a18be0b4d424131741b7", size = 351139, upload-time = "2025-10-15T00:33:49.083Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/84/9e/5c87b49f65bb16571599bc789857d0ded2f53014d3392bc88a5d1f3ad779/azure_core-1.34.0-py3-none-any.whl", hash = "sha256:0615d3b756beccdb6624d1c0ae97284f38b78fb59a2a9839bf927c66fbbdddd6", size = 207409, upload-time = "2025-05-01T23:17:29.818Z" }, + { url = "https://files.pythonhosted.org/packages/b1/3c/b90d5afc2e47c4a45f4bba00f9c3193b0417fad5ad3bb07869f9d12832aa/azure_core-1.36.0-py3-none-any.whl", hash = "sha256:fee9923a3a753e94a259563429f3644aaf05c486d45b1215d098115102d91d3b", size = 213302, upload-time = "2025-10-15T00:33:51.058Z" }, ] [[package]] name = "azure-identity" -version = "1.23.0" +version = "1.25.1" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "azure-core" }, @@ -936,14 +957,14 @@ dependencies = [ { name = "msal-extensions" }, { name = "typing-extensions" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/41/52/458c1be17a5d3796570ae2ed3c6b7b55b134b22d5ef8132b4f97046a9051/azure_identity-1.23.0.tar.gz", hash = "sha256:d9cdcad39adb49d4bb2953a217f62aec1f65bbb3c63c9076da2be2a47e53dde4", size = 265280, upload-time = "2025-05-14T00:18:30.408Z" } +sdist = { url = "https://files.pythonhosted.org/packages/06/8d/1a6c41c28a37eab26dc85ab6c86992c700cd3f4a597d9ed174b0e9c69489/azure_identity-1.25.1.tar.gz", hash = "sha256:87ca8328883de6036443e1c37b40e8dc8fb74898240f61071e09d2e369361456", size = 279826, upload-time = "2025-10-06T20:30:02.194Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/07/16/a51d47780f41e4b87bb2d454df6aea90a44a346e918ac189d3700f3d728d/azure_identity-1.23.0-py3-none-any.whl", hash = "sha256:dbbeb64b8e5eaa81c44c565f264b519ff2de7ff0e02271c49f3cb492762a50b0", size = 186097, upload-time = "2025-05-14T00:18:32.734Z" }, + { url = "https://files.pythonhosted.org/packages/83/7b/5652771e24fff12da9dde4c20ecf4682e606b104f26419d139758cc935a6/azure_identity-1.25.1-py3-none-any.whl", hash = "sha256:e9edd720af03dff020223cd269fa3a61e8f345ea75443858273bcb44844ab651", size = 191317, upload-time = "2025-10-06T20:30:04.251Z" }, ] [[package]] name = "azure-storage-blob" -version = "12.25.1" +version = "12.27.1" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "azure-core" }, @@ -951,9 +972,9 @@ dependencies = [ { name = "isodate" }, { name = "typing-extensions" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/8b/f3/f764536c25cc3829d36857167f03933ce9aee2262293179075439f3cd3ad/azure_storage_blob-12.25.1.tar.gz", hash = "sha256:4f294ddc9bc47909ac66b8934bd26b50d2000278b10ad82cc109764fdc6e0e3b", size = 570541, upload-time = "2025-03-27T17:13:05.424Z" } +sdist = { url = "https://files.pythonhosted.org/packages/36/7c/2fd872e11a88163f208b9c92de273bf64bb22d0eef9048cc6284d128a77a/azure_storage_blob-12.27.1.tar.gz", hash = "sha256:a1596cc4daf5dac9be115fcb5db67245eae894cf40e4248243754261f7b674a6", size = 597579, upload-time = "2025-10-29T12:27:16.185Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/57/33/085d9352d416e617993821b9d9488222fbb559bc15c3641d6cbd6d16d236/azure_storage_blob-12.25.1-py3-none-any.whl", hash = "sha256:1f337aab12e918ec3f1b638baada97550673911c4ceed892acc8e4e891b74167", size = 406990, upload-time = "2025-03-27T17:13:06.879Z" }, + { url = "https://files.pythonhosted.org/packages/3d/9e/1c90a122ea6180e8c72eb7294adc92531b0e08eb3d2324c2ba70d37f4802/azure_storage_blob-12.27.1-py3-none-any.whl", hash = "sha256:65d1e25a4628b7b6acd20ff7902d8da5b4fde8e46e19c8f6d213a3abc3ece272", size = 428954, upload-time = "2025-10-29T12:27:18.072Z" }, ] [[package]] @@ -967,75 +988,96 @@ wheels = [ [[package]] name = "bcrypt" -version = "4.3.0" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/bb/5d/6d7433e0f3cd46ce0b43cd65e1db465ea024dbb8216fb2404e919c2ad77b/bcrypt-4.3.0.tar.gz", hash = "sha256:3a3fd2204178b6d2adcf09cb4f6426ffef54762577a7c9b54c159008cb288c18", size = 25697, upload-time = "2025-02-28T01:24:09.174Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/bf/2c/3d44e853d1fe969d229bd58d39ae6902b3d924af0e2b5a60d17d4b809ded/bcrypt-4.3.0-cp313-cp313t-macosx_10_12_universal2.whl", hash = "sha256:f01e060f14b6b57bbb72fc5b4a83ac21c443c9a2ee708e04a10e9192f90a6281", size = 483719, upload-time = "2025-02-28T01:22:34.539Z" }, - { url = "https://files.pythonhosted.org/packages/a1/e2/58ff6e2a22eca2e2cff5370ae56dba29d70b1ea6fc08ee9115c3ae367795/bcrypt-4.3.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5eeac541cefd0bb887a371ef73c62c3cd78535e4887b310626036a7c0a817bb", size = 272001, upload-time = "2025-02-28T01:22:38.078Z" }, - { url = "https://files.pythonhosted.org/packages/37/1f/c55ed8dbe994b1d088309e366749633c9eb90d139af3c0a50c102ba68a1a/bcrypt-4.3.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:59e1aa0e2cd871b08ca146ed08445038f42ff75968c7ae50d2fdd7860ade2180", size = 277451, upload-time = "2025-02-28T01:22:40.787Z" }, - { url = "https://files.pythonhosted.org/packages/d7/1c/794feb2ecf22fe73dcfb697ea7057f632061faceb7dcf0f155f3443b4d79/bcrypt-4.3.0-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:0042b2e342e9ae3d2ed22727c1262f76cc4f345683b5c1715f0250cf4277294f", size = 272792, upload-time = "2025-02-28T01:22:43.144Z" }, - { url = "https://files.pythonhosted.org/packages/13/b7/0b289506a3f3598c2ae2bdfa0ea66969812ed200264e3f61df77753eee6d/bcrypt-4.3.0-cp313-cp313t-manylinux_2_28_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:74a8d21a09f5e025a9a23e7c0fd2c7fe8e7503e4d356c0a2c1486ba010619f09", size = 289752, upload-time = "2025-02-28T01:22:45.56Z" }, - { url = "https://files.pythonhosted.org/packages/dc/24/d0fb023788afe9e83cc118895a9f6c57e1044e7e1672f045e46733421fe6/bcrypt-4.3.0-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:0142b2cb84a009f8452c8c5a33ace5e3dfec4159e7735f5afe9a4d50a8ea722d", size = 277762, upload-time = "2025-02-28T01:22:47.023Z" }, - { url = "https://files.pythonhosted.org/packages/e4/38/cde58089492e55ac4ef6c49fea7027600c84fd23f7520c62118c03b4625e/bcrypt-4.3.0-cp313-cp313t-manylinux_2_34_aarch64.whl", hash = "sha256:12fa6ce40cde3f0b899729dbd7d5e8811cb892d31b6f7d0334a1f37748b789fd", size = 272384, upload-time = "2025-02-28T01:22:49.221Z" }, - { url = "https://files.pythonhosted.org/packages/de/6a/d5026520843490cfc8135d03012a413e4532a400e471e6188b01b2de853f/bcrypt-4.3.0-cp313-cp313t-manylinux_2_34_x86_64.whl", hash = "sha256:5bd3cca1f2aa5dbcf39e2aa13dd094ea181f48959e1071265de49cc2b82525af", size = 277329, upload-time = "2025-02-28T01:22:51.603Z" }, - { url = "https://files.pythonhosted.org/packages/b3/a3/4fc5255e60486466c389e28c12579d2829b28a527360e9430b4041df4cf9/bcrypt-4.3.0-cp313-cp313t-musllinux_1_1_aarch64.whl", hash = "sha256:335a420cfd63fc5bc27308e929bee231c15c85cc4c496610ffb17923abf7f231", size = 305241, upload-time = "2025-02-28T01:22:53.283Z" }, - { url = "https://files.pythonhosted.org/packages/c7/15/2b37bc07d6ce27cc94e5b10fd5058900eb8fb11642300e932c8c82e25c4a/bcrypt-4.3.0-cp313-cp313t-musllinux_1_1_x86_64.whl", hash = "sha256:0e30e5e67aed0187a1764911af023043b4542e70a7461ad20e837e94d23e1d6c", size = 309617, upload-time = "2025-02-28T01:22:55.461Z" }, - { url = "https://files.pythonhosted.org/packages/5f/1f/99f65edb09e6c935232ba0430c8c13bb98cb3194b6d636e61d93fe60ac59/bcrypt-4.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:3b8d62290ebefd49ee0b3ce7500f5dbdcf13b81402c05f6dafab9a1e1b27212f", size = 335751, upload-time = "2025-02-28T01:22:57.81Z" }, - { url = "https://files.pythonhosted.org/packages/00/1b/b324030c706711c99769988fcb694b3cb23f247ad39a7823a78e361bdbb8/bcrypt-4.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:2ef6630e0ec01376f59a006dc72918b1bf436c3b571b80fa1968d775fa02fe7d", size = 355965, upload-time = "2025-02-28T01:22:59.181Z" }, - { url = "https://files.pythonhosted.org/packages/aa/dd/20372a0579dd915dfc3b1cd4943b3bca431866fcb1dfdfd7518c3caddea6/bcrypt-4.3.0-cp313-cp313t-win32.whl", hash = "sha256:7a4be4cbf241afee43f1c3969b9103a41b40bcb3a3f467ab19f891d9bc4642e4", size = 155316, upload-time = "2025-02-28T01:23:00.763Z" }, - { url = "https://files.pythonhosted.org/packages/6d/52/45d969fcff6b5577c2bf17098dc36269b4c02197d551371c023130c0f890/bcrypt-4.3.0-cp313-cp313t-win_amd64.whl", hash = "sha256:5c1949bf259a388863ced887c7861da1df681cb2388645766c89fdfd9004c669", size = 147752, upload-time = "2025-02-28T01:23:02.908Z" }, - { url = "https://files.pythonhosted.org/packages/11/22/5ada0b9af72b60cbc4c9a399fdde4af0feaa609d27eb0adc61607997a3fa/bcrypt-4.3.0-cp38-abi3-macosx_10_12_universal2.whl", hash = "sha256:f81b0ed2639568bf14749112298f9e4e2b28853dab50a8b357e31798686a036d", size = 498019, upload-time = "2025-02-28T01:23:05.838Z" }, - { url = "https://files.pythonhosted.org/packages/b8/8c/252a1edc598dc1ce57905be173328eda073083826955ee3c97c7ff5ba584/bcrypt-4.3.0-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:864f8f19adbe13b7de11ba15d85d4a428c7e2f344bac110f667676a0ff84924b", size = 279174, upload-time = "2025-02-28T01:23:07.274Z" }, - { url = "https://files.pythonhosted.org/packages/29/5b/4547d5c49b85f0337c13929f2ccbe08b7283069eea3550a457914fc078aa/bcrypt-4.3.0-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3e36506d001e93bffe59754397572f21bb5dc7c83f54454c990c74a468cd589e", size = 283870, upload-time = "2025-02-28T01:23:09.151Z" }, - { url = "https://files.pythonhosted.org/packages/be/21/7dbaf3fa1745cb63f776bb046e481fbababd7d344c5324eab47f5ca92dd2/bcrypt-4.3.0-cp38-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:842d08d75d9fe9fb94b18b071090220697f9f184d4547179b60734846461ed59", size = 279601, upload-time = "2025-02-28T01:23:11.461Z" }, - { url = "https://files.pythonhosted.org/packages/6d/64/e042fc8262e971347d9230d9abbe70d68b0a549acd8611c83cebd3eaec67/bcrypt-4.3.0-cp38-abi3-manylinux_2_28_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:7c03296b85cb87db865d91da79bf63d5609284fc0cab9472fdd8367bbd830753", size = 297660, upload-time = "2025-02-28T01:23:12.989Z" }, - { url = "https://files.pythonhosted.org/packages/50/b8/6294eb84a3fef3b67c69b4470fcdd5326676806bf2519cda79331ab3c3a9/bcrypt-4.3.0-cp38-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:62f26585e8b219cdc909b6a0069efc5e4267e25d4a3770a364ac58024f62a761", size = 284083, upload-time = "2025-02-28T01:23:14.5Z" }, - { url = "https://files.pythonhosted.org/packages/62/e6/baff635a4f2c42e8788fe1b1633911c38551ecca9a749d1052d296329da6/bcrypt-4.3.0-cp38-abi3-manylinux_2_34_aarch64.whl", hash = "sha256:beeefe437218a65322fbd0069eb437e7c98137e08f22c4660ac2dc795c31f8bb", size = 279237, upload-time = "2025-02-28T01:23:16.686Z" }, - { url = "https://files.pythonhosted.org/packages/39/48/46f623f1b0c7dc2e5de0b8af5e6f5ac4cc26408ac33f3d424e5ad8da4a90/bcrypt-4.3.0-cp38-abi3-manylinux_2_34_x86_64.whl", hash = "sha256:97eea7408db3a5bcce4a55d13245ab3fa566e23b4c67cd227062bb49e26c585d", size = 283737, upload-time = "2025-02-28T01:23:18.897Z" }, - { url = "https://files.pythonhosted.org/packages/49/8b/70671c3ce9c0fca4a6cc3cc6ccbaa7e948875a2e62cbd146e04a4011899c/bcrypt-4.3.0-cp38-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:191354ebfe305e84f344c5964c7cd5f924a3bfc5d405c75ad07f232b6dffb49f", size = 312741, upload-time = "2025-02-28T01:23:21.041Z" }, - { url = "https://files.pythonhosted.org/packages/27/fb/910d3a1caa2d249b6040a5caf9f9866c52114d51523ac2fb47578a27faee/bcrypt-4.3.0-cp38-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:41261d64150858eeb5ff43c753c4b216991e0ae16614a308a15d909503617732", size = 316472, upload-time = "2025-02-28T01:23:23.183Z" }, - { url = "https://files.pythonhosted.org/packages/dc/cf/7cf3a05b66ce466cfb575dbbda39718d45a609daa78500f57fa9f36fa3c0/bcrypt-4.3.0-cp38-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:33752b1ba962ee793fa2b6321404bf20011fe45b9afd2a842139de3011898fef", size = 343606, upload-time = "2025-02-28T01:23:25.361Z" }, - { url = "https://files.pythonhosted.org/packages/e3/b8/e970ecc6d7e355c0d892b7f733480f4aa8509f99b33e71550242cf0b7e63/bcrypt-4.3.0-cp38-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:50e6e80a4bfd23a25f5c05b90167c19030cf9f87930f7cb2eacb99f45d1c3304", size = 362867, upload-time = "2025-02-28T01:23:26.875Z" }, - { url = "https://files.pythonhosted.org/packages/a9/97/8d3118efd8354c555a3422d544163f40d9f236be5b96c714086463f11699/bcrypt-4.3.0-cp38-abi3-win32.whl", hash = "sha256:67a561c4d9fb9465ec866177e7aebcad08fe23aaf6fbd692a6fab69088abfc51", size = 160589, upload-time = "2025-02-28T01:23:28.381Z" }, - { url = "https://files.pythonhosted.org/packages/29/07/416f0b99f7f3997c69815365babbc2e8754181a4b1899d921b3c7d5b6f12/bcrypt-4.3.0-cp38-abi3-win_amd64.whl", hash = "sha256:584027857bc2843772114717a7490a37f68da563b3620f78a849bcb54dc11e62", size = 152794, upload-time = "2025-02-28T01:23:30.187Z" }, - { url = "https://files.pythonhosted.org/packages/6e/c1/3fa0e9e4e0bfd3fd77eb8b52ec198fd6e1fd7e9402052e43f23483f956dd/bcrypt-4.3.0-cp39-abi3-macosx_10_12_universal2.whl", hash = "sha256:0d3efb1157edebfd9128e4e46e2ac1a64e0c1fe46fb023158a407c7892b0f8c3", size = 498969, upload-time = "2025-02-28T01:23:31.945Z" }, - { url = "https://files.pythonhosted.org/packages/ce/d4/755ce19b6743394787fbd7dff6bf271b27ee9b5912a97242e3caf125885b/bcrypt-4.3.0-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:08bacc884fd302b611226c01014eca277d48f0a05187666bca23aac0dad6fe24", size = 279158, upload-time = "2025-02-28T01:23:34.161Z" }, - { url = "https://files.pythonhosted.org/packages/9b/5d/805ef1a749c965c46b28285dfb5cd272a7ed9fa971f970435a5133250182/bcrypt-4.3.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f6746e6fec103fcd509b96bacdfdaa2fbde9a553245dbada284435173a6f1aef", size = 284285, upload-time = "2025-02-28T01:23:35.765Z" }, - { url = "https://files.pythonhosted.org/packages/ab/2b/698580547a4a4988e415721b71eb45e80c879f0fb04a62da131f45987b96/bcrypt-4.3.0-cp39-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:afe327968aaf13fc143a56a3360cb27d4ad0345e34da12c7290f1b00b8fe9a8b", size = 279583, upload-time = "2025-02-28T01:23:38.021Z" }, - { url = "https://files.pythonhosted.org/packages/f2/87/62e1e426418204db520f955ffd06f1efd389feca893dad7095bf35612eec/bcrypt-4.3.0-cp39-abi3-manylinux_2_28_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:d9af79d322e735b1fc33404b5765108ae0ff232d4b54666d46730f8ac1a43676", size = 297896, upload-time = "2025-02-28T01:23:39.575Z" }, - { url = "https://files.pythonhosted.org/packages/cb/c6/8fedca4c2ada1b6e889c52d2943b2f968d3427e5d65f595620ec4c06fa2f/bcrypt-4.3.0-cp39-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:f1e3ffa1365e8702dc48c8b360fef8d7afeca482809c5e45e653af82ccd088c1", size = 284492, upload-time = "2025-02-28T01:23:40.901Z" }, - { url = "https://files.pythonhosted.org/packages/4d/4d/c43332dcaaddb7710a8ff5269fcccba97ed3c85987ddaa808db084267b9a/bcrypt-4.3.0-cp39-abi3-manylinux_2_34_aarch64.whl", hash = "sha256:3004df1b323d10021fda07a813fd33e0fd57bef0e9a480bb143877f6cba996fe", size = 279213, upload-time = "2025-02-28T01:23:42.653Z" }, - { url = "https://files.pythonhosted.org/packages/dc/7f/1e36379e169a7df3a14a1c160a49b7b918600a6008de43ff20d479e6f4b5/bcrypt-4.3.0-cp39-abi3-manylinux_2_34_x86_64.whl", hash = "sha256:531457e5c839d8caea9b589a1bcfe3756b0547d7814e9ce3d437f17da75c32b0", size = 284162, upload-time = "2025-02-28T01:23:43.964Z" }, - { url = "https://files.pythonhosted.org/packages/1c/0a/644b2731194b0d7646f3210dc4d80c7fee3ecb3a1f791a6e0ae6bb8684e3/bcrypt-4.3.0-cp39-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:17a854d9a7a476a89dcef6c8bd119ad23e0f82557afbd2c442777a16408e614f", size = 312856, upload-time = "2025-02-28T01:23:46.011Z" }, - { url = "https://files.pythonhosted.org/packages/dc/62/2a871837c0bb6ab0c9a88bf54de0fc021a6a08832d4ea313ed92a669d437/bcrypt-4.3.0-cp39-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:6fb1fd3ab08c0cbc6826a2e0447610c6f09e983a281b919ed721ad32236b8b23", size = 316726, upload-time = "2025-02-28T01:23:47.575Z" }, - { url = "https://files.pythonhosted.org/packages/0c/a1/9898ea3faac0b156d457fd73a3cb9c2855c6fd063e44b8522925cdd8ce46/bcrypt-4.3.0-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:e965a9c1e9a393b8005031ff52583cedc15b7884fce7deb8b0346388837d6cfe", size = 343664, upload-time = "2025-02-28T01:23:49.059Z" }, - { url = "https://files.pythonhosted.org/packages/40/f2/71b4ed65ce38982ecdda0ff20c3ad1b15e71949c78b2c053df53629ce940/bcrypt-4.3.0-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:79e70b8342a33b52b55d93b3a59223a844962bef479f6a0ea318ebbcadf71505", size = 363128, upload-time = "2025-02-28T01:23:50.399Z" }, - { url = "https://files.pythonhosted.org/packages/11/99/12f6a58eca6dea4be992d6c681b7ec9410a1d9f5cf368c61437e31daa879/bcrypt-4.3.0-cp39-abi3-win32.whl", hash = "sha256:b4d4e57f0a63fd0b358eb765063ff661328f69a04494427265950c71b992a39a", size = 160598, upload-time = "2025-02-28T01:23:51.775Z" }, - { url = "https://files.pythonhosted.org/packages/a9/cf/45fb5261ece3e6b9817d3d82b2f343a505fd58674a92577923bc500bd1aa/bcrypt-4.3.0-cp39-abi3-win_amd64.whl", hash = "sha256:e53e074b120f2877a35cc6c736b8eb161377caae8925c17688bd46ba56daaa5b", size = 152799, upload-time = "2025-02-28T01:23:53.139Z" }, - { url = "https://files.pythonhosted.org/packages/55/2d/0c7e5ab0524bf1a443e34cdd3926ec6f5879889b2f3c32b2f5074e99ed53/bcrypt-4.3.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:c950d682f0952bafcceaf709761da0a32a942272fad381081b51096ffa46cea1", size = 275367, upload-time = "2025-02-28T01:23:54.578Z" }, - { url = "https://files.pythonhosted.org/packages/10/4f/f77509f08bdff8806ecc4dc472b6e187c946c730565a7470db772d25df70/bcrypt-4.3.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:107d53b5c67e0bbc3f03ebf5b030e0403d24dda980f8e244795335ba7b4a027d", size = 280644, upload-time = "2025-02-28T01:23:56.547Z" }, - { url = "https://files.pythonhosted.org/packages/35/18/7d9dc16a3a4d530d0a9b845160e9e5d8eb4f00483e05d44bb4116a1861da/bcrypt-4.3.0-pp310-pypy310_pp73-manylinux_2_34_aarch64.whl", hash = "sha256:b693dbb82b3c27a1604a3dff5bfc5418a7e6a781bb795288141e5f80cf3a3492", size = 274881, upload-time = "2025-02-28T01:23:57.935Z" }, - { url = "https://files.pythonhosted.org/packages/df/c4/ae6921088adf1e37f2a3a6a688e72e7d9e45fdd3ae5e0bc931870c1ebbda/bcrypt-4.3.0-pp310-pypy310_pp73-manylinux_2_34_x86_64.whl", hash = "sha256:b6354d3760fcd31994a14c89659dee887f1351a06e5dac3c1142307172a79f90", size = 280203, upload-time = "2025-02-28T01:23:59.331Z" }, - { url = "https://files.pythonhosted.org/packages/4c/b1/1289e21d710496b88340369137cc4c5f6ee036401190ea116a7b4ae6d32a/bcrypt-4.3.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:a839320bf27d474e52ef8cb16449bb2ce0ba03ca9f44daba6d93fa1d8828e48a", size = 275103, upload-time = "2025-02-28T01:24:00.764Z" }, - { url = "https://files.pythonhosted.org/packages/94/41/19be9fe17e4ffc5d10b7b67f10e459fc4eee6ffe9056a88de511920cfd8d/bcrypt-4.3.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:bdc6a24e754a555d7316fa4774e64c6c3997d27ed2d1964d55920c7c227bc4ce", size = 280513, upload-time = "2025-02-28T01:24:02.243Z" }, - { url = "https://files.pythonhosted.org/packages/aa/73/05687a9ef89edebdd8ad7474c16d8af685eb4591c3c38300bb6aad4f0076/bcrypt-4.3.0-pp311-pypy311_pp73-manylinux_2_34_aarch64.whl", hash = "sha256:55a935b8e9a1d2def0626c4269db3fcd26728cbff1e84f0341465c31c4ee56d8", size = 274685, upload-time = "2025-02-28T01:24:04.512Z" }, - { url = "https://files.pythonhosted.org/packages/63/13/47bba97924ebe86a62ef83dc75b7c8a881d53c535f83e2c54c4bd701e05c/bcrypt-4.3.0-pp311-pypy311_pp73-manylinux_2_34_x86_64.whl", hash = "sha256:57967b7a28d855313a963aaea51bf6df89f833db4320da458e5b3c5ab6d4c938", size = 280110, upload-time = "2025-02-28T01:24:05.896Z" }, +version = "5.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d4/36/3329e2518d70ad8e2e5817d5a4cac6bba05a47767ec416c7d020a965f408/bcrypt-5.0.0.tar.gz", hash = "sha256:f748f7c2d6fd375cc93d3fba7ef4a9e3a092421b8dbf34d8d4dc06be9492dfdd", size = 25386, upload-time = "2025-09-25T19:50:47.829Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/13/85/3e65e01985fddf25b64ca67275bb5bdb4040bd1a53b66d355c6c37c8a680/bcrypt-5.0.0-cp313-cp313t-macosx_10_12_universal2.whl", hash = "sha256:f3c08197f3039bec79cee59a606d62b96b16669cff3949f21e74796b6e3cd2be", size = 481806, upload-time = "2025-09-25T19:49:05.102Z" }, + { url = "https://files.pythonhosted.org/packages/44/dc/01eb79f12b177017a726cbf78330eb0eb442fae0e7b3dfd84ea2849552f3/bcrypt-5.0.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:200af71bc25f22006f4069060c88ed36f8aa4ff7f53e67ff04d2ab3f1e79a5b2", size = 268626, upload-time = "2025-09-25T19:49:06.723Z" }, + { url = "https://files.pythonhosted.org/packages/8c/cf/e82388ad5959c40d6afd94fb4743cc077129d45b952d46bdc3180310e2df/bcrypt-5.0.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:baade0a5657654c2984468efb7d6c110db87ea63ef5a4b54732e7e337253e44f", size = 271853, upload-time = "2025-09-25T19:49:08.028Z" }, + { url = "https://files.pythonhosted.org/packages/ec/86/7134b9dae7cf0efa85671651341f6afa695857fae172615e960fb6a466fa/bcrypt-5.0.0-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:c58b56cdfb03202b3bcc9fd8daee8e8e9b6d7e3163aa97c631dfcfcc24d36c86", size = 269793, upload-time = "2025-09-25T19:49:09.727Z" }, + { url = "https://files.pythonhosted.org/packages/cc/82/6296688ac1b9e503d034e7d0614d56e80c5d1a08402ff856a4549cb59207/bcrypt-5.0.0-cp313-cp313t-manylinux_2_28_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:4bfd2a34de661f34d0bda43c3e4e79df586e4716ef401fe31ea39d69d581ef23", size = 289930, upload-time = "2025-09-25T19:49:11.204Z" }, + { url = "https://files.pythonhosted.org/packages/d1/18/884a44aa47f2a3b88dd09bc05a1e40b57878ecd111d17e5bba6f09f8bb77/bcrypt-5.0.0-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:ed2e1365e31fc73f1825fa830f1c8f8917ca1b3ca6185773b349c20fd606cec2", size = 272194, upload-time = "2025-09-25T19:49:12.524Z" }, + { url = "https://files.pythonhosted.org/packages/0e/8f/371a3ab33c6982070b674f1788e05b656cfbf5685894acbfef0c65483a59/bcrypt-5.0.0-cp313-cp313t-manylinux_2_34_aarch64.whl", hash = "sha256:83e787d7a84dbbfba6f250dd7a5efd689e935f03dd83b0f919d39349e1f23f83", size = 269381, upload-time = "2025-09-25T19:49:14.308Z" }, + { url = "https://files.pythonhosted.org/packages/b1/34/7e4e6abb7a8778db6422e88b1f06eb07c47682313997ee8a8f9352e5a6f1/bcrypt-5.0.0-cp313-cp313t-manylinux_2_34_x86_64.whl", hash = "sha256:137c5156524328a24b9fac1cb5db0ba618bc97d11970b39184c1d87dc4bf1746", size = 271750, upload-time = "2025-09-25T19:49:15.584Z" }, + { url = "https://files.pythonhosted.org/packages/c0/1b/54f416be2499bd72123c70d98d36c6cd61a4e33d9b89562c22481c81bb30/bcrypt-5.0.0-cp313-cp313t-musllinux_1_1_aarch64.whl", hash = "sha256:38cac74101777a6a7d3b3e3cfefa57089b5ada650dce2baf0cbdd9d65db22a9e", size = 303757, upload-time = "2025-09-25T19:49:17.244Z" }, + { url = "https://files.pythonhosted.org/packages/13/62/062c24c7bcf9d2826a1a843d0d605c65a755bc98002923d01fd61270705a/bcrypt-5.0.0-cp313-cp313t-musllinux_1_1_x86_64.whl", hash = "sha256:d8d65b564ec849643d9f7ea05c6d9f0cd7ca23bdd4ac0c2dbef1104ab504543d", size = 306740, upload-time = "2025-09-25T19:49:18.693Z" }, + { url = "https://files.pythonhosted.org/packages/d5/c8/1fdbfc8c0f20875b6b4020f3c7dc447b8de60aa0be5faaf009d24242aec9/bcrypt-5.0.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:741449132f64b3524e95cd30e5cd3343006ce146088f074f31ab26b94e6c75ba", size = 334197, upload-time = "2025-09-25T19:49:20.523Z" }, + { url = "https://files.pythonhosted.org/packages/a6/c1/8b84545382d75bef226fbc6588af0f7b7d095f7cd6a670b42a86243183cd/bcrypt-5.0.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:212139484ab3207b1f0c00633d3be92fef3c5f0af17cad155679d03ff2ee1e41", size = 352974, upload-time = "2025-09-25T19:49:22.254Z" }, + { url = "https://files.pythonhosted.org/packages/10/a6/ffb49d4254ed085e62e3e5dd05982b4393e32fe1e49bb1130186617c29cd/bcrypt-5.0.0-cp313-cp313t-win32.whl", hash = "sha256:9d52ed507c2488eddd6a95bccee4e808d3234fa78dd370e24bac65a21212b861", size = 148498, upload-time = "2025-09-25T19:49:24.134Z" }, + { url = "https://files.pythonhosted.org/packages/48/a9/259559edc85258b6d5fc5471a62a3299a6aa37a6611a169756bf4689323c/bcrypt-5.0.0-cp313-cp313t-win_amd64.whl", hash = "sha256:f6984a24db30548fd39a44360532898c33528b74aedf81c26cf29c51ee47057e", size = 145853, upload-time = "2025-09-25T19:49:25.702Z" }, + { url = "https://files.pythonhosted.org/packages/2d/df/9714173403c7e8b245acf8e4be8876aac64a209d1b392af457c79e60492e/bcrypt-5.0.0-cp313-cp313t-win_arm64.whl", hash = "sha256:9fffdb387abe6aa775af36ef16f55e318dcda4194ddbf82007a6f21da29de8f5", size = 139626, upload-time = "2025-09-25T19:49:26.928Z" }, + { url = "https://files.pythonhosted.org/packages/f8/14/c18006f91816606a4abe294ccc5d1e6f0e42304df5a33710e9e8e95416e1/bcrypt-5.0.0-cp314-cp314t-macosx_10_12_universal2.whl", hash = "sha256:4870a52610537037adb382444fefd3706d96d663ac44cbb2f37e3919dca3d7ef", size = 481862, upload-time = "2025-09-25T19:49:28.365Z" }, + { url = "https://files.pythonhosted.org/packages/67/49/dd074d831f00e589537e07a0725cf0e220d1f0d5d8e85ad5bbff251c45aa/bcrypt-5.0.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:48f753100931605686f74e27a7b49238122aa761a9aefe9373265b8b7aa43ea4", size = 268544, upload-time = "2025-09-25T19:49:30.39Z" }, + { url = "https://files.pythonhosted.org/packages/f5/91/50ccba088b8c474545b034a1424d05195d9fcbaaf802ab8bfe2be5a4e0d7/bcrypt-5.0.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:f70aadb7a809305226daedf75d90379c397b094755a710d7014b8b117df1ebbf", size = 271787, upload-time = "2025-09-25T19:49:32.144Z" }, + { url = "https://files.pythonhosted.org/packages/aa/e7/d7dba133e02abcda3b52087a7eea8c0d4f64d3e593b4fffc10c31b7061f3/bcrypt-5.0.0-cp314-cp314t-manylinux_2_28_aarch64.whl", hash = "sha256:744d3c6b164caa658adcb72cb8cc9ad9b4b75c7db507ab4bc2480474a51989da", size = 269753, upload-time = "2025-09-25T19:49:33.885Z" }, + { url = "https://files.pythonhosted.org/packages/33/fc/5b145673c4b8d01018307b5c2c1fc87a6f5a436f0ad56607aee389de8ee3/bcrypt-5.0.0-cp314-cp314t-manylinux_2_28_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:a28bc05039bdf3289d757f49d616ab3efe8cf40d8e8001ccdd621cd4f98f4fc9", size = 289587, upload-time = "2025-09-25T19:49:35.144Z" }, + { url = "https://files.pythonhosted.org/packages/27/d7/1ff22703ec6d4f90e62f1a5654b8867ef96bafb8e8102c2288333e1a6ca6/bcrypt-5.0.0-cp314-cp314t-manylinux_2_28_x86_64.whl", hash = "sha256:7f277a4b3390ab4bebe597800a90da0edae882c6196d3038a73adf446c4f969f", size = 272178, upload-time = "2025-09-25T19:49:36.793Z" }, + { url = "https://files.pythonhosted.org/packages/c8/88/815b6d558a1e4d40ece04a2f84865b0fef233513bd85fd0e40c294272d62/bcrypt-5.0.0-cp314-cp314t-manylinux_2_34_aarch64.whl", hash = "sha256:79cfa161eda8d2ddf29acad370356b47f02387153b11d46042e93a0a95127493", size = 269295, upload-time = "2025-09-25T19:49:38.164Z" }, + { url = "https://files.pythonhosted.org/packages/51/8c/e0db387c79ab4931fc89827d37608c31cc57b6edc08ccd2386139028dc0d/bcrypt-5.0.0-cp314-cp314t-manylinux_2_34_x86_64.whl", hash = "sha256:a5393eae5722bcef046a990b84dff02b954904c36a194f6cfc817d7dca6c6f0b", size = 271700, upload-time = "2025-09-25T19:49:39.917Z" }, + { url = "https://files.pythonhosted.org/packages/06/83/1570edddd150f572dbe9fc00f6203a89fc7d4226821f67328a85c330f239/bcrypt-5.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:7f4c94dec1b5ab5d522750cb059bb9409ea8872d4494fd152b53cca99f1ddd8c", size = 334034, upload-time = "2025-09-25T19:49:41.227Z" }, + { url = "https://files.pythonhosted.org/packages/c9/f2/ea64e51a65e56ae7a8a4ec236c2bfbdd4b23008abd50ac33fbb2d1d15424/bcrypt-5.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:0cae4cb350934dfd74c020525eeae0a5f79257e8a201c0c176f4b84fdbf2a4b4", size = 352766, upload-time = "2025-09-25T19:49:43.08Z" }, + { url = "https://files.pythonhosted.org/packages/d7/d4/1a388d21ee66876f27d1a1f41287897d0c0f1712ef97d395d708ba93004c/bcrypt-5.0.0-cp314-cp314t-win32.whl", hash = "sha256:b17366316c654e1ad0306a6858e189fc835eca39f7eb2cafd6aaca8ce0c40a2e", size = 152449, upload-time = "2025-09-25T19:49:44.971Z" }, + { url = "https://files.pythonhosted.org/packages/3f/61/3291c2243ae0229e5bca5d19f4032cecad5dfb05a2557169d3a69dc0ba91/bcrypt-5.0.0-cp314-cp314t-win_amd64.whl", hash = "sha256:92864f54fb48b4c718fc92a32825d0e42265a627f956bc0361fe869f1adc3e7d", size = 149310, upload-time = "2025-09-25T19:49:46.162Z" }, + { url = "https://files.pythonhosted.org/packages/3e/89/4b01c52ae0c1a681d4021e5dd3e45b111a8fb47254a274fa9a378d8d834b/bcrypt-5.0.0-cp314-cp314t-win_arm64.whl", hash = "sha256:dd19cf5184a90c873009244586396a6a884d591a5323f0e8a5922560718d4993", size = 143761, upload-time = "2025-09-25T19:49:47.345Z" }, + { url = "https://files.pythonhosted.org/packages/84/29/6237f151fbfe295fe3e074ecc6d44228faa1e842a81f6d34a02937ee1736/bcrypt-5.0.0-cp38-abi3-macosx_10_12_universal2.whl", hash = "sha256:fc746432b951e92b58317af8e0ca746efe93e66555f1b40888865ef5bf56446b", size = 494553, upload-time = "2025-09-25T19:49:49.006Z" }, + { url = "https://files.pythonhosted.org/packages/45/b6/4c1205dde5e464ea3bd88e8742e19f899c16fa8916fb8510a851fae985b5/bcrypt-5.0.0-cp38-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:c2388ca94ffee269b6038d48747f4ce8df0ffbea43f31abfa18ac72f0218effb", size = 275009, upload-time = "2025-09-25T19:49:50.581Z" }, + { url = "https://files.pythonhosted.org/packages/3b/71/427945e6ead72ccffe77894b2655b695ccf14ae1866cd977e185d606dd2f/bcrypt-5.0.0-cp38-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:560ddb6ec730386e7b3b26b8b4c88197aaed924430e7b74666a586ac997249ef", size = 278029, upload-time = "2025-09-25T19:49:52.533Z" }, + { url = "https://files.pythonhosted.org/packages/17/72/c344825e3b83c5389a369c8a8e58ffe1480b8a699f46c127c34580c4666b/bcrypt-5.0.0-cp38-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:d79e5c65dcc9af213594d6f7f1fa2c98ad3fc10431e7aa53c176b441943efbdd", size = 275907, upload-time = "2025-09-25T19:49:54.709Z" }, + { url = "https://files.pythonhosted.org/packages/0b/7e/d4e47d2df1641a36d1212e5c0514f5291e1a956a7749f1e595c07a972038/bcrypt-5.0.0-cp38-abi3-manylinux_2_28_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:2b732e7d388fa22d48920baa267ba5d97cca38070b69c0e2d37087b381c681fd", size = 296500, upload-time = "2025-09-25T19:49:56.013Z" }, + { url = "https://files.pythonhosted.org/packages/0f/c3/0ae57a68be2039287ec28bc463b82e4b8dc23f9d12c0be331f4782e19108/bcrypt-5.0.0-cp38-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:0c8e093ea2532601a6f686edbc2c6b2ec24131ff5c52f7610dd64fa4553b5464", size = 278412, upload-time = "2025-09-25T19:49:57.356Z" }, + { url = "https://files.pythonhosted.org/packages/45/2b/77424511adb11e6a99e3a00dcc7745034bee89036ad7d7e255a7e47be7d8/bcrypt-5.0.0-cp38-abi3-manylinux_2_34_aarch64.whl", hash = "sha256:5b1589f4839a0899c146e8892efe320c0fa096568abd9b95593efac50a87cb75", size = 275486, upload-time = "2025-09-25T19:49:59.116Z" }, + { url = "https://files.pythonhosted.org/packages/43/0a/405c753f6158e0f3f14b00b462d8bca31296f7ecfc8fc8bc7919c0c7d73a/bcrypt-5.0.0-cp38-abi3-manylinux_2_34_x86_64.whl", hash = "sha256:89042e61b5e808b67daf24a434d89bab164d4de1746b37a8d173b6b14f3db9ff", size = 277940, upload-time = "2025-09-25T19:50:00.869Z" }, + { url = "https://files.pythonhosted.org/packages/62/83/b3efc285d4aadc1fa83db385ec64dcfa1707e890eb42f03b127d66ac1b7b/bcrypt-5.0.0-cp38-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:e3cf5b2560c7b5a142286f69bde914494b6d8f901aaa71e453078388a50881c4", size = 310776, upload-time = "2025-09-25T19:50:02.393Z" }, + { url = "https://files.pythonhosted.org/packages/95/7d/47ee337dacecde6d234890fe929936cb03ebc4c3a7460854bbd9c97780b8/bcrypt-5.0.0-cp38-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:f632fd56fc4e61564f78b46a2269153122db34988e78b6be8b32d28507b7eaeb", size = 312922, upload-time = "2025-09-25T19:50:04.232Z" }, + { url = "https://files.pythonhosted.org/packages/d6/3a/43d494dfb728f55f4e1cf8fd435d50c16a2d75493225b54c8d06122523c6/bcrypt-5.0.0-cp38-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:801cad5ccb6b87d1b430f183269b94c24f248dddbbc5c1f78b6ed231743e001c", size = 341367, upload-time = "2025-09-25T19:50:05.559Z" }, + { url = "https://files.pythonhosted.org/packages/55/ab/a0727a4547e383e2e22a630e0f908113db37904f58719dc48d4622139b5c/bcrypt-5.0.0-cp38-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:3cf67a804fc66fc217e6914a5635000259fbbbb12e78a99488e4d5ba445a71eb", size = 359187, upload-time = "2025-09-25T19:50:06.916Z" }, + { url = "https://files.pythonhosted.org/packages/1b/bb/461f352fdca663524b4643d8b09e8435b4990f17fbf4fea6bc2a90aa0cc7/bcrypt-5.0.0-cp38-abi3-win32.whl", hash = "sha256:3abeb543874b2c0524ff40c57a4e14e5d3a66ff33fb423529c88f180fd756538", size = 153752, upload-time = "2025-09-25T19:50:08.515Z" }, + { url = "https://files.pythonhosted.org/packages/41/aa/4190e60921927b7056820291f56fc57d00d04757c8b316b2d3c0d1d6da2c/bcrypt-5.0.0-cp38-abi3-win_amd64.whl", hash = "sha256:35a77ec55b541e5e583eb3436ffbbf53b0ffa1fa16ca6782279daf95d146dcd9", size = 150881, upload-time = "2025-09-25T19:50:09.742Z" }, + { url = "https://files.pythonhosted.org/packages/54/12/cd77221719d0b39ac0b55dbd39358db1cd1246e0282e104366ebbfb8266a/bcrypt-5.0.0-cp38-abi3-win_arm64.whl", hash = "sha256:cde08734f12c6a4e28dc6755cd11d3bdfea608d93d958fffbe95a7026ebe4980", size = 144931, upload-time = "2025-09-25T19:50:11.016Z" }, + { url = "https://files.pythonhosted.org/packages/5d/ba/2af136406e1c3839aea9ecadc2f6be2bcd1eff255bd451dd39bcf302c47a/bcrypt-5.0.0-cp39-abi3-macosx_10_12_universal2.whl", hash = "sha256:0c418ca99fd47e9c59a301744d63328f17798b5947b0f791e9af3c1c499c2d0a", size = 495313, upload-time = "2025-09-25T19:50:12.309Z" }, + { url = "https://files.pythonhosted.org/packages/ac/ee/2f4985dbad090ace5ad1f7dd8ff94477fe089b5fab2040bd784a3d5f187b/bcrypt-5.0.0-cp39-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:ddb4e1500f6efdd402218ffe34d040a1196c072e07929b9820f363a1fd1f4191", size = 275290, upload-time = "2025-09-25T19:50:13.673Z" }, + { url = "https://files.pythonhosted.org/packages/e4/6e/b77ade812672d15cf50842e167eead80ac3514f3beacac8902915417f8b7/bcrypt-5.0.0-cp39-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:7aeef54b60ceddb6f30ee3db090351ecf0d40ec6e2abf41430997407a46d2254", size = 278253, upload-time = "2025-09-25T19:50:15.089Z" }, + { url = "https://files.pythonhosted.org/packages/36/c4/ed00ed32f1040f7990dac7115f82273e3c03da1e1a1587a778d8cea496d8/bcrypt-5.0.0-cp39-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:f0ce778135f60799d89c9693b9b398819d15f1921ba15fe719acb3178215a7db", size = 276084, upload-time = "2025-09-25T19:50:16.699Z" }, + { url = "https://files.pythonhosted.org/packages/e7/c4/fa6e16145e145e87f1fa351bbd54b429354fd72145cd3d4e0c5157cf4c70/bcrypt-5.0.0-cp39-abi3-manylinux_2_28_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:a71f70ee269671460b37a449f5ff26982a6f2ba493b3eabdd687b4bf35f875ac", size = 297185, upload-time = "2025-09-25T19:50:18.525Z" }, + { url = "https://files.pythonhosted.org/packages/24/b4/11f8a31d8b67cca3371e046db49baa7c0594d71eb40ac8121e2fc0888db0/bcrypt-5.0.0-cp39-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:f8429e1c410b4073944f03bd778a9e066e7fad723564a52ff91841d278dfc822", size = 278656, upload-time = "2025-09-25T19:50:19.809Z" }, + { url = "https://files.pythonhosted.org/packages/ac/31/79f11865f8078e192847d2cb526e3fa27c200933c982c5b2869720fa5fce/bcrypt-5.0.0-cp39-abi3-manylinux_2_34_aarch64.whl", hash = "sha256:edfcdcedd0d0f05850c52ba3127b1fce70b9f89e0fe5ff16517df7e81fa3cbb8", size = 275662, upload-time = "2025-09-25T19:50:21.567Z" }, + { url = "https://files.pythonhosted.org/packages/d4/8d/5e43d9584b3b3591a6f9b68f755a4da879a59712981ef5ad2a0ac1379f7a/bcrypt-5.0.0-cp39-abi3-manylinux_2_34_x86_64.whl", hash = "sha256:611f0a17aa4a25a69362dcc299fda5c8a3d4f160e2abb3831041feb77393a14a", size = 278240, upload-time = "2025-09-25T19:50:23.305Z" }, + { url = "https://files.pythonhosted.org/packages/89/48/44590e3fc158620f680a978aafe8f87a4c4320da81ed11552f0323aa9a57/bcrypt-5.0.0-cp39-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:db99dca3b1fdc3db87d7c57eac0c82281242d1eabf19dcb8a6b10eb29a2e72d1", size = 311152, upload-time = "2025-09-25T19:50:24.597Z" }, + { url = "https://files.pythonhosted.org/packages/5f/85/e4fbfc46f14f47b0d20493669a625da5827d07e8a88ee460af6cd9768b44/bcrypt-5.0.0-cp39-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:5feebf85a9cefda32966d8171f5db7e3ba964b77fdfe31919622256f80f9cf42", size = 313284, upload-time = "2025-09-25T19:50:26.268Z" }, + { url = "https://files.pythonhosted.org/packages/25/ae/479f81d3f4594456a01ea2f05b132a519eff9ab5768a70430fa1132384b1/bcrypt-5.0.0-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:3ca8a166b1140436e058298a34d88032ab62f15aae1c598580333dc21d27ef10", size = 341643, upload-time = "2025-09-25T19:50:28.02Z" }, + { url = "https://files.pythonhosted.org/packages/df/d2/36a086dee1473b14276cd6ea7f61aef3b2648710b5d7f1c9e032c29b859f/bcrypt-5.0.0-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:61afc381250c3182d9078551e3ac3a41da14154fbff647ddf52a769f588c4172", size = 359698, upload-time = "2025-09-25T19:50:31.347Z" }, + { url = "https://files.pythonhosted.org/packages/c0/f6/688d2cd64bfd0b14d805ddb8a565e11ca1fb0fd6817175d58b10052b6d88/bcrypt-5.0.0-cp39-abi3-win32.whl", hash = "sha256:64d7ce196203e468c457c37ec22390f1a61c85c6f0b8160fd752940ccfb3a683", size = 153725, upload-time = "2025-09-25T19:50:34.384Z" }, + { url = "https://files.pythonhosted.org/packages/9f/b9/9d9a641194a730bda138b3dfe53f584d61c58cd5230e37566e83ec2ffa0d/bcrypt-5.0.0-cp39-abi3-win_amd64.whl", hash = "sha256:64ee8434b0da054d830fa8e89e1c8bf30061d539044a39524ff7dec90481e5c2", size = 150912, upload-time = "2025-09-25T19:50:35.69Z" }, + { url = "https://files.pythonhosted.org/packages/27/44/d2ef5e87509158ad2187f4dd0852df80695bb1ee0cfe0a684727b01a69e0/bcrypt-5.0.0-cp39-abi3-win_arm64.whl", hash = "sha256:f2347d3534e76bf50bca5500989d6c1d05ed64b440408057a37673282c654927", size = 144953, upload-time = "2025-09-25T19:50:37.32Z" }, + { url = "https://files.pythonhosted.org/packages/8a/75/4aa9f5a4d40d762892066ba1046000b329c7cd58e888a6db878019b282dc/bcrypt-5.0.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:7edda91d5ab52b15636d9c30da87d2cc84f426c72b9dba7a9b4fe142ba11f534", size = 271180, upload-time = "2025-09-25T19:50:38.575Z" }, + { url = "https://files.pythonhosted.org/packages/54/79/875f9558179573d40a9cc743038ac2bf67dfb79cecb1e8b5d70e88c94c3d/bcrypt-5.0.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:046ad6db88edb3c5ece4369af997938fb1c19d6a699b9c1b27b0db432faae4c4", size = 273791, upload-time = "2025-09-25T19:50:39.913Z" }, + { url = "https://files.pythonhosted.org/packages/bc/fe/975adb8c216174bf70fc17535f75e85ac06ed5252ea077be10d9cff5ce24/bcrypt-5.0.0-pp311-pypy311_pp73-manylinux_2_34_aarch64.whl", hash = "sha256:dcd58e2b3a908b5ecc9b9df2f0085592506ac2d5110786018ee5e160f28e0911", size = 270746, upload-time = "2025-09-25T19:50:43.306Z" }, + { url = "https://files.pythonhosted.org/packages/e4/f8/972c96f5a2b6c4b3deca57009d93e946bbdbe2241dca9806d502f29dd3ee/bcrypt-5.0.0-pp311-pypy311_pp73-manylinux_2_34_x86_64.whl", hash = "sha256:6b8f520b61e8781efee73cba14e3e8c9556ccfb375623f4f97429544734545b4", size = 273375, upload-time = "2025-09-25T19:50:45.43Z" }, ] [[package]] name = "beautifulsoup4" -version = "4.13.4" +version = "4.14.3" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "soupsieve" }, { name = "typing-extensions" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/d8/e4/0c4c39e18fd76d6a628d4dd8da40543d136ce2d1752bd6eeeab0791f4d6b/beautifulsoup4-4.13.4.tar.gz", hash = "sha256:dbb3c4e1ceae6aefebdaf2423247260cd062430a410e38c66f2baa50a8437195", size = 621067, upload-time = "2025-04-15T17:05:13.836Z" } +sdist = { url = "https://files.pythonhosted.org/packages/c3/b0/1c6a16426d389813b48d95e26898aff79abbde42ad353958ad95cc8c9b21/beautifulsoup4-4.14.3.tar.gz", hash = "sha256:6292b1c5186d356bba669ef9f7f051757099565ad9ada5dd630bd9de5fa7fb86", size = 627737, upload-time = "2025-11-30T15:08:26.084Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/50/cd/30110dc0ffcf3b131156077b90e9f60ed75711223f306da4db08eff8403b/beautifulsoup4-4.13.4-py3-none-any.whl", hash = "sha256:9bbbb14bfde9d79f38b8cd5f8c7c85f4b8f2523190ebed90e950a8dea4cb1c4b", size = 187285, upload-time = "2025-04-15T17:05:12.221Z" }, + { url = "https://files.pythonhosted.org/packages/1a/39/47f9197bdd44df24d67ac8893641e16f386c984a0619ef2ee4c51fbbc019/beautifulsoup4-4.14.3-py3-none-any.whl", hash = "sha256:0918bfe44902e6ad8d57732ba310582e98da931428d231a5ecb9e7c703a735bb", size = 107721, upload-time = "2025-11-30T15:08:24.087Z" }, ] +[[package]] +name = "bibtexparser" +version = "1.4.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pyparsing" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/92/8d/e296c7af03757debd8fc80df2898cbed4fb69fc61ed2c9b4a1d42e923a9e/bibtexparser-1.4.3.tar.gz", hash = "sha256:a9c7ded64bc137720e4df0b1b7f12734edc1361185f1c9097048ff7c35af2b8f", size = 55582, upload-time = "2024-12-19T20:41:57.754Z" } + [[package]] name = "bidict" version = "0.23.1" @@ -1047,23 +1089,106 @@ wheels = [ [[package]] name = "billiard" -version = "4.2.1" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/7c/58/1546c970afcd2a2428b1bfafecf2371d8951cc34b46701bea73f4280989e/billiard-4.2.1.tar.gz", hash = "sha256:12b641b0c539073fc8d3f5b8b7be998956665c4233c7c1fcd66a7e677c4fb36f", size = 155031, upload-time = "2024-09-21T13:40:22.491Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/30/da/43b15f28fe5f9e027b41c539abc5469052e9d48fd75f8ff094ba2a0ae767/billiard-4.2.1-py3-none-any.whl", hash = "sha256:40b59a4ac8806ba2c2369ea98d876bc6108b051c227baffd928c644d15d8f3cb", size = 86766, upload-time = "2024-09-21T13:40:20.188Z" }, +version = "4.2.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/58/23/b12ac0bcdfb7360d664f40a00b1bda139cbbbced012c34e375506dbd0143/billiard-4.2.4.tar.gz", hash = "sha256:55f542c371209e03cd5862299b74e52e4fbcba8250ba611ad94276b369b6a85f", size = 156537, upload-time = "2025-11-30T13:28:48.52Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/cb/87/8bab77b323f16d67be364031220069f79159117dd5e43eeb4be2fef1ac9b/billiard-4.2.4-py3-none-any.whl", hash = "sha256:525b42bdec68d2b983347ac312f892db930858495db601b5836ac24e6477cde5", size = 87070, upload-time = "2025-11-30T13:28:47.016Z" }, +] + +[[package]] +name = "blake3" +version = "1.0.8" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "typing-extensions", marker = "python_full_version < '3.12' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/75/aa/abcd75e9600987a0bc6cfe9b6b2ff3f0e2cb08c170addc6e76035b5c4cb3/blake3-1.0.8.tar.gz", hash = "sha256:513cc7f0f5a7c035812604c2c852a0c1468311345573de647e310aca4ab165ba", size = 117308, upload-time = "2025-10-14T06:47:48.83Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7d/e1/1df74c915fde3c48940247ad64984f40f5968191d7b5230bcc7b31402e7c/blake3-1.0.8-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:9a8946cb6b1d2b2096daaaa89856f39887bce2b78503fa31b78173e3a86fa281", size = 350481, upload-time = "2025-10-14T06:45:26.625Z" }, + { url = "https://files.pythonhosted.org/packages/bb/0d/7c47ae1f5f8d60783ce6234a8b31db351fc62be243006a6276284ca3d40d/blake3-1.0.8-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:adccc3a139207e02bb7d7bb0715fe0b87069685aad5f3afff820b2f829467904", size = 328039, upload-time = "2025-10-14T06:45:32.844Z" }, + { url = "https://files.pythonhosted.org/packages/f4/0a/515209b0c282c360e249b89cd85350d97cfd55fadbb4df736c67b77b27a1/blake3-1.0.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7fcfe81b3ae3fb5d2e88be0d3259603ff95f0d5ed69f655c28fdaef31e49a470", size = 371092, upload-time = "2025-10-14T06:45:34.062Z" }, + { url = "https://files.pythonhosted.org/packages/a0/33/9d342a2bf5817f006bbe947335e5d387327541ea47590854947befd01251/blake3-1.0.8-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:58ce8d45a5bb5326482de72ea1969a378634236186a970fef63058a5b7b8b435", size = 374859, upload-time = "2025-10-14T06:45:35.262Z" }, + { url = "https://files.pythonhosted.org/packages/5b/fc/ea4bef850a7ec9fbb383503fd3c56056dd9fa44e10c3bc61050ab7b2bac0/blake3-1.0.8-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:83605dbf43f581d8b7175b7f3bfe5388bad5a7c6ac175c9c11d669da31133f4b", size = 448585, upload-time = "2025-10-14T06:45:36.542Z" }, + { url = "https://files.pythonhosted.org/packages/a5/67/167a65a4c431715407d07b1b8b1367698a3ad88e7260edb85f0c5293f08a/blake3-1.0.8-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3b5573b052777142b2cecc453d022c3f21aa4aba75011258410bb98f41c1a727", size = 507519, upload-time = "2025-10-14T06:45:37.814Z" }, + { url = "https://files.pythonhosted.org/packages/32/e2/0886e192d634b264c613b0fbf380745b39992b424a0effc00ef08783644e/blake3-1.0.8-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:fe1b02ab49bfd969ef50b9f17482a2011c77536654af21807ba5c2674e0bb2a0", size = 393645, upload-time = "2025-10-14T06:45:39.146Z" }, + { url = "https://files.pythonhosted.org/packages/fc/3b/7fb2fe615448caaa5f6632b2c7551117b38ccac747a3a5769181e9751641/blake3-1.0.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c7780666dc6be809b49442d6d5ce06fdbe33024a87560b58471103ec17644682", size = 387640, upload-time = "2025-10-14T06:45:40.546Z" }, + { url = "https://files.pythonhosted.org/packages/bc/8c/2bfc942c6c97cb3d20f341859343bb86ee20af723fedfc886373e606079b/blake3-1.0.8-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:af394b50c6aa0b1b957a99453d1ee440ef67cd2d1b5669c731647dc723de8a3a", size = 550316, upload-time = "2025-10-14T06:45:42.003Z" }, + { url = "https://files.pythonhosted.org/packages/7e/75/0252be37620699b79dbaa799c9b402d63142a131d16731df4ef09d135dd7/blake3-1.0.8-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:c63ece266a43014cf29e772a82857cd8e90315ae3ed53e3c5204851596edd5f2", size = 554463, upload-time = "2025-10-14T06:45:43.22Z" }, + { url = "https://files.pythonhosted.org/packages/8c/6d/d698ae2d5ddd25976fd2c11b079ca071334aecbba6414da8c9cc8e19d833/blake3-1.0.8-cp311-cp311-win32.whl", hash = "sha256:44c2815d4616fad7e2d757d121c0a11780f70ffc817547b3059b5c7e224031a7", size = 228375, upload-time = "2025-10-14T06:45:44.425Z" }, + { url = "https://files.pythonhosted.org/packages/34/d7/33b01e27dc3542dc9ec44132684506f880cd0257b04da0bf7f4b2afa41c8/blake3-1.0.8-cp311-cp311-win_amd64.whl", hash = "sha256:8f2ef8527a7a8afd99b16997d015851ccc0fe2a409082cebb980af2554e5c74c", size = 215733, upload-time = "2025-10-14T06:45:46.049Z" }, + { url = "https://files.pythonhosted.org/packages/ed/a0/b7b6dff04012cfd6e665c09ee446f749bd8ea161b00f730fe1bdecd0f033/blake3-1.0.8-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:d8da4233984d51471bd4e4366feda1d90d781e712e0a504ea54b1f2b3577557b", size = 347983, upload-time = "2025-10-14T06:45:47.214Z" }, + { url = "https://files.pythonhosted.org/packages/5b/a2/264091cac31d7ae913f1f296abc20b8da578b958ffb86100a7ce80e8bf5c/blake3-1.0.8-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:1257be19f2d381c868a34cc822fc7f12f817ddc49681b6d1a2790bfbda1a9865", size = 325415, upload-time = "2025-10-14T06:45:48.482Z" }, + { url = "https://files.pythonhosted.org/packages/ee/7d/85a4c0782f613de23d114a7a78fcce270f75b193b3ff3493a0de24ba104a/blake3-1.0.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:269f255b110840e52b6ce9db02217e39660ebad3e34ddd5bca8b8d378a77e4e1", size = 371296, upload-time = "2025-10-14T06:45:49.674Z" }, + { url = "https://files.pythonhosted.org/packages/e3/20/488475254976ed93fab57c67aa80d3b40df77f7d9db6528c9274bff53e08/blake3-1.0.8-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:66ca28a673025c40db3eba21a9cac52f559f83637efa675b3f6bd8683f0415f3", size = 374516, upload-time = "2025-10-14T06:45:51.23Z" }, + { url = "https://files.pythonhosted.org/packages/7b/21/2a1c47fedb77fb396512677ec6d46caf42ac6e9a897db77edd0a2a46f7bb/blake3-1.0.8-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bcb04966537777af56c1f399b35525aa70a1225816e121ff95071c33c0f7abca", size = 447911, upload-time = "2025-10-14T06:45:52.637Z" }, + { url = "https://files.pythonhosted.org/packages/cb/7d/db0626df16029713e7e61b67314c4835e85c296d82bd907c21c6ea271da2/blake3-1.0.8-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e5b5da177d62cc4b7edf0cea08fe4dec960c9ac27f916131efa890a01f747b93", size = 505420, upload-time = "2025-10-14T06:45:54.445Z" }, + { url = "https://files.pythonhosted.org/packages/5b/55/6e737850c2d58a6d9de8a76dad2ae0f75b852a23eb4ecb07a0b165e6e436/blake3-1.0.8-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:38209b10482c97e151681ea3e91cc7141f56adbbf4820a7d701a923124b41e6a", size = 394189, upload-time = "2025-10-14T06:45:55.719Z" }, + { url = "https://files.pythonhosted.org/packages/5b/94/eafaa5cdddadc0c9c603a6a6d8339433475e1a9f60c8bb9c2eed2d8736b6/blake3-1.0.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:504d1399b7fb91dfe5c25722d2807990493185faa1917456455480c36867adb5", size = 388001, upload-time = "2025-10-14T06:45:57.067Z" }, + { url = "https://files.pythonhosted.org/packages/17/81/735fa00d13de7f68b25e1b9cb36ff08c6f165e688d85d8ec2cbfcdedccc5/blake3-1.0.8-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:c84af132aa09abeadf9a0118c8fb26f4528f3f42c10ef8be0fcf31c478774ec4", size = 550302, upload-time = "2025-10-14T06:45:58.657Z" }, + { url = "https://files.pythonhosted.org/packages/0e/c6/d1fe8bdea4a6088bd54b5a58bc40aed89a4e784cd796af7722a06f74bae7/blake3-1.0.8-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:a25db3d36b55f5ed6a86470155cc749fc9c5b91c949b8d14f48658f9d960d9ec", size = 554211, upload-time = "2025-10-14T06:46:00.269Z" }, + { url = "https://files.pythonhosted.org/packages/55/d1/ca74aa450cbe10e396e061f26f7a043891ffa1485537d6b30d3757e20995/blake3-1.0.8-cp312-cp312-win32.whl", hash = "sha256:e0fee93d5adcd44378b008c147e84f181f23715307a64f7b3db432394bbfce8b", size = 228343, upload-time = "2025-10-14T06:46:01.533Z" }, + { url = "https://files.pythonhosted.org/packages/4d/42/bbd02647169e3fbed27558555653ac2578c6f17ccacf7d1956c58ef1d214/blake3-1.0.8-cp312-cp312-win_amd64.whl", hash = "sha256:6a6eafc29e4f478d365a87d2f25782a521870c8514bb43734ac85ae9be71caf7", size = 215704, upload-time = "2025-10-14T06:46:02.79Z" }, + { url = "https://files.pythonhosted.org/packages/55/b8/11de9528c257f7f1633f957ccaff253b706838d22c5d2908e4735798ec01/blake3-1.0.8-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:46dc20976bd6c235959ef0246ec73420d1063c3da2839a9c87ca395cf1fd7943", size = 347771, upload-time = "2025-10-14T06:46:04.248Z" }, + { url = "https://files.pythonhosted.org/packages/50/26/f7668be55c909678b001ecacff11ad7016cd9b4e9c7cc87b5971d638c5a9/blake3-1.0.8-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:d17eb6382634b3a5bc0c0e0454d5265b0becaeeadb6801ed25150b39a999d0cc", size = 325431, upload-time = "2025-10-14T06:46:06.136Z" }, + { url = "https://files.pythonhosted.org/packages/77/57/e8a85fa261894bf7ce7af928ff3408aab60287ab8d58b55d13a3f700b619/blake3-1.0.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:19fc6f2b7edab8acff6895fc6e38c19bd79f4c089e21153020c75dfc7397d52d", size = 370994, upload-time = "2025-10-14T06:46:07.398Z" }, + { url = "https://files.pythonhosted.org/packages/62/cd/765b76bb48b8b294fea94c9008b0d82b4cfa0fa2f3c6008d840d01a597e4/blake3-1.0.8-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4f54cff7f15d91dc78a63a2dd02a3dccdc932946f271e2adb4130e0b4cf608ba", size = 374372, upload-time = "2025-10-14T06:46:08.698Z" }, + { url = "https://files.pythonhosted.org/packages/36/7a/32084eadbb28592bb07298f0de316d2da586c62f31500a6b1339a7e7b29b/blake3-1.0.8-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e7e12a777f6b798eb8d06f875d6e108e3008bd658d274d8c676dcf98e0f10537", size = 447627, upload-time = "2025-10-14T06:46:10.002Z" }, + { url = "https://files.pythonhosted.org/packages/a7/f4/3788a1d86e17425eea147e28d7195d7053565fc279236a9fd278c2ec495e/blake3-1.0.8-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ddfc59b0176fb31168f08d5dd536e69b1f4f13b5a0f4b0c3be1003efd47f9308", size = 507536, upload-time = "2025-10-14T06:46:11.614Z" }, + { url = "https://files.pythonhosted.org/packages/fe/01/4639cba48513b94192681b4da472cdec843d3001c5344d7051ee5eaef606/blake3-1.0.8-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a2336d5b2a801a7256da21150348f41610a6c21dae885a3acb1ebbd7333d88d8", size = 394105, upload-time = "2025-10-14T06:46:12.808Z" }, + { url = "https://files.pythonhosted.org/packages/21/ae/6e55c19c8460fada86cd1306a390a09b0c5a2e2e424f9317d2edacea439f/blake3-1.0.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e4072196547484c95a5a09adbb952e9bb501949f03f9e2a85e7249ef85faaba8", size = 386928, upload-time = "2025-10-14T06:46:16.284Z" }, + { url = "https://files.pythonhosted.org/packages/ee/6c/05b7a5a907df1be53a8f19e7828986fc6b608a44119641ef9c0804fbef15/blake3-1.0.8-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:0eab3318ec02f8e16fe549244791ace2ada2c259332f0c77ab22cf94dfff7130", size = 550003, upload-time = "2025-10-14T06:46:17.791Z" }, + { url = "https://files.pythonhosted.org/packages/b4/03/f0ea4adfedc1717623be6460b3710fcb725ca38082c14274369803f727e1/blake3-1.0.8-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:a33b9a1fb6d1d559a8e0d04b041e99419a6bb771311c774f6ff57ed7119c70ed", size = 553857, upload-time = "2025-10-14T06:46:19.088Z" }, + { url = "https://files.pythonhosted.org/packages/cc/6f/e5410d2e2a30c8aba8389ffc1c0061356916bf5ecd0a210344e7b69b62ab/blake3-1.0.8-cp313-cp313-win32.whl", hash = "sha256:e171b169cb7ea618e362a4dddb7a4d4c173bbc08b9ba41ea3086dd1265530d4f", size = 228315, upload-time = "2025-10-14T06:46:20.391Z" }, + { url = "https://files.pythonhosted.org/packages/79/ef/d9c297956dfecd893f29f59e7b22445aba5b47b7f6815d9ba5dcd73fcae6/blake3-1.0.8-cp313-cp313-win_amd64.whl", hash = "sha256:3168c457255b5d2a2fc356ba696996fcaff5d38284f968210d54376312107662", size = 215477, upload-time = "2025-10-14T06:46:21.542Z" }, + { url = "https://files.pythonhosted.org/packages/20/ba/eaa7723d66dd8ab762a3e85e139bb9c46167b751df6e950ad287adb8fb61/blake3-1.0.8-cp313-cp313t-macosx_10_12_x86_64.whl", hash = "sha256:b4d672c24dc15ec617d212a338a4ca14b449829b6072d09c96c63b6e6b621aed", size = 347289, upload-time = "2025-10-14T06:46:22.772Z" }, + { url = "https://files.pythonhosted.org/packages/47/b3/6957f6ee27f0d5b8c4efdfda68a1298926a88c099f4dd89c711049d16526/blake3-1.0.8-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:1af0e5a29aa56d4fba904452ae784740997440afd477a15e583c38338e641f41", size = 324444, upload-time = "2025-10-14T06:46:24.729Z" }, + { url = "https://files.pythonhosted.org/packages/13/da/722cebca11238f3b24d3cefd2361c9c9ea47cfa0ad9288eeb4d1e0b7cf93/blake3-1.0.8-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ef153c5860d5bf1cc71aece69b28097d2a392913eb323d6b52555c875d0439fc", size = 370441, upload-time = "2025-10-14T06:46:26.29Z" }, + { url = "https://files.pythonhosted.org/packages/2e/d5/2f7440c8e41c0af995bad3a159e042af0f4ed1994710af5b4766ca918f65/blake3-1.0.8-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:e8ae3689f0c7bfa6ce6ae45cab110e4c3442125c4c23b28f1f097856de26e4d1", size = 374312, upload-time = "2025-10-14T06:46:27.451Z" }, + { url = "https://files.pythonhosted.org/packages/a6/6c/fb6a7812e60ce3e110bcbbb11f167caf3e975c589572c41e1271f35f2c41/blake3-1.0.8-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3fb83532f7456ddeb68dae1b36e1f7c52f9cb72852ac01159bbcb1a12b0f8be0", size = 447007, upload-time = "2025-10-14T06:46:29.056Z" }, + { url = "https://files.pythonhosted.org/packages/13/3b/c99b43fae5047276ea9d944077c190fc1e5f22f57528b9794e21f7adedc6/blake3-1.0.8-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6ae7754c7d96e92a70a52e07c732d594cf9924d780f49fffd3a1e9235e0f5ba7", size = 507323, upload-time = "2025-10-14T06:46:30.661Z" }, + { url = "https://files.pythonhosted.org/packages/fc/bb/ba90eddd592f8c074a0694cb0a744b6bd76bfe67a14c2b490c8bdfca3119/blake3-1.0.8-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4bacaae75e98dee3b7da6c5ee3b81ee21a3352dd2477d6f1d1dbfd38cdbf158a", size = 393449, upload-time = "2025-10-14T06:46:31.805Z" }, + { url = "https://files.pythonhosted.org/packages/25/ed/58a2acd0b9e14459cdaef4344db414d4a36e329b9720921b442a454dd443/blake3-1.0.8-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9456c829601d72852d8ba0af8dae0610f7def1d59f5942efde1e2ef93e8a8b57", size = 386844, upload-time = "2025-10-14T06:46:33.195Z" }, + { url = "https://files.pythonhosted.org/packages/4a/04/fed09845b18d90862100c8e48308261e2f663aab25d3c71a6a0bdda6618b/blake3-1.0.8-cp313-cp313t-musllinux_1_1_aarch64.whl", hash = "sha256:497ef8096ec4ac1ffba9a66152cee3992337cebf8ea434331d8fd9ce5423d227", size = 549550, upload-time = "2025-10-14T06:46:35.23Z" }, + { url = "https://files.pythonhosted.org/packages/d6/65/1859fddfabc1cc72548c2269d988819aad96d854e25eae00531517925901/blake3-1.0.8-cp313-cp313t-musllinux_1_1_x86_64.whl", hash = "sha256:511133bab85ff60ed143424ce484d08c60894ff7323f685d7a6095f43f0c85c3", size = 553805, upload-time = "2025-10-14T06:46:36.532Z" }, + { url = "https://files.pythonhosted.org/packages/c1/c7/2969352017f62378e388bb07bb2191bc9a953f818dc1cd6b9dd5c24916e1/blake3-1.0.8-cp313-cp313t-win32.whl", hash = "sha256:9c9fbdacfdeb68f7ca53bb5a7a5a593ec996eaf21155ad5b08d35e6f97e60877", size = 228068, upload-time = "2025-10-14T06:46:37.826Z" }, + { url = "https://files.pythonhosted.org/packages/d8/fc/923e25ac9cadfff1cd20038bcc0854d0f98061eb6bc78e42c43615f5982d/blake3-1.0.8-cp313-cp313t-win_amd64.whl", hash = "sha256:3cec94ed5676821cf371e9c9d25a41b4f3ebdb5724719b31b2749653b7cc1dfa", size = 215369, upload-time = "2025-10-14T06:46:39.054Z" }, + { url = "https://files.pythonhosted.org/packages/2e/2a/9f13ea01b03b1b4751a1cc2b6c1ef4b782e19433a59cf35b59cafb2a2696/blake3-1.0.8-cp314-cp314-macosx_10_12_x86_64.whl", hash = "sha256:2c33dac2c6112bc23f961a7ca305c7e34702c8177040eb98d0389d13a347b9e1", size = 347016, upload-time = "2025-10-14T06:46:40.318Z" }, + { url = "https://files.pythonhosted.org/packages/06/8e/8458c4285fbc5de76414f243e4e0fcab795d71a8b75324e14959aee699da/blake3-1.0.8-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:c445eff665d21c3b3b44f864f849a2225b1164c08654beb23224a02f087b7ff1", size = 324496, upload-time = "2025-10-14T06:46:42.355Z" }, + { url = "https://files.pythonhosted.org/packages/49/fa/b913eb9cc4af708c03e01e6b88a8bb3a74833ba4ae4b16b87e2829198e06/blake3-1.0.8-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a47939f04b89c5c6ff1e51e883e5efab1ea1bf01a02f4d208d216dddd63d0dd8", size = 370654, upload-time = "2025-10-14T06:46:43.907Z" }, + { url = "https://files.pythonhosted.org/packages/7f/4f/245e0800c33b99c8f2b570d9a7199b51803694913ee4897f339648502933/blake3-1.0.8-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:73e0b4fa25f6e3078526a592fb38fca85ef204fd02eced6731e1cdd9396552d4", size = 374693, upload-time = "2025-10-14T06:46:45.186Z" }, + { url = "https://files.pythonhosted.org/packages/a2/a6/8cb182c8e482071dbdfcc6ec0048271fd48bcb78782d346119ff54993700/blake3-1.0.8-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4b0543c57eb9d6dac9d4bced63e9f7f7b546886ac04cec8da3c3d9c8f30cbbb7", size = 447673, upload-time = "2025-10-14T06:46:46.358Z" }, + { url = "https://files.pythonhosted.org/packages/06/b7/1cbbb5574d2a9436d1b15e7eb5b9d82e178adcaca71a97b0fddaca4bfe3a/blake3-1.0.8-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ed972ebd553c0c25363459e9fc71a38c045d8419e365b59acd8cd791eff13981", size = 507233, upload-time = "2025-10-14T06:46:48.109Z" }, + { url = "https://files.pythonhosted.org/packages/9c/45/b55825d90af353b3e26c653bab278da9d6563afcf66736677f9397e465be/blake3-1.0.8-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3bafdec95dfffa3f6571e529644744e280337df15ddd9728f224ba70c5779b23", size = 393852, upload-time = "2025-10-14T06:46:49.511Z" }, + { url = "https://files.pythonhosted.org/packages/34/73/9058a1a457dd20491d1b37de53d6876eff125e1520d9b2dd7d0acbc88de2/blake3-1.0.8-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2d78f06f3fb838b34c330e2987090376145cbe5944d8608a0c4779c779618f7b", size = 386442, upload-time = "2025-10-14T06:46:51.205Z" }, + { url = "https://files.pythonhosted.org/packages/30/6d/561d537ffc17985e276e08bf4513f1c106f1fdbef571e782604dc4e44070/blake3-1.0.8-cp314-cp314-musllinux_1_1_aarch64.whl", hash = "sha256:dd03ff08d1b6e4fdda1cd03826f971ae8966ef6f683a8c68aa27fb21904b5aa9", size = 549929, upload-time = "2025-10-14T06:46:52.494Z" }, + { url = "https://files.pythonhosted.org/packages/03/2f/dbe20d2c57f1a67c63be4ba310bcebc707b945c902a0bde075d2a8f5cd5c/blake3-1.0.8-cp314-cp314-musllinux_1_1_x86_64.whl", hash = "sha256:4e02a3c499e35bf51fc15b2738aca1a76410804c877bcd914752cac4f71f052a", size = 553750, upload-time = "2025-10-14T06:46:54.194Z" }, + { url = "https://files.pythonhosted.org/packages/6b/da/c6cb712663c869b2814870c2798e57289c4268c5ac5fb12d467fce244860/blake3-1.0.8-cp314-cp314-win32.whl", hash = "sha256:a585357d5d8774aad9ffc12435de457f9e35cde55e0dc8bc43ab590a6929e59f", size = 228404, upload-time = "2025-10-14T06:46:56.807Z" }, + { url = "https://files.pythonhosted.org/packages/dc/b6/c7dcd8bc3094bba1c4274e432f9e77a7df703532ca000eaa550bd066b870/blake3-1.0.8-cp314-cp314-win_amd64.whl", hash = "sha256:9ab5998e2abd9754819753bc2f1cf3edf82d95402bff46aeef45ed392a5468bf", size = 215460, upload-time = "2025-10-14T06:46:58.15Z" }, + { url = "https://files.pythonhosted.org/packages/75/3c/6c8afd856c353176836daa5cc33a7989e8f54569e9d53eb1c53fc8f80c34/blake3-1.0.8-cp314-cp314t-macosx_10_12_x86_64.whl", hash = "sha256:e2df12f295f95a804338bd300e8fad4a6f54fd49bd4d9c5893855a230b5188a8", size = 347482, upload-time = "2025-10-14T06:47:00.189Z" }, + { url = "https://files.pythonhosted.org/packages/6a/35/92cd5501ce8e1f5cabdc0c3ac62d69fdb13ff0b60b62abbb2b6d0a53a790/blake3-1.0.8-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:63379be58438878eeb76ebe4f0efbeaabf42b79f2cff23b6126b7991588ced67", size = 324376, upload-time = "2025-10-14T06:47:01.413Z" }, + { url = "https://files.pythonhosted.org/packages/11/33/503b37220a3e2e31917ef13722efd00055af51c5e88ae30974c733d7ece6/blake3-1.0.8-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:88d527c247f9609dc1d45a08fd243e39f0d5300d54c57e048de24d4fa9240ebb", size = 370220, upload-time = "2025-10-14T06:47:02.573Z" }, + { url = "https://files.pythonhosted.org/packages/3e/df/fe817843adf59516c04d44387bd643b422a3b0400ea95c6ede6a49920737/blake3-1.0.8-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:506a47897a11ebe8f3cdeb52f1365d6a2f83959e98ccb0c830f8f73277d4d358", size = 373454, upload-time = "2025-10-14T06:47:03.784Z" }, + { url = "https://files.pythonhosted.org/packages/d1/4d/90a2a623575373dfc9b683f1bad1bf017feafa5a6d65d94fb09543050740/blake3-1.0.8-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e5122a61b3b004bbbd979bdf83a3aaab432da3e2a842d7ddf1c273f2503b4884", size = 447102, upload-time = "2025-10-14T06:47:04.958Z" }, + { url = "https://files.pythonhosted.org/packages/93/ff/4e8ce314f60115c4c657b1fdbe9225b991da4f5bcc5d1c1f1d151e2f39d6/blake3-1.0.8-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0171e85d56dec1219abdae5f49a0ed12cb3f86a454c29160a64fd8a8166bba37", size = 506791, upload-time = "2025-10-14T06:47:06.82Z" }, + { url = "https://files.pythonhosted.org/packages/44/88/2963a1f18aab52bdcf35379b2b48c34bbc462320c37e76960636b8602c36/blake3-1.0.8-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:003f61e8c41dd9931edddf1cc6a1bb680fb2ac0ad15493ef4a1df9adc59ce9df", size = 393717, upload-time = "2025-10-14T06:47:09.085Z" }, + { url = "https://files.pythonhosted.org/packages/45/d1/a848ed8e8d4e236b9b16381768c9ae99d92890c24886bb4505aa9c3d2033/blake3-1.0.8-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2c3151955efb09ba58cd3e1263521e15e9e3866a40d6bd3556d86fc968e8f95", size = 386150, upload-time = "2025-10-14T06:47:10.363Z" }, + { url = "https://files.pythonhosted.org/packages/96/09/e3eb5d60f97c01de23d9f434e6e1fc117efb466eaa1f6ddbbbcb62580d6e/blake3-1.0.8-cp314-cp314t-musllinux_1_1_aarch64.whl", hash = "sha256:5eb25bca3cee2e0dd746a214784fb36be6a43640c01c55b6b4e26196e72d076c", size = 549120, upload-time = "2025-10-14T06:47:11.713Z" }, + { url = "https://files.pythonhosted.org/packages/14/ad/3d9661c710febb8957dd685fdb3e5a861aa0ac918eda3031365ce45789e2/blake3-1.0.8-cp314-cp314t-musllinux_1_1_x86_64.whl", hash = "sha256:ab4e1dea4fa857944944db78e8f20d99ee2e16b2dea5a14f514fb0607753ac83", size = 553264, upload-time = "2025-10-14T06:47:13.317Z" }, + { url = "https://files.pythonhosted.org/packages/11/55/e332a5b49edf377d0690e95951cca21a00c568f6e37315f9749efee52617/blake3-1.0.8-cp314-cp314t-win32.whl", hash = "sha256:67f1bc11bf59464ef092488c707b13dd4e872db36e25c453dfb6e0c7498df9f1", size = 228116, upload-time = "2025-10-14T06:47:14.516Z" }, + { url = "https://files.pythonhosted.org/packages/b0/5c/dbd00727a3dd165d7e0e8af40e630cd7e45d77b525a3218afaff8a87358e/blake3-1.0.8-cp314-cp314t-win_amd64.whl", hash = "sha256:421b99cdf1ff2d1bf703bc56c454f4b286fce68454dd8711abbcb5a0df90c19a", size = 215133, upload-time = "2025-10-14T06:47:16.069Z" }, ] [[package]] name = "bleach" -version = "6.2.0" +version = "6.3.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "webencodings" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/76/9a/0e33f5054c54d349ea62c277191c020c2d6ef1d65ab2cb1993f91ec846d1/bleach-6.2.0.tar.gz", hash = "sha256:123e894118b8a599fd80d3ec1a6d4cc7ce4e5882b1317a7e1ba69b56e95f991f", size = 203083, upload-time = "2024-10-29T18:30:40.477Z" } +sdist = { url = "https://files.pythonhosted.org/packages/07/18/3c8523962314be6bf4c8989c79ad9531c825210dd13a8669f6b84336e8bd/bleach-6.3.0.tar.gz", hash = "sha256:6f3b91b1c0a02bb9a78b5a454c92506aa0fdf197e1d5e114d2e00c6f64306d22", size = 203533, upload-time = "2025-10-27T17:57:39.211Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/fc/55/96142937f66150805c25c4d0f31ee4132fd33497753400734f9dfdcbdc66/bleach-6.2.0-py3-none-any.whl", hash = "sha256:117d9c6097a7c3d22fd578fcd8d35ff1e125df6736f554da4e432fdd63f31e5e", size = 163406, upload-time = "2024-10-29T18:30:38.186Z" }, + { url = "https://files.pythonhosted.org/packages/cd/3a/577b549de0cc09d95f11087ee63c739bba856cd3952697eec4c4bb91350a/bleach-6.3.0-py3-none-any.whl", hash = "sha256:fe10ec77c93ddf3d13a73b035abaac7a9f5e436513864ccdad516693213c65d6", size = 164437, upload-time = "2025-10-27T17:57:37.538Z" }, ] [package.optional-dependencies] @@ -1091,30 +1216,30 @@ wheels = [ [[package]] name = "boto3" -version = "1.37.3" +version = "1.41.5" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "botocore" }, { name = "jmespath" }, { name = "s3transfer" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/7e/3f/135ec0771e6d0e1af2ad7023a15df6677d96112072838d948c9b5075efe1/boto3-1.37.3.tar.gz", hash = "sha256:21f3ce0ef111297e63a6eb998a25197b8c10982970c320d4c6e8db08be2157be", size = 111160, upload-time = "2025-02-27T20:28:15.588Z" } +sdist = { url = "https://files.pythonhosted.org/packages/5b/81/450cd4143864959264a3d80f9246175a20de8c1e50ec889c710eaa28cdd9/boto3-1.41.5.tar.gz", hash = "sha256:bc7806bee681dfdff2fe2b74967b107a56274f1e66ebe4d20dc8eee1ea408d17", size = 111594, upload-time = "2025-11-26T20:27:47.021Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/62/8c/213511a505af2239a673de4de145d013379275c569185187922f93dbdf14/boto3-1.37.3-py3-none-any.whl", hash = "sha256:2063b40af99fd02f6228ff52397b552ff3353831edaf8d25cc04801827ab9794", size = 139344, upload-time = "2025-02-27T20:28:13.085Z" }, + { url = "https://files.pythonhosted.org/packages/3c/56/f47a80254ed4991cce9a2f6d8ae8aafbc8df1c3270e966b2927289e5a12f/boto3-1.41.5-py3-none-any.whl", hash = "sha256:bb278111bfb4c33dca8342bda49c9db7685e43debbfa00cc2a5eb854dd54b745", size = 139344, upload-time = "2025-11-26T20:27:45.571Z" }, ] [[package]] name = "botocore" -version = "1.37.3" +version = "1.41.5" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "jmespath" }, { name = "python-dateutil" }, { name = "urllib3" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/74/fb/b243ab806d2e1e6b8a475b731cc59a1f1e4709eded4884b988a27bbc996b/botocore-1.37.3.tar.gz", hash = "sha256:fe8403eb55a88faf9b0f9da6615e5bee7be056d75e17af66c3c8f0a3b0648da4", size = 13574648, upload-time = "2025-02-27T20:27:59.559Z" } +sdist = { url = "https://files.pythonhosted.org/packages/90/22/7fe08c726a2e3b11a0aef8bf177e83891c9cb2dc1809d35c9ed91a9e60e6/botocore-1.41.5.tar.gz", hash = "sha256:0367622b811597d183bfcaab4a350f0d3ede712031ce792ef183cabdee80d3bf", size = 14668152, upload-time = "2025-11-26T20:27:38.026Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/88/54/772118f15b5990173aa5264946cc8c9ff70c8f02d72ee6d63167a985188c/botocore-1.37.3-py3-none-any.whl", hash = "sha256:d01bd3bf4c80e61fa88d636ad9f5c9f60a551d71549b481386c6b4efe0bb2b2e", size = 13342066, upload-time = "2025-02-27T20:27:53.137Z" }, + { url = "https://files.pythonhosted.org/packages/4e/4e/21cd0b8f365449f1576f93de1ec8718ed18a7a3bc086dfbdeb79437bba7a/botocore-1.41.5-py3-none-any.whl", hash = "sha256:3fef7fcda30c82c27202d232cfdbd6782cb27f20f8e7e21b20606483e66ee73a", size = 14337008, upload-time = "2025-11-26T20:27:35.208Z" }, ] [[package]] @@ -1163,586 +1288,34 @@ sdist = { url = "https://files.pythonhosted.org/packages/ca/6d/1ffa5c64533bc2fa4 [[package]] name = "cached-path" -version = "1.7.3" +version = "1.8.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "boto3" }, { name = "filelock" }, { name = "google-cloud-storage" }, { name = "huggingface-hub" }, + { name = "packaging" }, { name = "requests" }, { name = "rich", version = "13.9.4", source = { registry = "https://pypi.org/simple" } }, ] -sdist = { url = "https://files.pythonhosted.org/packages/14/35/ce8d9b5821f83df1a412379623d1d365a42c9b65c2e9c96fb7b24ce521ba/cached_path-1.7.3.tar.gz", hash = "sha256:956d21b5ac92d64ae6d76b2a1a043c5d660e3421d513e735157d56aca9a31d8e", size = 32795, upload-time = "2025-05-07T16:31:27.516Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/bc/2c/787a39669287d69b57bf150d01f13cf5daedea76ab69eae7e7677780acca/cached_path-1.7.3-py3-none-any.whl", hash = "sha256:fe2b396b4816205c95d6e961efb35c66288966c4f96b82cd87c4fb03d4d037d1", size = 36839, upload-time = "2025-05-07T16:31:25.483Z" }, -] - -[[package]] -name = "cachetools" -version = "5.5.2" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", -] -sdist = { url = "https://files.pythonhosted.org/packages/6c/81/3747dad6b14fa2cf53fcf10548cf5aea6913e96fab41a3c198676f8948a5/cachetools-5.5.2.tar.gz", hash = "sha256:1a661caa9175d26759571b2e19580f9d6393969e5dfca11fdb1f947a23e640d4", size = 28380, upload-time = "2025-02-20T21:01:19.524Z" } +sdist = { url = "https://files.pythonhosted.org/packages/36/6d/9e2a5983702e411097f39fa0040376fb1abd016605e9faa0db3ba847f7d9/cached_path-1.8.0.tar.gz", hash = "sha256:265adb13c8f2c8ec14219029e770475a1cf886eeeeec87c45195fd8718af2652", size = 33131, upload-time = "2025-09-30T17:20:43.789Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/72/76/20fa66124dbe6be5cafeb312ece67de6b61dd91a0247d1ea13db4ebb33c2/cachetools-5.5.2-py3-none-any.whl", hash = "sha256:d26a22bcc62eb95c3beabd9f1ee5e820d3d2704fe2967cbe350e20c8ffcd3f0a", size = 10080, upload-time = "2025-02-20T21:01:16.647Z" }, + { url = "https://files.pythonhosted.org/packages/d0/0c/adf5acf2dad49f98f7a8869b0edc5b4d87ffac5c060fd2f357985e682dba/cached_path-1.8.0-py3-none-any.whl", hash = "sha256:e24aefa67e41722274e1ecac8453d0d908a6eabdb02cb9fafe1a99520ed1a453", size = 37786, upload-time = "2025-09-30T17:20:42.757Z" }, ] [[package]] name = "cachetools" -version = "6.0.0" +version = "6.2.2" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", -] -sdist = { url = "https://files.pythonhosted.org/packages/c0/b0/f539a1ddff36644c28a61490056e5bae43bd7386d9f9c69beae2d7e7d6d1/cachetools-6.0.0.tar.gz", hash = "sha256:f225782b84438f828328fc2ad74346522f27e5b1440f4e9fd18b20ebfd1aa2cf", size = 30160, upload-time = "2025-05-23T20:01:13.076Z" } +sdist = { url = "https://files.pythonhosted.org/packages/fb/44/ca1675be2a83aeee1886ab745b28cda92093066590233cc501890eb8417a/cachetools-6.2.2.tar.gz", hash = "sha256:8e6d266b25e539df852251cfd6f990b4bc3a141db73b939058d809ebd2590fc6", size = 31571, upload-time = "2025-11-13T17:42:51.465Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/6a/c3/8bb087c903c95a570015ce84e0c23ae1d79f528c349cbc141b5c4e250293/cachetools-6.0.0-py3-none-any.whl", hash = "sha256:82e73ba88f7b30228b5507dce1a1f878498fc669d972aef2dde4f3a3c24f103e", size = 10964, upload-time = "2025-05-23T20:01:11.323Z" }, + { url = "https://files.pythonhosted.org/packages/e6/46/eb6eca305c77a4489affe1c5d8f4cae82f285d9addd8de4ec084a7184221/cachetools-6.2.2-py3-none-any.whl", hash = "sha256:6c09c98183bf58560c97b2abfcedcbaf6a896a490f534b031b661d3723b45ace", size = 11503, upload-time = "2025-11-13T17:42:50.232Z" }, ] [[package]] name = "celery" -version = "5.5.3" +version = "5.6.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "billiard" }, @@ -1750,201 +1323,221 @@ dependencies = [ { name = "click-didyoumean" }, { name = "click-plugins" }, { name = "click-repl" }, + { name = "exceptiongroup" }, { name = "kombu" }, { name = "python-dateutil" }, + { name = "tzlocal" }, { name = "vine" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/bb/7d/6c289f407d219ba36d8b384b42489ebdd0c84ce9c413875a8aae0c85f35b/celery-5.5.3.tar.gz", hash = "sha256:6c972ae7968c2b5281227f01c3a3f984037d21c5129d07bf3550cc2afc6b10a5", size = 1667144, upload-time = "2025-06-01T11:08:12.563Z" } +sdist = { url = "https://files.pythonhosted.org/packages/ad/5f/b681ae3c89290d2ea6562ea96b40f5af6f6fc5f7743e2cd1a19e47721548/celery-5.6.0.tar.gz", hash = "sha256:641405206042d52ae460e4e9751a2e31b06cf80ab836fcf92e0b9311d7ea8113", size = 1712522, upload-time = "2025-11-30T17:39:46.282Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/c9/af/0dcccc7fdcdf170f9a1585e5e96b6fb0ba1749ef6be8c89a6202284759bd/celery-5.5.3-py3-none-any.whl", hash = "sha256:0b5761a07057acee94694464ca482416b959568904c9dfa41ce8413a7d65d525", size = 438775, upload-time = "2025-06-01T11:08:09.94Z" }, + { url = "https://files.pythonhosted.org/packages/01/4e/53a125038d6a814491a0ae3457435c13cf8821eb602292cf9db37ce35f62/celery-5.6.0-py3-none-any.whl", hash = "sha256:33cf01477b175017fc8f22c5ee8a65157591043ba8ca78a443fe703aa910f581", size = 444561, upload-time = "2025-11-30T17:39:44.314Z" }, ] [[package]] name = "certifi" -version = "2025.4.26" +version = "2025.11.12" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/e8/9e/c05b3920a3b7d20d3d3310465f50348e5b3694f4f88c6daf736eef3024c4/certifi-2025.4.26.tar.gz", hash = "sha256:0a816057ea3cdefcef70270d2c515e4506bbc954f417fa5ade2021213bb8f0c6", size = 160705, upload-time = "2025-04-26T02:12:29.51Z" } +sdist = { url = "https://files.pythonhosted.org/packages/a2/8c/58f469717fa48465e4a50c014a0400602d3c437d7c0c468e17ada824da3a/certifi-2025.11.12.tar.gz", hash = "sha256:d8ab5478f2ecd78af242878415affce761ca6bc54a22a27e026d7c25357c3316", size = 160538, upload-time = "2025-11-12T02:54:51.517Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/4a/7e/3db2bd1b1f9e95f7cddca6d6e75e2f2bd9f51b1246e546d88addca0106bd/certifi-2025.4.26-py3-none-any.whl", hash = "sha256:30350364dfe371162649852c63336a15c70c6510c2ad5015b21c2345311805f3", size = 159618, upload-time = "2025-04-26T02:12:27.662Z" }, + { url = "https://files.pythonhosted.org/packages/70/7d/9bc192684cea499815ff478dfcdc13835ddf401365057044fb721ec6bddb/certifi-2025.11.12-py3-none-any.whl", hash = "sha256:97de8790030bbd5c2d96b7ec782fc2f7820ef8dba6db909ccf95449f2d062d4b", size = 159438, upload-time = "2025-11-12T02:54:49.735Z" }, ] [[package]] name = "cffi" -version = "1.17.1" +version = "2.0.0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "pycparser" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/fc/97/c783634659c2920c3fc70419e3af40972dbaf758daa229a7d6ea6135c90d/cffi-1.17.1.tar.gz", hash = "sha256:1c39c6016c32bc48dd54561950ebd6836e1670f2ae46128f67cf49e789c52824", size = 516621, upload-time = "2024-09-04T20:45:21.852Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/90/07/f44ca684db4e4f08a3fdc6eeb9a0d15dc6883efc7b8c90357fdbf74e186c/cffi-1.17.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:df8b1c11f177bc2313ec4b2d46baec87a5f3e71fc8b45dab2ee7cae86d9aba14", size = 182191, upload-time = "2024-09-04T20:43:30.027Z" }, - { url = "https://files.pythonhosted.org/packages/08/fd/cc2fedbd887223f9f5d170c96e57cbf655df9831a6546c1727ae13fa977a/cffi-1.17.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8f2cdc858323644ab277e9bb925ad72ae0e67f69e804f4898c070998d50b1a67", size = 178592, upload-time = "2024-09-04T20:43:32.108Z" }, - { url = "https://files.pythonhosted.org/packages/de/cc/4635c320081c78d6ffc2cab0a76025b691a91204f4aa317d568ff9280a2d/cffi-1.17.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:edae79245293e15384b51f88b00613ba9f7198016a5948b5dddf4917d4d26382", size = 426024, upload-time = "2024-09-04T20:43:34.186Z" }, - { url = "https://files.pythonhosted.org/packages/b6/7b/3b2b250f3aab91abe5f8a51ada1b717935fdaec53f790ad4100fe2ec64d1/cffi-1.17.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:45398b671ac6d70e67da8e4224a065cec6a93541bb7aebe1b198a61b58c7b702", size = 448188, upload-time = "2024-09-04T20:43:36.286Z" }, - { url = "https://files.pythonhosted.org/packages/d3/48/1b9283ebbf0ec065148d8de05d647a986c5f22586b18120020452fff8f5d/cffi-1.17.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ad9413ccdeda48c5afdae7e4fa2192157e991ff761e7ab8fdd8926f40b160cc3", size = 455571, upload-time = "2024-09-04T20:43:38.586Z" }, - { url = "https://files.pythonhosted.org/packages/40/87/3b8452525437b40f39ca7ff70276679772ee7e8b394934ff60e63b7b090c/cffi-1.17.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5da5719280082ac6bd9aa7becb3938dc9f9cbd57fac7d2871717b1feb0902ab6", size = 436687, upload-time = "2024-09-04T20:43:40.084Z" }, - { url = "https://files.pythonhosted.org/packages/8d/fb/4da72871d177d63649ac449aec2e8a29efe0274035880c7af59101ca2232/cffi-1.17.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2bb1a08b8008b281856e5971307cc386a8e9c5b625ac297e853d36da6efe9c17", size = 446211, upload-time = "2024-09-04T20:43:41.526Z" }, - { url = "https://files.pythonhosted.org/packages/ab/a0/62f00bcb411332106c02b663b26f3545a9ef136f80d5df746c05878f8c4b/cffi-1.17.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:045d61c734659cc045141be4bae381a41d89b741f795af1dd018bfb532fd0df8", size = 461325, upload-time = "2024-09-04T20:43:43.117Z" }, - { url = "https://files.pythonhosted.org/packages/36/83/76127035ed2e7e27b0787604d99da630ac3123bfb02d8e80c633f218a11d/cffi-1.17.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:6883e737d7d9e4899a8a695e00ec36bd4e5e4f18fabe0aca0efe0a4b44cdb13e", size = 438784, upload-time = "2024-09-04T20:43:45.256Z" }, - { url = "https://files.pythonhosted.org/packages/21/81/a6cd025db2f08ac88b901b745c163d884641909641f9b826e8cb87645942/cffi-1.17.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:6b8b4a92e1c65048ff98cfe1f735ef8f1ceb72e3d5f0c25fdb12087a23da22be", size = 461564, upload-time = "2024-09-04T20:43:46.779Z" }, - { url = "https://files.pythonhosted.org/packages/f8/fe/4d41c2f200c4a457933dbd98d3cf4e911870877bd94d9656cc0fcb390681/cffi-1.17.1-cp310-cp310-win32.whl", hash = "sha256:c9c3d058ebabb74db66e431095118094d06abf53284d9c81f27300d0e0d8bc7c", size = 171804, upload-time = "2024-09-04T20:43:48.186Z" }, - { url = "https://files.pythonhosted.org/packages/d1/b6/0b0f5ab93b0df4acc49cae758c81fe4e5ef26c3ae2e10cc69249dfd8b3ab/cffi-1.17.1-cp310-cp310-win_amd64.whl", hash = "sha256:0f048dcf80db46f0098ccac01132761580d28e28bc0f78ae0d58048063317e15", size = 181299, upload-time = "2024-09-04T20:43:49.812Z" }, - { url = "https://files.pythonhosted.org/packages/6b/f4/927e3a8899e52a27fa57a48607ff7dc91a9ebe97399b357b85a0c7892e00/cffi-1.17.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:a45e3c6913c5b87b3ff120dcdc03f6131fa0065027d0ed7ee6190736a74cd401", size = 182264, upload-time = "2024-09-04T20:43:51.124Z" }, - { url = "https://files.pythonhosted.org/packages/6c/f5/6c3a8efe5f503175aaddcbea6ad0d2c96dad6f5abb205750d1b3df44ef29/cffi-1.17.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:30c5e0cb5ae493c04c8b42916e52ca38079f1b235c2f8ae5f4527b963c401caf", size = 178651, upload-time = "2024-09-04T20:43:52.872Z" }, - { url = "https://files.pythonhosted.org/packages/94/dd/a3f0118e688d1b1a57553da23b16bdade96d2f9bcda4d32e7d2838047ff7/cffi-1.17.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f75c7ab1f9e4aca5414ed4d8e5c0e303a34f4421f8a0d47a4d019ceff0ab6af4", size = 445259, upload-time = "2024-09-04T20:43:56.123Z" }, - { url = "https://files.pythonhosted.org/packages/2e/ea/70ce63780f096e16ce8588efe039d3c4f91deb1dc01e9c73a287939c79a6/cffi-1.17.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a1ed2dd2972641495a3ec98445e09766f077aee98a1c896dcb4ad0d303628e41", size = 469200, upload-time = "2024-09-04T20:43:57.891Z" }, - { url = "https://files.pythonhosted.org/packages/1c/a0/a4fa9f4f781bda074c3ddd57a572b060fa0df7655d2a4247bbe277200146/cffi-1.17.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:46bf43160c1a35f7ec506d254e5c890f3c03648a4dbac12d624e4490a7046cd1", size = 477235, upload-time = "2024-09-04T20:44:00.18Z" }, - { url = "https://files.pythonhosted.org/packages/62/12/ce8710b5b8affbcdd5c6e367217c242524ad17a02fe5beec3ee339f69f85/cffi-1.17.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a24ed04c8ffd54b0729c07cee15a81d964e6fee0e3d4d342a27b020d22959dc6", size = 459721, upload-time = "2024-09-04T20:44:01.585Z" }, - { url = "https://files.pythonhosted.org/packages/ff/6b/d45873c5e0242196f042d555526f92aa9e0c32355a1be1ff8c27f077fd37/cffi-1.17.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:610faea79c43e44c71e1ec53a554553fa22321b65fae24889706c0a84d4ad86d", size = 467242, upload-time = "2024-09-04T20:44:03.467Z" }, - { url = "https://files.pythonhosted.org/packages/1a/52/d9a0e523a572fbccf2955f5abe883cfa8bcc570d7faeee06336fbd50c9fc/cffi-1.17.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:a9b15d491f3ad5d692e11f6b71f7857e7835eb677955c00cc0aefcd0669adaf6", size = 477999, upload-time = "2024-09-04T20:44:05.023Z" }, - { url = "https://files.pythonhosted.org/packages/44/74/f2a2460684a1a2d00ca799ad880d54652841a780c4c97b87754f660c7603/cffi-1.17.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:de2ea4b5833625383e464549fec1bc395c1bdeeb5f25c4a3a82b5a8c756ec22f", size = 454242, upload-time = "2024-09-04T20:44:06.444Z" }, - { url = "https://files.pythonhosted.org/packages/f8/4a/34599cac7dfcd888ff54e801afe06a19c17787dfd94495ab0c8d35fe99fb/cffi-1.17.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:fc48c783f9c87e60831201f2cce7f3b2e4846bf4d8728eabe54d60700b318a0b", size = 478604, upload-time = "2024-09-04T20:44:08.206Z" }, - { url = "https://files.pythonhosted.org/packages/34/33/e1b8a1ba29025adbdcda5fb3a36f94c03d771c1b7b12f726ff7fef2ebe36/cffi-1.17.1-cp311-cp311-win32.whl", hash = "sha256:85a950a4ac9c359340d5963966e3e0a94a676bd6245a4b55bc43949eee26a655", size = 171727, upload-time = "2024-09-04T20:44:09.481Z" }, - { url = "https://files.pythonhosted.org/packages/3d/97/50228be003bb2802627d28ec0627837ac0bf35c90cf769812056f235b2d1/cffi-1.17.1-cp311-cp311-win_amd64.whl", hash = "sha256:caaf0640ef5f5517f49bc275eca1406b0ffa6aa184892812030f04c2abf589a0", size = 181400, upload-time = "2024-09-04T20:44:10.873Z" }, - { url = "https://files.pythonhosted.org/packages/5a/84/e94227139ee5fb4d600a7a4927f322e1d4aea6fdc50bd3fca8493caba23f/cffi-1.17.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:805b4371bf7197c329fcb3ead37e710d1bca9da5d583f5073b799d5c5bd1eee4", size = 183178, upload-time = "2024-09-04T20:44:12.232Z" }, - { url = "https://files.pythonhosted.org/packages/da/ee/fb72c2b48656111c4ef27f0f91da355e130a923473bf5ee75c5643d00cca/cffi-1.17.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:733e99bc2df47476e3848417c5a4540522f234dfd4ef3ab7fafdf555b082ec0c", size = 178840, upload-time = "2024-09-04T20:44:13.739Z" }, - { url = "https://files.pythonhosted.org/packages/cc/b6/db007700f67d151abadf508cbfd6a1884f57eab90b1bb985c4c8c02b0f28/cffi-1.17.1-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1257bdabf294dceb59f5e70c64a3e2f462c30c7ad68092d01bbbfb1c16b1ba36", size = 454803, upload-time = "2024-09-04T20:44:15.231Z" }, - { url = "https://files.pythonhosted.org/packages/1a/df/f8d151540d8c200eb1c6fba8cd0dfd40904f1b0682ea705c36e6c2e97ab3/cffi-1.17.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:da95af8214998d77a98cc14e3a3bd00aa191526343078b530ceb0bd710fb48a5", size = 478850, upload-time = "2024-09-04T20:44:17.188Z" }, - { url = "https://files.pythonhosted.org/packages/28/c0/b31116332a547fd2677ae5b78a2ef662dfc8023d67f41b2a83f7c2aa78b1/cffi-1.17.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d63afe322132c194cf832bfec0dc69a99fb9bb6bbd550f161a49e9e855cc78ff", size = 485729, upload-time = "2024-09-04T20:44:18.688Z" }, - { url = "https://files.pythonhosted.org/packages/91/2b/9a1ddfa5c7f13cab007a2c9cc295b70fbbda7cb10a286aa6810338e60ea1/cffi-1.17.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f79fc4fc25f1c8698ff97788206bb3c2598949bfe0fef03d299eb1b5356ada99", size = 471256, upload-time = "2024-09-04T20:44:20.248Z" }, - { url = "https://files.pythonhosted.org/packages/b2/d5/da47df7004cb17e4955df6a43d14b3b4ae77737dff8bf7f8f333196717bf/cffi-1.17.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b62ce867176a75d03a665bad002af8e6d54644fad99a3c70905c543130e39d93", size = 479424, upload-time = "2024-09-04T20:44:21.673Z" }, - { url = "https://files.pythonhosted.org/packages/0b/ac/2a28bcf513e93a219c8a4e8e125534f4f6db03e3179ba1c45e949b76212c/cffi-1.17.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:386c8bf53c502fff58903061338ce4f4950cbdcb23e2902d86c0f722b786bbe3", size = 484568, upload-time = "2024-09-04T20:44:23.245Z" }, - { url = "https://files.pythonhosted.org/packages/d4/38/ca8a4f639065f14ae0f1d9751e70447a261f1a30fa7547a828ae08142465/cffi-1.17.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:4ceb10419a9adf4460ea14cfd6bc43d08701f0835e979bf821052f1805850fe8", size = 488736, upload-time = "2024-09-04T20:44:24.757Z" }, - { url = "https://files.pythonhosted.org/packages/86/c5/28b2d6f799ec0bdecf44dced2ec5ed43e0eb63097b0f58c293583b406582/cffi-1.17.1-cp312-cp312-win32.whl", hash = "sha256:a08d7e755f8ed21095a310a693525137cfe756ce62d066e53f502a83dc550f65", size = 172448, upload-time = "2024-09-04T20:44:26.208Z" }, - { url = "https://files.pythonhosted.org/packages/50/b9/db34c4755a7bd1cb2d1603ac3863f22bcecbd1ba29e5ee841a4bc510b294/cffi-1.17.1-cp312-cp312-win_amd64.whl", hash = "sha256:51392eae71afec0d0c8fb1a53b204dbb3bcabcb3c9b807eedf3e1e6ccf2de903", size = 181976, upload-time = "2024-09-04T20:44:27.578Z" }, - { url = "https://files.pythonhosted.org/packages/8d/f8/dd6c246b148639254dad4d6803eb6a54e8c85c6e11ec9df2cffa87571dbe/cffi-1.17.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:f3a2b4222ce6b60e2e8b337bb9596923045681d71e5a082783484d845390938e", size = 182989, upload-time = "2024-09-04T20:44:28.956Z" }, - { url = "https://files.pythonhosted.org/packages/8b/f1/672d303ddf17c24fc83afd712316fda78dc6fce1cd53011b839483e1ecc8/cffi-1.17.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:0984a4925a435b1da406122d4d7968dd861c1385afe3b45ba82b750f229811e2", size = 178802, upload-time = "2024-09-04T20:44:30.289Z" }, - { url = "https://files.pythonhosted.org/packages/0e/2d/eab2e858a91fdff70533cab61dcff4a1f55ec60425832ddfdc9cd36bc8af/cffi-1.17.1-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d01b12eeeb4427d3110de311e1774046ad344f5b1a7403101878976ecd7a10f3", size = 454792, upload-time = "2024-09-04T20:44:32.01Z" }, - { url = "https://files.pythonhosted.org/packages/75/b2/fbaec7c4455c604e29388d55599b99ebcc250a60050610fadde58932b7ee/cffi-1.17.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:706510fe141c86a69c8ddc029c7910003a17353970cff3b904ff0686a5927683", size = 478893, upload-time = "2024-09-04T20:44:33.606Z" }, - { url = "https://files.pythonhosted.org/packages/4f/b7/6e4a2162178bf1935c336d4da8a9352cccab4d3a5d7914065490f08c0690/cffi-1.17.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:de55b766c7aa2e2a3092c51e0483d700341182f08e67c63630d5b6f200bb28e5", size = 485810, upload-time = "2024-09-04T20:44:35.191Z" }, - { url = "https://files.pythonhosted.org/packages/c7/8a/1d0e4a9c26e54746dc08c2c6c037889124d4f59dffd853a659fa545f1b40/cffi-1.17.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c59d6e989d07460165cc5ad3c61f9fd8f1b4796eacbd81cee78957842b834af4", size = 471200, upload-time = "2024-09-04T20:44:36.743Z" }, - { url = "https://files.pythonhosted.org/packages/26/9f/1aab65a6c0db35f43c4d1b4f580e8df53914310afc10ae0397d29d697af4/cffi-1.17.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dd398dbc6773384a17fe0d3e7eeb8d1a21c2200473ee6806bb5e6a8e62bb73dd", size = 479447, upload-time = "2024-09-04T20:44:38.492Z" }, - { url = "https://files.pythonhosted.org/packages/5f/e4/fb8b3dd8dc0e98edf1135ff067ae070bb32ef9d509d6cb0f538cd6f7483f/cffi-1.17.1-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:3edc8d958eb099c634dace3c7e16560ae474aa3803a5df240542b305d14e14ed", size = 484358, upload-time = "2024-09-04T20:44:40.046Z" }, - { url = "https://files.pythonhosted.org/packages/f1/47/d7145bf2dc04684935d57d67dff9d6d795b2ba2796806bb109864be3a151/cffi-1.17.1-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:72e72408cad3d5419375fc87d289076ee319835bdfa2caad331e377589aebba9", size = 488469, upload-time = "2024-09-04T20:44:41.616Z" }, - { url = "https://files.pythonhosted.org/packages/bf/ee/f94057fa6426481d663b88637a9a10e859e492c73d0384514a17d78ee205/cffi-1.17.1-cp313-cp313-win32.whl", hash = "sha256:e03eab0a8677fa80d646b5ddece1cbeaf556c313dcfac435ba11f107ba117b5d", size = 172475, upload-time = "2024-09-04T20:44:43.733Z" }, - { url = "https://files.pythonhosted.org/packages/7c/fc/6a8cb64e5f0324877d503c854da15d76c1e50eb722e320b15345c4d0c6de/cffi-1.17.1-cp313-cp313-win_amd64.whl", hash = "sha256:f6a16c31041f09ead72d69f583767292f750d24913dadacf5756b966aacb3f1a", size = 182009, upload-time = "2024-09-04T20:44:45.309Z" }, + { name = "pycparser", marker = "implementation_name != 'PyPy' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/eb/56/b1ba7935a17738ae8453301356628e8147c79dbb825bcbc73dc7401f9846/cffi-2.0.0.tar.gz", hash = "sha256:44d1b5909021139fe36001ae048dbdde8214afa20200eda0f64c068cac5d5529", size = 523588, upload-time = "2025-09-08T23:24:04.541Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/12/4a/3dfd5f7850cbf0d06dc84ba9aa00db766b52ca38d8b86e3a38314d52498c/cffi-2.0.0-cp311-cp311-macosx_10_13_x86_64.whl", hash = "sha256:b4c854ef3adc177950a8dfc81a86f5115d2abd545751a304c5bcf2c2c7283cfe", size = 184344, upload-time = "2025-09-08T23:22:26.456Z" }, + { url = "https://files.pythonhosted.org/packages/4f/8b/f0e4c441227ba756aafbe78f117485b25bb26b1c059d01f137fa6d14896b/cffi-2.0.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:2de9a304e27f7596cd03d16f1b7c72219bd944e99cc52b84d0145aefb07cbd3c", size = 180560, upload-time = "2025-09-08T23:22:28.197Z" }, + { url = "https://files.pythonhosted.org/packages/b1/b7/1200d354378ef52ec227395d95c2576330fd22a869f7a70e88e1447eb234/cffi-2.0.0-cp311-cp311-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl", hash = "sha256:baf5215e0ab74c16e2dd324e8ec067ef59e41125d3eade2b863d294fd5035c92", size = 209613, upload-time = "2025-09-08T23:22:29.475Z" }, + { url = "https://files.pythonhosted.org/packages/b8/56/6033f5e86e8cc9bb629f0077ba71679508bdf54a9a5e112a3c0b91870332/cffi-2.0.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:730cacb21e1bdff3ce90babf007d0a0917cc3e6492f336c2f0134101e0944f93", size = 216476, upload-time = "2025-09-08T23:22:31.063Z" }, + { url = "https://files.pythonhosted.org/packages/dc/7f/55fecd70f7ece178db2f26128ec41430d8720f2d12ca97bf8f0a628207d5/cffi-2.0.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:6824f87845e3396029f3820c206e459ccc91760e8fa24422f8b0c3d1731cbec5", size = 203374, upload-time = "2025-09-08T23:22:32.507Z" }, + { url = "https://files.pythonhosted.org/packages/84/ef/a7b77c8bdc0f77adc3b46888f1ad54be8f3b7821697a7b89126e829e676a/cffi-2.0.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.whl", hash = "sha256:9de40a7b0323d889cf8d23d1ef214f565ab154443c42737dfe52ff82cf857664", size = 202597, upload-time = "2025-09-08T23:22:34.132Z" }, + { url = "https://files.pythonhosted.org/packages/d7/91/500d892b2bf36529a75b77958edfcd5ad8e2ce4064ce2ecfeab2125d72d1/cffi-2.0.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:8941aaadaf67246224cee8c3803777eed332a19d909b47e29c9842ef1e79ac26", size = 215574, upload-time = "2025-09-08T23:22:35.443Z" }, + { url = "https://files.pythonhosted.org/packages/44/64/58f6255b62b101093d5df22dcb752596066c7e89dd725e0afaed242a61be/cffi-2.0.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:a05d0c237b3349096d3981b727493e22147f934b20f6f125a3eba8f994bec4a9", size = 218971, upload-time = "2025-09-08T23:22:36.805Z" }, + { url = "https://files.pythonhosted.org/packages/ab/49/fa72cebe2fd8a55fbe14956f9970fe8eb1ac59e5df042f603ef7c8ba0adc/cffi-2.0.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:94698a9c5f91f9d138526b48fe26a199609544591f859c870d477351dc7b2414", size = 211972, upload-time = "2025-09-08T23:22:38.436Z" }, + { url = "https://files.pythonhosted.org/packages/0b/28/dd0967a76aab36731b6ebfe64dec4e981aff7e0608f60c2d46b46982607d/cffi-2.0.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:5fed36fccc0612a53f1d4d9a816b50a36702c28a2aa880cb8a122b3466638743", size = 217078, upload-time = "2025-09-08T23:22:39.776Z" }, + { url = "https://files.pythonhosted.org/packages/2b/c0/015b25184413d7ab0a410775fdb4a50fca20f5589b5dab1dbbfa3baad8ce/cffi-2.0.0-cp311-cp311-win32.whl", hash = "sha256:c649e3a33450ec82378822b3dad03cc228b8f5963c0c12fc3b1e0ab940f768a5", size = 172076, upload-time = "2025-09-08T23:22:40.95Z" }, + { url = "https://files.pythonhosted.org/packages/ae/8f/dc5531155e7070361eb1b7e4c1a9d896d0cb21c49f807a6c03fd63fc877e/cffi-2.0.0-cp311-cp311-win_amd64.whl", hash = "sha256:66f011380d0e49ed280c789fbd08ff0d40968ee7b665575489afa95c98196ab5", size = 182820, upload-time = "2025-09-08T23:22:42.463Z" }, + { url = "https://files.pythonhosted.org/packages/95/5c/1b493356429f9aecfd56bc171285a4c4ac8697f76e9bbbbb105e537853a1/cffi-2.0.0-cp311-cp311-win_arm64.whl", hash = "sha256:c6638687455baf640e37344fe26d37c404db8b80d037c3d29f58fe8d1c3b194d", size = 177635, upload-time = "2025-09-08T23:22:43.623Z" }, + { url = "https://files.pythonhosted.org/packages/ea/47/4f61023ea636104d4f16ab488e268b93008c3d0bb76893b1b31db1f96802/cffi-2.0.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:6d02d6655b0e54f54c4ef0b94eb6be0607b70853c45ce98bd278dc7de718be5d", size = 185271, upload-time = "2025-09-08T23:22:44.795Z" }, + { url = "https://files.pythonhosted.org/packages/df/a2/781b623f57358e360d62cdd7a8c681f074a71d445418a776eef0aadb4ab4/cffi-2.0.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:8eca2a813c1cb7ad4fb74d368c2ffbbb4789d377ee5bb8df98373c2cc0dee76c", size = 181048, upload-time = "2025-09-08T23:22:45.938Z" }, + { url = "https://files.pythonhosted.org/packages/ff/df/a4f0fbd47331ceeba3d37c2e51e9dfc9722498becbeec2bd8bc856c9538a/cffi-2.0.0-cp312-cp312-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl", hash = "sha256:21d1152871b019407d8ac3985f6775c079416c282e431a4da6afe7aefd2bccbe", size = 212529, upload-time = "2025-09-08T23:22:47.349Z" }, + { url = "https://files.pythonhosted.org/packages/d5/72/12b5f8d3865bf0f87cf1404d8c374e7487dcf097a1c91c436e72e6badd83/cffi-2.0.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:b21e08af67b8a103c71a250401c78d5e0893beff75e28c53c98f4de42f774062", size = 220097, upload-time = "2025-09-08T23:22:48.677Z" }, + { url = "https://files.pythonhosted.org/packages/c2/95/7a135d52a50dfa7c882ab0ac17e8dc11cec9d55d2c18dda414c051c5e69e/cffi-2.0.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:1e3a615586f05fc4065a8b22b8152f0c1b00cdbc60596d187c2a74f9e3036e4e", size = 207983, upload-time = "2025-09-08T23:22:50.06Z" }, + { url = "https://files.pythonhosted.org/packages/3a/c8/15cb9ada8895957ea171c62dc78ff3e99159ee7adb13c0123c001a2546c1/cffi-2.0.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.whl", hash = "sha256:81afed14892743bbe14dacb9e36d9e0e504cd204e0b165062c488942b9718037", size = 206519, upload-time = "2025-09-08T23:22:51.364Z" }, + { url = "https://files.pythonhosted.org/packages/78/2d/7fa73dfa841b5ac06c7b8855cfc18622132e365f5b81d02230333ff26e9e/cffi-2.0.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:3e17ed538242334bf70832644a32a7aae3d83b57567f9fd60a26257e992b79ba", size = 219572, upload-time = "2025-09-08T23:22:52.902Z" }, + { url = "https://files.pythonhosted.org/packages/07/e0/267e57e387b4ca276b90f0434ff88b2c2241ad72b16d31836adddfd6031b/cffi-2.0.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:3925dd22fa2b7699ed2617149842d2e6adde22b262fcbfada50e3d195e4b3a94", size = 222963, upload-time = "2025-09-08T23:22:54.518Z" }, + { url = "https://files.pythonhosted.org/packages/b6/75/1f2747525e06f53efbd878f4d03bac5b859cbc11c633d0fb81432d98a795/cffi-2.0.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:2c8f814d84194c9ea681642fd164267891702542f028a15fc97d4674b6206187", size = 221361, upload-time = "2025-09-08T23:22:55.867Z" }, + { url = "https://files.pythonhosted.org/packages/7b/2b/2b6435f76bfeb6bbf055596976da087377ede68df465419d192acf00c437/cffi-2.0.0-cp312-cp312-win32.whl", hash = "sha256:da902562c3e9c550df360bfa53c035b2f241fed6d9aef119048073680ace4a18", size = 172932, upload-time = "2025-09-08T23:22:57.188Z" }, + { url = "https://files.pythonhosted.org/packages/f8/ed/13bd4418627013bec4ed6e54283b1959cf6db888048c7cf4b4c3b5b36002/cffi-2.0.0-cp312-cp312-win_amd64.whl", hash = "sha256:da68248800ad6320861f129cd9c1bf96ca849a2771a59e0344e88681905916f5", size = 183557, upload-time = "2025-09-08T23:22:58.351Z" }, + { url = "https://files.pythonhosted.org/packages/95/31/9f7f93ad2f8eff1dbc1c3656d7ca5bfd8fb52c9d786b4dcf19b2d02217fa/cffi-2.0.0-cp312-cp312-win_arm64.whl", hash = "sha256:4671d9dd5ec934cb9a73e7ee9676f9362aba54f7f34910956b84d727b0d73fb6", size = 177762, upload-time = "2025-09-08T23:22:59.668Z" }, + { url = "https://files.pythonhosted.org/packages/4b/8d/a0a47a0c9e413a658623d014e91e74a50cdd2c423f7ccfd44086ef767f90/cffi-2.0.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:00bdf7acc5f795150faa6957054fbbca2439db2f775ce831222b66f192f03beb", size = 185230, upload-time = "2025-09-08T23:23:00.879Z" }, + { url = "https://files.pythonhosted.org/packages/4a/d2/a6c0296814556c68ee32009d9c2ad4f85f2707cdecfd7727951ec228005d/cffi-2.0.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:45d5e886156860dc35862657e1494b9bae8dfa63bf56796f2fb56e1679fc0bca", size = 181043, upload-time = "2025-09-08T23:23:02.231Z" }, + { url = "https://files.pythonhosted.org/packages/b0/1e/d22cc63332bd59b06481ceaac49d6c507598642e2230f201649058a7e704/cffi-2.0.0-cp313-cp313-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl", hash = "sha256:07b271772c100085dd28b74fa0cd81c8fb1a3ba18b21e03d7c27f3436a10606b", size = 212446, upload-time = "2025-09-08T23:23:03.472Z" }, + { url = "https://files.pythonhosted.org/packages/a9/f5/a2c23eb03b61a0b8747f211eb716446c826ad66818ddc7810cc2cc19b3f2/cffi-2.0.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:d48a880098c96020b02d5a1f7d9251308510ce8858940e6fa99ece33f610838b", size = 220101, upload-time = "2025-09-08T23:23:04.792Z" }, + { url = "https://files.pythonhosted.org/packages/f2/7f/e6647792fc5850d634695bc0e6ab4111ae88e89981d35ac269956605feba/cffi-2.0.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:f93fd8e5c8c0a4aa1f424d6173f14a892044054871c771f8566e4008eaa359d2", size = 207948, upload-time = "2025-09-08T23:23:06.127Z" }, + { url = "https://files.pythonhosted.org/packages/cb/1e/a5a1bd6f1fb30f22573f76533de12a00bf274abcdc55c8edab639078abb6/cffi-2.0.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.whl", hash = "sha256:dd4f05f54a52fb558f1ba9f528228066954fee3ebe629fc1660d874d040ae5a3", size = 206422, upload-time = "2025-09-08T23:23:07.753Z" }, + { url = "https://files.pythonhosted.org/packages/98/df/0a1755e750013a2081e863e7cd37e0cdd02664372c754e5560099eb7aa44/cffi-2.0.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:c8d3b5532fc71b7a77c09192b4a5a200ea992702734a2e9279a37f2478236f26", size = 219499, upload-time = "2025-09-08T23:23:09.648Z" }, + { url = "https://files.pythonhosted.org/packages/50/e1/a969e687fcf9ea58e6e2a928ad5e2dd88cc12f6f0ab477e9971f2309b57c/cffi-2.0.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:d9b29c1f0ae438d5ee9acb31cadee00a58c46cc9c0b2f9038c6b0b3470877a8c", size = 222928, upload-time = "2025-09-08T23:23:10.928Z" }, + { url = "https://files.pythonhosted.org/packages/36/54/0362578dd2c9e557a28ac77698ed67323ed5b9775ca9d3fe73fe191bb5d8/cffi-2.0.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6d50360be4546678fc1b79ffe7a66265e28667840010348dd69a314145807a1b", size = 221302, upload-time = "2025-09-08T23:23:12.42Z" }, + { url = "https://files.pythonhosted.org/packages/eb/6d/bf9bda840d5f1dfdbf0feca87fbdb64a918a69bca42cfa0ba7b137c48cb8/cffi-2.0.0-cp313-cp313-win32.whl", hash = "sha256:74a03b9698e198d47562765773b4a8309919089150a0bb17d829ad7b44b60d27", size = 172909, upload-time = "2025-09-08T23:23:14.32Z" }, + { url = "https://files.pythonhosted.org/packages/37/18/6519e1ee6f5a1e579e04b9ddb6f1676c17368a7aba48299c3759bbc3c8b3/cffi-2.0.0-cp313-cp313-win_amd64.whl", hash = "sha256:19f705ada2530c1167abacb171925dd886168931e0a7b78f5bffcae5c6b5be75", size = 183402, upload-time = "2025-09-08T23:23:15.535Z" }, + { url = "https://files.pythonhosted.org/packages/cb/0e/02ceeec9a7d6ee63bb596121c2c8e9b3a9e150936f4fbef6ca1943e6137c/cffi-2.0.0-cp313-cp313-win_arm64.whl", hash = "sha256:256f80b80ca3853f90c21b23ee78cd008713787b1b1e93eae9f3d6a7134abd91", size = 177780, upload-time = "2025-09-08T23:23:16.761Z" }, + { url = "https://files.pythonhosted.org/packages/92/c4/3ce07396253a83250ee98564f8d7e9789fab8e58858f35d07a9a2c78de9f/cffi-2.0.0-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:fc33c5141b55ed366cfaad382df24fe7dcbc686de5be719b207bb248e3053dc5", size = 185320, upload-time = "2025-09-08T23:23:18.087Z" }, + { url = "https://files.pythonhosted.org/packages/59/dd/27e9fa567a23931c838c6b02d0764611c62290062a6d4e8ff7863daf9730/cffi-2.0.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:c654de545946e0db659b3400168c9ad31b5d29593291482c43e3564effbcee13", size = 181487, upload-time = "2025-09-08T23:23:19.622Z" }, + { url = "https://files.pythonhosted.org/packages/d6/43/0e822876f87ea8a4ef95442c3d766a06a51fc5298823f884ef87aaad168c/cffi-2.0.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:24b6f81f1983e6df8db3adc38562c83f7d4a0c36162885ec7f7b77c7dcbec97b", size = 220049, upload-time = "2025-09-08T23:23:20.853Z" }, + { url = "https://files.pythonhosted.org/packages/b4/89/76799151d9c2d2d1ead63c2429da9ea9d7aac304603de0c6e8764e6e8e70/cffi-2.0.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:12873ca6cb9b0f0d3a0da705d6086fe911591737a59f28b7936bdfed27c0d47c", size = 207793, upload-time = "2025-09-08T23:23:22.08Z" }, + { url = "https://files.pythonhosted.org/packages/bb/dd/3465b14bb9e24ee24cb88c9e3730f6de63111fffe513492bf8c808a3547e/cffi-2.0.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.whl", hash = "sha256:d9b97165e8aed9272a6bb17c01e3cc5871a594a446ebedc996e2397a1c1ea8ef", size = 206300, upload-time = "2025-09-08T23:23:23.314Z" }, + { url = "https://files.pythonhosted.org/packages/47/d9/d83e293854571c877a92da46fdec39158f8d7e68da75bf73581225d28e90/cffi-2.0.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:afb8db5439b81cf9c9d0c80404b60c3cc9c3add93e114dcae767f1477cb53775", size = 219244, upload-time = "2025-09-08T23:23:24.541Z" }, + { url = "https://files.pythonhosted.org/packages/2b/0f/1f177e3683aead2bb00f7679a16451d302c436b5cbf2505f0ea8146ef59e/cffi-2.0.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:737fe7d37e1a1bffe70bd5754ea763a62a066dc5913ca57e957824b72a85e205", size = 222828, upload-time = "2025-09-08T23:23:26.143Z" }, + { url = "https://files.pythonhosted.org/packages/c6/0f/cafacebd4b040e3119dcb32fed8bdef8dfe94da653155f9d0b9dc660166e/cffi-2.0.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:38100abb9d1b1435bc4cc340bb4489635dc2f0da7456590877030c9b3d40b0c1", size = 220926, upload-time = "2025-09-08T23:23:27.873Z" }, + { url = "https://files.pythonhosted.org/packages/3e/aa/df335faa45b395396fcbc03de2dfcab242cd61a9900e914fe682a59170b1/cffi-2.0.0-cp314-cp314-win32.whl", hash = "sha256:087067fa8953339c723661eda6b54bc98c5625757ea62e95eb4898ad5e776e9f", size = 175328, upload-time = "2025-09-08T23:23:44.61Z" }, + { url = "https://files.pythonhosted.org/packages/bb/92/882c2d30831744296ce713f0feb4c1cd30f346ef747b530b5318715cc367/cffi-2.0.0-cp314-cp314-win_amd64.whl", hash = "sha256:203a48d1fb583fc7d78a4c6655692963b860a417c0528492a6bc21f1aaefab25", size = 185650, upload-time = "2025-09-08T23:23:45.848Z" }, + { url = "https://files.pythonhosted.org/packages/9f/2c/98ece204b9d35a7366b5b2c6539c350313ca13932143e79dc133ba757104/cffi-2.0.0-cp314-cp314-win_arm64.whl", hash = "sha256:dbd5c7a25a7cb98f5ca55d258b103a2054f859a46ae11aaf23134f9cc0d356ad", size = 180687, upload-time = "2025-09-08T23:23:47.105Z" }, + { url = "https://files.pythonhosted.org/packages/3e/61/c768e4d548bfa607abcda77423448df8c471f25dbe64fb2ef6d555eae006/cffi-2.0.0-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:9a67fc9e8eb39039280526379fb3a70023d77caec1852002b4da7e8b270c4dd9", size = 188773, upload-time = "2025-09-08T23:23:29.347Z" }, + { url = "https://files.pythonhosted.org/packages/2c/ea/5f76bce7cf6fcd0ab1a1058b5af899bfbef198bea4d5686da88471ea0336/cffi-2.0.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:7a66c7204d8869299919db4d5069a82f1561581af12b11b3c9f48c584eb8743d", size = 185013, upload-time = "2025-09-08T23:23:30.63Z" }, + { url = "https://files.pythonhosted.org/packages/be/b4/c56878d0d1755cf9caa54ba71e5d049479c52f9e4afc230f06822162ab2f/cffi-2.0.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:7cc09976e8b56f8cebd752f7113ad07752461f48a58cbba644139015ac24954c", size = 221593, upload-time = "2025-09-08T23:23:31.91Z" }, + { url = "https://files.pythonhosted.org/packages/e0/0d/eb704606dfe8033e7128df5e90fee946bbcb64a04fcdaa97321309004000/cffi-2.0.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:92b68146a71df78564e4ef48af17551a5ddd142e5190cdf2c5624d0c3ff5b2e8", size = 209354, upload-time = "2025-09-08T23:23:33.214Z" }, + { url = "https://files.pythonhosted.org/packages/d8/19/3c435d727b368ca475fb8742ab97c9cb13a0de600ce86f62eab7fa3eea60/cffi-2.0.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.whl", hash = "sha256:b1e74d11748e7e98e2f426ab176d4ed720a64412b6a15054378afdb71e0f37dc", size = 208480, upload-time = "2025-09-08T23:23:34.495Z" }, + { url = "https://files.pythonhosted.org/packages/d0/44/681604464ed9541673e486521497406fadcc15b5217c3e326b061696899a/cffi-2.0.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:28a3a209b96630bca57cce802da70c266eb08c6e97e5afd61a75611ee6c64592", size = 221584, upload-time = "2025-09-08T23:23:36.096Z" }, + { url = "https://files.pythonhosted.org/packages/25/8e/342a504ff018a2825d395d44d63a767dd8ebc927ebda557fecdaca3ac33a/cffi-2.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:7553fb2090d71822f02c629afe6042c299edf91ba1bf94951165613553984512", size = 224443, upload-time = "2025-09-08T23:23:37.328Z" }, + { url = "https://files.pythonhosted.org/packages/e1/5e/b666bacbbc60fbf415ba9988324a132c9a7a0448a9a8f125074671c0f2c3/cffi-2.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:6c6c373cfc5c83a975506110d17457138c8c63016b563cc9ed6e056a82f13ce4", size = 223437, upload-time = "2025-09-08T23:23:38.945Z" }, + { url = "https://files.pythonhosted.org/packages/a0/1d/ec1a60bd1a10daa292d3cd6bb0b359a81607154fb8165f3ec95fe003b85c/cffi-2.0.0-cp314-cp314t-win32.whl", hash = "sha256:1fc9ea04857caf665289b7a75923f2c6ed559b8298a1b8c49e59f7dd95c8481e", size = 180487, upload-time = "2025-09-08T23:23:40.423Z" }, + { url = "https://files.pythonhosted.org/packages/bf/41/4c1168c74fac325c0c8156f04b6749c8b6a8f405bbf91413ba088359f60d/cffi-2.0.0-cp314-cp314t-win_amd64.whl", hash = "sha256:d68b6cef7827e8641e8ef16f4494edda8b36104d79773a334beaa1e3521430f6", size = 191726, upload-time = "2025-09-08T23:23:41.742Z" }, + { url = "https://files.pythonhosted.org/packages/ae/3a/dbeec9d1ee0844c679f6bb5d6ad4e9f198b1224f4e7a32825f47f6192b0c/cffi-2.0.0-cp314-cp314t-win_arm64.whl", hash = "sha256:0a1527a803f0a659de1af2e1fd700213caba79377e27e4693648c2923da066f9", size = 184195, upload-time = "2025-09-08T23:23:43.004Z" }, ] [[package]] name = "cfgv" -version = "3.4.0" +version = "3.5.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/11/74/539e56497d9bd1d484fd863dd69cbbfa653cd2aa27abfe35653494d85e94/cfgv-3.4.0.tar.gz", hash = "sha256:e52591d4c5f5dead8e0f673fb16db7949d2cfb3f7da4582893288f0ded8fe560", size = 7114, upload-time = "2023-08-12T20:38:17.776Z" } +sdist = { url = "https://files.pythonhosted.org/packages/4e/b5/721b8799b04bf9afe054a3899c6cf4e880fcf8563cc71c15610242490a0c/cfgv-3.5.0.tar.gz", hash = "sha256:d5b1034354820651caa73ede66a6294d6e95c1b00acc5e9b098e917404669132", size = 7334, upload-time = "2025-11-19T20:55:51.612Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/c5/55/51844dd50c4fc7a33b653bfaba4c2456f06955289ca770a5dbd5fd267374/cfgv-3.4.0-py2.py3-none-any.whl", hash = "sha256:b7265b1f29fd3316bfcd2b330d63d024f2bfd8bcb8b0272f8e19a504856c48f9", size = 7249, upload-time = "2023-08-12T20:38:16.269Z" }, + { url = "https://files.pythonhosted.org/packages/db/3c/33bac158f8ab7f89b2e59426d5fe2e4f63f7ed25df84c036890172b412b5/cfgv-3.5.0-py2.py3-none-any.whl", hash = "sha256:a8dc6b26ad22ff227d2634a65cb388215ce6cc96bbcc5cfde7641ae87e8dacc0", size = 7445, upload-time = "2025-11-19T20:55:50.744Z" }, ] [[package]] name = "charset-normalizer" -version = "3.4.2" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/e4/33/89c2ced2b67d1c2a61c19c6751aa8902d46ce3dacb23600a283619f5a12d/charset_normalizer-3.4.2.tar.gz", hash = "sha256:5baececa9ecba31eff645232d59845c07aa030f0c81ee70184a90d35099a0e63", size = 126367, upload-time = "2025-05-02T08:34:42.01Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/95/28/9901804da60055b406e1a1c5ba7aac1276fb77f1dde635aabfc7fd84b8ab/charset_normalizer-3.4.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7c48ed483eb946e6c04ccbe02c6b4d1d48e51944b6db70f697e089c193404941", size = 201818, upload-time = "2025-05-02T08:31:46.725Z" }, - { url = "https://files.pythonhosted.org/packages/d9/9b/892a8c8af9110935e5adcbb06d9c6fe741b6bb02608c6513983048ba1a18/charset_normalizer-3.4.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b2d318c11350e10662026ad0eb71bb51c7812fc8590825304ae0bdd4ac283acd", size = 144649, upload-time = "2025-05-02T08:31:48.889Z" }, - { url = "https://files.pythonhosted.org/packages/7b/a5/4179abd063ff6414223575e008593861d62abfc22455b5d1a44995b7c101/charset_normalizer-3.4.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9cbfacf36cb0ec2897ce0ebc5d08ca44213af24265bd56eca54bee7923c48fd6", size = 155045, upload-time = "2025-05-02T08:31:50.757Z" }, - { url = "https://files.pythonhosted.org/packages/3b/95/bc08c7dfeddd26b4be8c8287b9bb055716f31077c8b0ea1cd09553794665/charset_normalizer-3.4.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:18dd2e350387c87dabe711b86f83c9c78af772c748904d372ade190b5c7c9d4d", size = 147356, upload-time = "2025-05-02T08:31:52.634Z" }, - { url = "https://files.pythonhosted.org/packages/a8/2d/7a5b635aa65284bf3eab7653e8b4151ab420ecbae918d3e359d1947b4d61/charset_normalizer-3.4.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8075c35cd58273fee266c58c0c9b670947c19df5fb98e7b66710e04ad4e9ff86", size = 149471, upload-time = "2025-05-02T08:31:56.207Z" }, - { url = "https://files.pythonhosted.org/packages/ae/38/51fc6ac74251fd331a8cfdb7ec57beba8c23fd5493f1050f71c87ef77ed0/charset_normalizer-3.4.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5bf4545e3b962767e5c06fe1738f951f77d27967cb2caa64c28be7c4563e162c", size = 151317, upload-time = "2025-05-02T08:31:57.613Z" }, - { url = "https://files.pythonhosted.org/packages/b7/17/edee1e32215ee6e9e46c3e482645b46575a44a2d72c7dfd49e49f60ce6bf/charset_normalizer-3.4.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:7a6ab32f7210554a96cd9e33abe3ddd86732beeafc7a28e9955cdf22ffadbab0", size = 146368, upload-time = "2025-05-02T08:31:59.468Z" }, - { url = "https://files.pythonhosted.org/packages/26/2c/ea3e66f2b5f21fd00b2825c94cafb8c326ea6240cd80a91eb09e4a285830/charset_normalizer-3.4.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:b33de11b92e9f75a2b545d6e9b6f37e398d86c3e9e9653c4864eb7e89c5773ef", size = 154491, upload-time = "2025-05-02T08:32:01.219Z" }, - { url = "https://files.pythonhosted.org/packages/52/47/7be7fa972422ad062e909fd62460d45c3ef4c141805b7078dbab15904ff7/charset_normalizer-3.4.2-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:8755483f3c00d6c9a77f490c17e6ab0c8729e39e6390328e42521ef175380ae6", size = 157695, upload-time = "2025-05-02T08:32:03.045Z" }, - { url = "https://files.pythonhosted.org/packages/2f/42/9f02c194da282b2b340f28e5fb60762de1151387a36842a92b533685c61e/charset_normalizer-3.4.2-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:68a328e5f55ec37c57f19ebb1fdc56a248db2e3e9ad769919a58672958e8f366", size = 154849, upload-time = "2025-05-02T08:32:04.651Z" }, - { url = "https://files.pythonhosted.org/packages/67/44/89cacd6628f31fb0b63201a618049be4be2a7435a31b55b5eb1c3674547a/charset_normalizer-3.4.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:21b2899062867b0e1fde9b724f8aecb1af14f2778d69aacd1a5a1853a597a5db", size = 150091, upload-time = "2025-05-02T08:32:06.719Z" }, - { url = "https://files.pythonhosted.org/packages/1f/79/4b8da9f712bc079c0f16b6d67b099b0b8d808c2292c937f267d816ec5ecc/charset_normalizer-3.4.2-cp310-cp310-win32.whl", hash = "sha256:e8082b26888e2f8b36a042a58307d5b917ef2b1cacab921ad3323ef91901c71a", size = 98445, upload-time = "2025-05-02T08:32:08.66Z" }, - { url = "https://files.pythonhosted.org/packages/7d/d7/96970afb4fb66497a40761cdf7bd4f6fca0fc7bafde3a84f836c1f57a926/charset_normalizer-3.4.2-cp310-cp310-win_amd64.whl", hash = "sha256:f69a27e45c43520f5487f27627059b64aaf160415589230992cec34c5e18a509", size = 105782, upload-time = "2025-05-02T08:32:10.46Z" }, - { url = "https://files.pythonhosted.org/packages/05/85/4c40d00dcc6284a1c1ad5de5e0996b06f39d8232f1031cd23c2f5c07ee86/charset_normalizer-3.4.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:be1e352acbe3c78727a16a455126d9ff83ea2dfdcbc83148d2982305a04714c2", size = 198794, upload-time = "2025-05-02T08:32:11.945Z" }, - { url = "https://files.pythonhosted.org/packages/41/d9/7a6c0b9db952598e97e93cbdfcb91bacd89b9b88c7c983250a77c008703c/charset_normalizer-3.4.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:aa88ca0b1932e93f2d961bf3addbb2db902198dca337d88c89e1559e066e7645", size = 142846, upload-time = "2025-05-02T08:32:13.946Z" }, - { url = "https://files.pythonhosted.org/packages/66/82/a37989cda2ace7e37f36c1a8ed16c58cf48965a79c2142713244bf945c89/charset_normalizer-3.4.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d524ba3f1581b35c03cb42beebab4a13e6cdad7b36246bd22541fa585a56cccd", size = 153350, upload-time = "2025-05-02T08:32:15.873Z" }, - { url = "https://files.pythonhosted.org/packages/df/68/a576b31b694d07b53807269d05ec3f6f1093e9545e8607121995ba7a8313/charset_normalizer-3.4.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28a1005facc94196e1fb3e82a3d442a9d9110b8434fc1ded7a24a2983c9888d8", size = 145657, upload-time = "2025-05-02T08:32:17.283Z" }, - { url = "https://files.pythonhosted.org/packages/92/9b/ad67f03d74554bed3aefd56fe836e1623a50780f7c998d00ca128924a499/charset_normalizer-3.4.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fdb20a30fe1175ecabed17cbf7812f7b804b8a315a25f24678bcdf120a90077f", size = 147260, upload-time = "2025-05-02T08:32:18.807Z" }, - { url = "https://files.pythonhosted.org/packages/a6/e6/8aebae25e328160b20e31a7e9929b1578bbdc7f42e66f46595a432f8539e/charset_normalizer-3.4.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0f5d9ed7f254402c9e7d35d2f5972c9bbea9040e99cd2861bd77dc68263277c7", size = 149164, upload-time = "2025-05-02T08:32:20.333Z" }, - { url = "https://files.pythonhosted.org/packages/8b/f2/b3c2f07dbcc248805f10e67a0262c93308cfa149a4cd3d1fe01f593e5fd2/charset_normalizer-3.4.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:efd387a49825780ff861998cd959767800d54f8308936b21025326de4b5a42b9", size = 144571, upload-time = "2025-05-02T08:32:21.86Z" }, - { url = "https://files.pythonhosted.org/packages/60/5b/c3f3a94bc345bc211622ea59b4bed9ae63c00920e2e8f11824aa5708e8b7/charset_normalizer-3.4.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:f0aa37f3c979cf2546b73e8222bbfa3dc07a641585340179d768068e3455e544", size = 151952, upload-time = "2025-05-02T08:32:23.434Z" }, - { url = "https://files.pythonhosted.org/packages/e2/4d/ff460c8b474122334c2fa394a3f99a04cf11c646da895f81402ae54f5c42/charset_normalizer-3.4.2-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:e70e990b2137b29dc5564715de1e12701815dacc1d056308e2b17e9095372a82", size = 155959, upload-time = "2025-05-02T08:32:24.993Z" }, - { url = "https://files.pythonhosted.org/packages/a2/2b/b964c6a2fda88611a1fe3d4c400d39c66a42d6c169c924818c848f922415/charset_normalizer-3.4.2-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:0c8c57f84ccfc871a48a47321cfa49ae1df56cd1d965a09abe84066f6853b9c0", size = 153030, upload-time = "2025-05-02T08:32:26.435Z" }, - { url = "https://files.pythonhosted.org/packages/59/2e/d3b9811db26a5ebf444bc0fa4f4be5aa6d76fc6e1c0fd537b16c14e849b6/charset_normalizer-3.4.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:6b66f92b17849b85cad91259efc341dce9c1af48e2173bf38a85c6329f1033e5", size = 148015, upload-time = "2025-05-02T08:32:28.376Z" }, - { url = "https://files.pythonhosted.org/packages/90/07/c5fd7c11eafd561bb51220d600a788f1c8d77c5eef37ee49454cc5c35575/charset_normalizer-3.4.2-cp311-cp311-win32.whl", hash = "sha256:daac4765328a919a805fa5e2720f3e94767abd632ae410a9062dff5412bae65a", size = 98106, upload-time = "2025-05-02T08:32:30.281Z" }, - { url = "https://files.pythonhosted.org/packages/a8/05/5e33dbef7e2f773d672b6d79f10ec633d4a71cd96db6673625838a4fd532/charset_normalizer-3.4.2-cp311-cp311-win_amd64.whl", hash = "sha256:e53efc7c7cee4c1e70661e2e112ca46a575f90ed9ae3fef200f2a25e954f4b28", size = 105402, upload-time = "2025-05-02T08:32:32.191Z" }, - { url = "https://files.pythonhosted.org/packages/d7/a4/37f4d6035c89cac7930395a35cc0f1b872e652eaafb76a6075943754f095/charset_normalizer-3.4.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:0c29de6a1a95f24b9a1aa7aefd27d2487263f00dfd55a77719b530788f75cff7", size = 199936, upload-time = "2025-05-02T08:32:33.712Z" }, - { url = "https://files.pythonhosted.org/packages/ee/8a/1a5e33b73e0d9287274f899d967907cd0bf9c343e651755d9307e0dbf2b3/charset_normalizer-3.4.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cddf7bd982eaa998934a91f69d182aec997c6c468898efe6679af88283b498d3", size = 143790, upload-time = "2025-05-02T08:32:35.768Z" }, - { url = "https://files.pythonhosted.org/packages/66/52/59521f1d8e6ab1482164fa21409c5ef44da3e9f653c13ba71becdd98dec3/charset_normalizer-3.4.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:fcbe676a55d7445b22c10967bceaaf0ee69407fbe0ece4d032b6eb8d4565982a", size = 153924, upload-time = "2025-05-02T08:32:37.284Z" }, - { url = "https://files.pythonhosted.org/packages/86/2d/fb55fdf41964ec782febbf33cb64be480a6b8f16ded2dbe8db27a405c09f/charset_normalizer-3.4.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d41c4d287cfc69060fa91cae9683eacffad989f1a10811995fa309df656ec214", size = 146626, upload-time = "2025-05-02T08:32:38.803Z" }, - { url = "https://files.pythonhosted.org/packages/8c/73/6ede2ec59bce19b3edf4209d70004253ec5f4e319f9a2e3f2f15601ed5f7/charset_normalizer-3.4.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4e594135de17ab3866138f496755f302b72157d115086d100c3f19370839dd3a", size = 148567, upload-time = "2025-05-02T08:32:40.251Z" }, - { url = "https://files.pythonhosted.org/packages/09/14/957d03c6dc343c04904530b6bef4e5efae5ec7d7990a7cbb868e4595ee30/charset_normalizer-3.4.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cf713fe9a71ef6fd5adf7a79670135081cd4431c2943864757f0fa3a65b1fafd", size = 150957, upload-time = "2025-05-02T08:32:41.705Z" }, - { url = "https://files.pythonhosted.org/packages/0d/c8/8174d0e5c10ccebdcb1b53cc959591c4c722a3ad92461a273e86b9f5a302/charset_normalizer-3.4.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:a370b3e078e418187da8c3674eddb9d983ec09445c99a3a263c2011993522981", size = 145408, upload-time = "2025-05-02T08:32:43.709Z" }, - { url = "https://files.pythonhosted.org/packages/58/aa/8904b84bc8084ac19dc52feb4f5952c6df03ffb460a887b42615ee1382e8/charset_normalizer-3.4.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:a955b438e62efdf7e0b7b52a64dc5c3396e2634baa62471768a64bc2adb73d5c", size = 153399, upload-time = "2025-05-02T08:32:46.197Z" }, - { url = "https://files.pythonhosted.org/packages/c2/26/89ee1f0e264d201cb65cf054aca6038c03b1a0c6b4ae998070392a3ce605/charset_normalizer-3.4.2-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:7222ffd5e4de8e57e03ce2cef95a4c43c98fcb72ad86909abdfc2c17d227fc1b", size = 156815, upload-time = "2025-05-02T08:32:48.105Z" }, - { url = "https://files.pythonhosted.org/packages/fd/07/68e95b4b345bad3dbbd3a8681737b4338ff2c9df29856a6d6d23ac4c73cb/charset_normalizer-3.4.2-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:bee093bf902e1d8fc0ac143c88902c3dfc8941f7ea1d6a8dd2bcb786d33db03d", size = 154537, upload-time = "2025-05-02T08:32:49.719Z" }, - { url = "https://files.pythonhosted.org/packages/77/1a/5eefc0ce04affb98af07bc05f3bac9094513c0e23b0562d64af46a06aae4/charset_normalizer-3.4.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:dedb8adb91d11846ee08bec4c8236c8549ac721c245678282dcb06b221aab59f", size = 149565, upload-time = "2025-05-02T08:32:51.404Z" }, - { url = "https://files.pythonhosted.org/packages/37/a0/2410e5e6032a174c95e0806b1a6585eb21e12f445ebe239fac441995226a/charset_normalizer-3.4.2-cp312-cp312-win32.whl", hash = "sha256:db4c7bf0e07fc3b7d89ac2a5880a6a8062056801b83ff56d8464b70f65482b6c", size = 98357, upload-time = "2025-05-02T08:32:53.079Z" }, - { url = "https://files.pythonhosted.org/packages/6c/4f/c02d5c493967af3eda9c771ad4d2bbc8df6f99ddbeb37ceea6e8716a32bc/charset_normalizer-3.4.2-cp312-cp312-win_amd64.whl", hash = "sha256:5a9979887252a82fefd3d3ed2a8e3b937a7a809f65dcb1e068b090e165bbe99e", size = 105776, upload-time = "2025-05-02T08:32:54.573Z" }, - { url = "https://files.pythonhosted.org/packages/ea/12/a93df3366ed32db1d907d7593a94f1fe6293903e3e92967bebd6950ed12c/charset_normalizer-3.4.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:926ca93accd5d36ccdabd803392ddc3e03e6d4cd1cf17deff3b989ab8e9dbcf0", size = 199622, upload-time = "2025-05-02T08:32:56.363Z" }, - { url = "https://files.pythonhosted.org/packages/04/93/bf204e6f344c39d9937d3c13c8cd5bbfc266472e51fc8c07cb7f64fcd2de/charset_normalizer-3.4.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:eba9904b0f38a143592d9fc0e19e2df0fa2e41c3c3745554761c5f6447eedabf", size = 143435, upload-time = "2025-05-02T08:32:58.551Z" }, - { url = "https://files.pythonhosted.org/packages/22/2a/ea8a2095b0bafa6c5b5a55ffdc2f924455233ee7b91c69b7edfcc9e02284/charset_normalizer-3.4.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3fddb7e2c84ac87ac3a947cb4e66d143ca5863ef48e4a5ecb83bd48619e4634e", size = 153653, upload-time = "2025-05-02T08:33:00.342Z" }, - { url = "https://files.pythonhosted.org/packages/b6/57/1b090ff183d13cef485dfbe272e2fe57622a76694061353c59da52c9a659/charset_normalizer-3.4.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:98f862da73774290f251b9df8d11161b6cf25b599a66baf087c1ffe340e9bfd1", size = 146231, upload-time = "2025-05-02T08:33:02.081Z" }, - { url = "https://files.pythonhosted.org/packages/e2/28/ffc026b26f441fc67bd21ab7f03b313ab3fe46714a14b516f931abe1a2d8/charset_normalizer-3.4.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c9379d65defcab82d07b2a9dfbfc2e95bc8fe0ebb1b176a3190230a3ef0e07c", size = 148243, upload-time = "2025-05-02T08:33:04.063Z" }, - { url = "https://files.pythonhosted.org/packages/c0/0f/9abe9bd191629c33e69e47c6ef45ef99773320e9ad8e9cb08b8ab4a8d4cb/charset_normalizer-3.4.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e635b87f01ebc977342e2697d05b56632f5f879a4f15955dfe8cef2448b51691", size = 150442, upload-time = "2025-05-02T08:33:06.418Z" }, - { url = "https://files.pythonhosted.org/packages/67/7c/a123bbcedca91d5916c056407f89a7f5e8fdfce12ba825d7d6b9954a1a3c/charset_normalizer-3.4.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:1c95a1e2902a8b722868587c0e1184ad5c55631de5afc0eb96bc4b0d738092c0", size = 145147, upload-time = "2025-05-02T08:33:08.183Z" }, - { url = "https://files.pythonhosted.org/packages/ec/fe/1ac556fa4899d967b83e9893788e86b6af4d83e4726511eaaad035e36595/charset_normalizer-3.4.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:ef8de666d6179b009dce7bcb2ad4c4a779f113f12caf8dc77f0162c29d20490b", size = 153057, upload-time = "2025-05-02T08:33:09.986Z" }, - { url = "https://files.pythonhosted.org/packages/2b/ff/acfc0b0a70b19e3e54febdd5301a98b72fa07635e56f24f60502e954c461/charset_normalizer-3.4.2-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:32fc0341d72e0f73f80acb0a2c94216bd704f4f0bce10aedea38f30502b271ff", size = 156454, upload-time = "2025-05-02T08:33:11.814Z" }, - { url = "https://files.pythonhosted.org/packages/92/08/95b458ce9c740d0645feb0e96cea1f5ec946ea9c580a94adfe0b617f3573/charset_normalizer-3.4.2-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:289200a18fa698949d2b39c671c2cc7a24d44096784e76614899a7ccf2574b7b", size = 154174, upload-time = "2025-05-02T08:33:13.707Z" }, - { url = "https://files.pythonhosted.org/packages/78/be/8392efc43487ac051eee6c36d5fbd63032d78f7728cb37aebcc98191f1ff/charset_normalizer-3.4.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:4a476b06fbcf359ad25d34a057b7219281286ae2477cc5ff5e3f70a246971148", size = 149166, upload-time = "2025-05-02T08:33:15.458Z" }, - { url = "https://files.pythonhosted.org/packages/44/96/392abd49b094d30b91d9fbda6a69519e95802250b777841cf3bda8fe136c/charset_normalizer-3.4.2-cp313-cp313-win32.whl", hash = "sha256:aaeeb6a479c7667fbe1099af9617c83aaca22182d6cf8c53966491a0f1b7ffb7", size = 98064, upload-time = "2025-05-02T08:33:17.06Z" }, - { url = "https://files.pythonhosted.org/packages/e9/b0/0200da600134e001d91851ddc797809e2fe0ea72de90e09bec5a2fbdaccb/charset_normalizer-3.4.2-cp313-cp313-win_amd64.whl", hash = "sha256:aa6af9e7d59f9c12b33ae4e9450619cf2488e2bbe9b44030905877f0b2324980", size = 105641, upload-time = "2025-05-02T08:33:18.753Z" }, - { url = "https://files.pythonhosted.org/packages/20/94/c5790835a017658cbfabd07f3bfb549140c3ac458cfc196323996b10095a/charset_normalizer-3.4.2-py3-none-any.whl", hash = "sha256:7f56930ab0abd1c45cd15be65cc741c28b1c9a34876ce8c17a2fa107810c0af0", size = 52626, upload-time = "2025-05-02T08:34:40.053Z" }, +version = "3.4.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/13/69/33ddede1939fdd074bce5434295f38fae7136463422fe4fd3e0e89b98062/charset_normalizer-3.4.4.tar.gz", hash = "sha256:94537985111c35f28720e43603b8e7b43a6ecfb2ce1d3058bbe955b73404e21a", size = 129418, upload-time = "2025-10-14T04:42:32.879Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ed/27/c6491ff4954e58a10f69ad90aca8a1b6fe9c5d3c6f380907af3c37435b59/charset_normalizer-3.4.4-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:6e1fcf0720908f200cd21aa4e6750a48ff6ce4afe7ff5a79a90d5ed8a08296f8", size = 206988, upload-time = "2025-10-14T04:40:33.79Z" }, + { url = "https://files.pythonhosted.org/packages/94/59/2e87300fe67ab820b5428580a53cad894272dbb97f38a7a814a2a1ac1011/charset_normalizer-3.4.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5f819d5fe9234f9f82d75bdfa9aef3a3d72c4d24a6e57aeaebba32a704553aa0", size = 147324, upload-time = "2025-10-14T04:40:34.961Z" }, + { url = "https://files.pythonhosted.org/packages/07/fb/0cf61dc84b2b088391830f6274cb57c82e4da8bbc2efeac8c025edb88772/charset_normalizer-3.4.4-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:a59cb51917aa591b1c4e6a43c132f0cdc3c76dbad6155df4e28ee626cc77a0a3", size = 142742, upload-time = "2025-10-14T04:40:36.105Z" }, + { url = "https://files.pythonhosted.org/packages/62/8b/171935adf2312cd745d290ed93cf16cf0dfe320863ab7cbeeae1dcd6535f/charset_normalizer-3.4.4-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:8ef3c867360f88ac904fd3f5e1f902f13307af9052646963ee08ff4f131adafc", size = 160863, upload-time = "2025-10-14T04:40:37.188Z" }, + { url = "https://files.pythonhosted.org/packages/09/73/ad875b192bda14f2173bfc1bc9a55e009808484a4b256748d931b6948442/charset_normalizer-3.4.4-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:d9e45d7faa48ee908174d8fe84854479ef838fc6a705c9315372eacbc2f02897", size = 157837, upload-time = "2025-10-14T04:40:38.435Z" }, + { url = "https://files.pythonhosted.org/packages/6d/fc/de9cce525b2c5b94b47c70a4b4fb19f871b24995c728e957ee68ab1671ea/charset_normalizer-3.4.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:840c25fb618a231545cbab0564a799f101b63b9901f2569faecd6b222ac72381", size = 151550, upload-time = "2025-10-14T04:40:40.053Z" }, + { url = "https://files.pythonhosted.org/packages/55/c2/43edd615fdfba8c6f2dfbd459b25a6b3b551f24ea21981e23fb768503ce1/charset_normalizer-3.4.4-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:ca5862d5b3928c4940729dacc329aa9102900382fea192fc5e52eb69d6093815", size = 149162, upload-time = "2025-10-14T04:40:41.163Z" }, + { url = "https://files.pythonhosted.org/packages/03/86/bde4ad8b4d0e9429a4e82c1e8f5c659993a9a863ad62c7df05cf7b678d75/charset_normalizer-3.4.4-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d9c7f57c3d666a53421049053eaacdd14bbd0a528e2186fcb2e672effd053bb0", size = 150019, upload-time = "2025-10-14T04:40:42.276Z" }, + { url = "https://files.pythonhosted.org/packages/1f/86/a151eb2af293a7e7bac3a739b81072585ce36ccfb4493039f49f1d3cae8c/charset_normalizer-3.4.4-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:277e970e750505ed74c832b4bf75dac7476262ee2a013f5574dd49075879e161", size = 143310, upload-time = "2025-10-14T04:40:43.439Z" }, + { url = "https://files.pythonhosted.org/packages/b5/fe/43dae6144a7e07b87478fdfc4dbe9efd5defb0e7ec29f5f58a55aeef7bf7/charset_normalizer-3.4.4-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:31fd66405eaf47bb62e8cd575dc621c56c668f27d46a61d975a249930dd5e2a4", size = 162022, upload-time = "2025-10-14T04:40:44.547Z" }, + { url = "https://files.pythonhosted.org/packages/80/e6/7aab83774f5d2bca81f42ac58d04caf44f0cc2b65fc6db2b3b2e8a05f3b3/charset_normalizer-3.4.4-cp311-cp311-musllinux_1_2_riscv64.whl", hash = "sha256:0d3d8f15c07f86e9ff82319b3d9ef6f4bf907608f53fe9d92b28ea9ae3d1fd89", size = 149383, upload-time = "2025-10-14T04:40:46.018Z" }, + { url = "https://files.pythonhosted.org/packages/4f/e8/b289173b4edae05c0dde07f69f8db476a0b511eac556dfe0d6bda3c43384/charset_normalizer-3.4.4-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:9f7fcd74d410a36883701fafa2482a6af2ff5ba96b9a620e9e0721e28ead5569", size = 159098, upload-time = "2025-10-14T04:40:47.081Z" }, + { url = "https://files.pythonhosted.org/packages/d8/df/fe699727754cae3f8478493c7f45f777b17c3ef0600e28abfec8619eb49c/charset_normalizer-3.4.4-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:ebf3e58c7ec8a8bed6d66a75d7fb37b55e5015b03ceae72a8e7c74495551e224", size = 152991, upload-time = "2025-10-14T04:40:48.246Z" }, + { url = "https://files.pythonhosted.org/packages/1a/86/584869fe4ddb6ffa3bd9f491b87a01568797fb9bd8933f557dba9771beaf/charset_normalizer-3.4.4-cp311-cp311-win32.whl", hash = "sha256:eecbc200c7fd5ddb9a7f16c7decb07b566c29fa2161a16cf67b8d068bd21690a", size = 99456, upload-time = "2025-10-14T04:40:49.376Z" }, + { url = "https://files.pythonhosted.org/packages/65/f6/62fdd5feb60530f50f7e38b4f6a1d5203f4d16ff4f9f0952962c044e919a/charset_normalizer-3.4.4-cp311-cp311-win_amd64.whl", hash = "sha256:5ae497466c7901d54b639cf42d5b8c1b6a4fead55215500d2f486d34db48d016", size = 106978, upload-time = "2025-10-14T04:40:50.844Z" }, + { url = "https://files.pythonhosted.org/packages/7a/9d/0710916e6c82948b3be62d9d398cb4fcf4e97b56d6a6aeccd66c4b2f2bd5/charset_normalizer-3.4.4-cp311-cp311-win_arm64.whl", hash = "sha256:65e2befcd84bc6f37095f5961e68a6f077bf44946771354a28ad434c2cce0ae1", size = 99969, upload-time = "2025-10-14T04:40:52.272Z" }, + { url = "https://files.pythonhosted.org/packages/f3/85/1637cd4af66fa687396e757dec650f28025f2a2f5a5531a3208dc0ec43f2/charset_normalizer-3.4.4-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:0a98e6759f854bd25a58a73fa88833fba3b7c491169f86ce1180c948ab3fd394", size = 208425, upload-time = "2025-10-14T04:40:53.353Z" }, + { url = "https://files.pythonhosted.org/packages/9d/6a/04130023fef2a0d9c62d0bae2649b69f7b7d8d24ea5536feef50551029df/charset_normalizer-3.4.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b5b290ccc2a263e8d185130284f8501e3e36c5e02750fc6b6bdeb2e9e96f1e25", size = 148162, upload-time = "2025-10-14T04:40:54.558Z" }, + { url = "https://files.pythonhosted.org/packages/78/29/62328d79aa60da22c9e0b9a66539feae06ca0f5a4171ac4f7dc285b83688/charset_normalizer-3.4.4-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:74bb723680f9f7a6234dcf67aea57e708ec1fbdf5699fb91dfd6f511b0a320ef", size = 144558, upload-time = "2025-10-14T04:40:55.677Z" }, + { url = "https://files.pythonhosted.org/packages/86/bb/b32194a4bf15b88403537c2e120b817c61cd4ecffa9b6876e941c3ee38fe/charset_normalizer-3.4.4-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:f1e34719c6ed0b92f418c7c780480b26b5d9c50349e9a9af7d76bf757530350d", size = 161497, upload-time = "2025-10-14T04:40:57.217Z" }, + { url = "https://files.pythonhosted.org/packages/19/89/a54c82b253d5b9b111dc74aca196ba5ccfcca8242d0fb64146d4d3183ff1/charset_normalizer-3.4.4-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:2437418e20515acec67d86e12bf70056a33abdacb5cb1655042f6538d6b085a8", size = 159240, upload-time = "2025-10-14T04:40:58.358Z" }, + { url = "https://files.pythonhosted.org/packages/c0/10/d20b513afe03acc89ec33948320a5544d31f21b05368436d580dec4e234d/charset_normalizer-3.4.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:11d694519d7f29d6cd09f6ac70028dba10f92f6cdd059096db198c283794ac86", size = 153471, upload-time = "2025-10-14T04:40:59.468Z" }, + { url = "https://files.pythonhosted.org/packages/61/fa/fbf177b55bdd727010f9c0a3c49eefa1d10f960e5f09d1d887bf93c2e698/charset_normalizer-3.4.4-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:ac1c4a689edcc530fc9d9aa11f5774b9e2f33f9a0c6a57864e90908f5208d30a", size = 150864, upload-time = "2025-10-14T04:41:00.623Z" }, + { url = "https://files.pythonhosted.org/packages/05/12/9fbc6a4d39c0198adeebbde20b619790e9236557ca59fc40e0e3cebe6f40/charset_normalizer-3.4.4-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:21d142cc6c0ec30d2efee5068ca36c128a30b0f2c53c1c07bd78cb6bc1d3be5f", size = 150647, upload-time = "2025-10-14T04:41:01.754Z" }, + { url = "https://files.pythonhosted.org/packages/ad/1f/6a9a593d52e3e8c5d2b167daf8c6b968808efb57ef4c210acb907c365bc4/charset_normalizer-3.4.4-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:5dbe56a36425d26d6cfb40ce79c314a2e4dd6211d51d6d2191c00bed34f354cc", size = 145110, upload-time = "2025-10-14T04:41:03.231Z" }, + { url = "https://files.pythonhosted.org/packages/30/42/9a52c609e72471b0fc54386dc63c3781a387bb4fe61c20231a4ebcd58bdd/charset_normalizer-3.4.4-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:5bfbb1b9acf3334612667b61bd3002196fe2a1eb4dd74d247e0f2a4d50ec9bbf", size = 162839, upload-time = "2025-10-14T04:41:04.715Z" }, + { url = "https://files.pythonhosted.org/packages/c4/5b/c0682bbf9f11597073052628ddd38344a3d673fda35a36773f7d19344b23/charset_normalizer-3.4.4-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:d055ec1e26e441f6187acf818b73564e6e6282709e9bcb5b63f5b23068356a15", size = 150667, upload-time = "2025-10-14T04:41:05.827Z" }, + { url = "https://files.pythonhosted.org/packages/e4/24/a41afeab6f990cf2daf6cb8c67419b63b48cf518e4f56022230840c9bfb2/charset_normalizer-3.4.4-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:af2d8c67d8e573d6de5bc30cdb27e9b95e49115cd9baad5ddbd1a6207aaa82a9", size = 160535, upload-time = "2025-10-14T04:41:06.938Z" }, + { url = "https://files.pythonhosted.org/packages/2a/e5/6a4ce77ed243c4a50a1fecca6aaaab419628c818a49434be428fe24c9957/charset_normalizer-3.4.4-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:780236ac706e66881f3b7f2f32dfe90507a09e67d1d454c762cf642e6e1586e0", size = 154816, upload-time = "2025-10-14T04:41:08.101Z" }, + { url = "https://files.pythonhosted.org/packages/a8/ef/89297262b8092b312d29cdb2517cb1237e51db8ecef2e9af5edbe7b683b1/charset_normalizer-3.4.4-cp312-cp312-win32.whl", hash = "sha256:5833d2c39d8896e4e19b689ffc198f08ea58116bee26dea51e362ecc7cd3ed26", size = 99694, upload-time = "2025-10-14T04:41:09.23Z" }, + { url = "https://files.pythonhosted.org/packages/3d/2d/1e5ed9dd3b3803994c155cd9aacb60c82c331bad84daf75bcb9c91b3295e/charset_normalizer-3.4.4-cp312-cp312-win_amd64.whl", hash = "sha256:a79cfe37875f822425b89a82333404539ae63dbdddf97f84dcbc3d339aae9525", size = 107131, upload-time = "2025-10-14T04:41:10.467Z" }, + { url = "https://files.pythonhosted.org/packages/d0/d9/0ed4c7098a861482a7b6a95603edce4c0d9db2311af23da1fb2b75ec26fc/charset_normalizer-3.4.4-cp312-cp312-win_arm64.whl", hash = "sha256:376bec83a63b8021bb5c8ea75e21c4ccb86e7e45ca4eb81146091b56599b80c3", size = 100390, upload-time = "2025-10-14T04:41:11.915Z" }, + { url = "https://files.pythonhosted.org/packages/97/45/4b3a1239bbacd321068ea6e7ac28875b03ab8bc0aa0966452db17cd36714/charset_normalizer-3.4.4-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e1f185f86a6f3403aa2420e815904c67b2f9ebc443f045edd0de921108345794", size = 208091, upload-time = "2025-10-14T04:41:13.346Z" }, + { url = "https://files.pythonhosted.org/packages/7d/62/73a6d7450829655a35bb88a88fca7d736f9882a27eacdca2c6d505b57e2e/charset_normalizer-3.4.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6b39f987ae8ccdf0d2642338faf2abb1862340facc796048b604ef14919e55ed", size = 147936, upload-time = "2025-10-14T04:41:14.461Z" }, + { url = "https://files.pythonhosted.org/packages/89/c5/adb8c8b3d6625bef6d88b251bbb0d95f8205831b987631ab0c8bb5d937c2/charset_normalizer-3.4.4-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:3162d5d8ce1bb98dd51af660f2121c55d0fa541b46dff7bb9b9f86ea1d87de72", size = 144180, upload-time = "2025-10-14T04:41:15.588Z" }, + { url = "https://files.pythonhosted.org/packages/91/ed/9706e4070682d1cc219050b6048bfd293ccf67b3d4f5a4f39207453d4b99/charset_normalizer-3.4.4-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:81d5eb2a312700f4ecaa977a8235b634ce853200e828fbadf3a9c50bab278328", size = 161346, upload-time = "2025-10-14T04:41:16.738Z" }, + { url = "https://files.pythonhosted.org/packages/d5/0d/031f0d95e4972901a2f6f09ef055751805ff541511dc1252ba3ca1f80cf5/charset_normalizer-3.4.4-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:5bd2293095d766545ec1a8f612559f6b40abc0eb18bb2f5d1171872d34036ede", size = 158874, upload-time = "2025-10-14T04:41:17.923Z" }, + { url = "https://files.pythonhosted.org/packages/f5/83/6ab5883f57c9c801ce5e5677242328aa45592be8a00644310a008d04f922/charset_normalizer-3.4.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a8a8b89589086a25749f471e6a900d3f662d1d3b6e2e59dcecf787b1cc3a1894", size = 153076, upload-time = "2025-10-14T04:41:19.106Z" }, + { url = "https://files.pythonhosted.org/packages/75/1e/5ff781ddf5260e387d6419959ee89ef13878229732732ee73cdae01800f2/charset_normalizer-3.4.4-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:bc7637e2f80d8530ee4a78e878bce464f70087ce73cf7c1caf142416923b98f1", size = 150601, upload-time = "2025-10-14T04:41:20.245Z" }, + { url = "https://files.pythonhosted.org/packages/d7/57/71be810965493d3510a6ca79b90c19e48696fb1ff964da319334b12677f0/charset_normalizer-3.4.4-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:f8bf04158c6b607d747e93949aa60618b61312fe647a6369f88ce2ff16043490", size = 150376, upload-time = "2025-10-14T04:41:21.398Z" }, + { url = "https://files.pythonhosted.org/packages/e5/d5/c3d057a78c181d007014feb7e9f2e65905a6c4ef182c0ddf0de2924edd65/charset_normalizer-3.4.4-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:554af85e960429cf30784dd47447d5125aaa3b99a6f0683589dbd27e2f45da44", size = 144825, upload-time = "2025-10-14T04:41:22.583Z" }, + { url = "https://files.pythonhosted.org/packages/e6/8c/d0406294828d4976f275ffbe66f00266c4b3136b7506941d87c00cab5272/charset_normalizer-3.4.4-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:74018750915ee7ad843a774364e13a3db91682f26142baddf775342c3f5b1133", size = 162583, upload-time = "2025-10-14T04:41:23.754Z" }, + { url = "https://files.pythonhosted.org/packages/d7/24/e2aa1f18c8f15c4c0e932d9287b8609dd30ad56dbe41d926bd846e22fb8d/charset_normalizer-3.4.4-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:c0463276121fdee9c49b98908b3a89c39be45d86d1dbaa22957e38f6321d4ce3", size = 150366, upload-time = "2025-10-14T04:41:25.27Z" }, + { url = "https://files.pythonhosted.org/packages/e4/5b/1e6160c7739aad1e2df054300cc618b06bf784a7a164b0f238360721ab86/charset_normalizer-3.4.4-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:362d61fd13843997c1c446760ef36f240cf81d3ebf74ac62652aebaf7838561e", size = 160300, upload-time = "2025-10-14T04:41:26.725Z" }, + { url = "https://files.pythonhosted.org/packages/7a/10/f882167cd207fbdd743e55534d5d9620e095089d176d55cb22d5322f2afd/charset_normalizer-3.4.4-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:9a26f18905b8dd5d685d6d07b0cdf98a79f3c7a918906af7cc143ea2e164c8bc", size = 154465, upload-time = "2025-10-14T04:41:28.322Z" }, + { url = "https://files.pythonhosted.org/packages/89/66/c7a9e1b7429be72123441bfdbaf2bc13faab3f90b933f664db506dea5915/charset_normalizer-3.4.4-cp313-cp313-win32.whl", hash = "sha256:9b35f4c90079ff2e2edc5b26c0c77925e5d2d255c42c74fdb70fb49b172726ac", size = 99404, upload-time = "2025-10-14T04:41:29.95Z" }, + { url = "https://files.pythonhosted.org/packages/c4/26/b9924fa27db384bdcd97ab83b4f0a8058d96ad9626ead570674d5e737d90/charset_normalizer-3.4.4-cp313-cp313-win_amd64.whl", hash = "sha256:b435cba5f4f750aa6c0a0d92c541fb79f69a387c91e61f1795227e4ed9cece14", size = 107092, upload-time = "2025-10-14T04:41:31.188Z" }, + { url = "https://files.pythonhosted.org/packages/af/8f/3ed4bfa0c0c72a7ca17f0380cd9e4dd842b09f664e780c13cff1dcf2ef1b/charset_normalizer-3.4.4-cp313-cp313-win_arm64.whl", hash = "sha256:542d2cee80be6f80247095cc36c418f7bddd14f4a6de45af91dfad36d817bba2", size = 100408, upload-time = "2025-10-14T04:41:32.624Z" }, + { url = "https://files.pythonhosted.org/packages/2a/35/7051599bd493e62411d6ede36fd5af83a38f37c4767b92884df7301db25d/charset_normalizer-3.4.4-cp314-cp314-macosx_10_13_universal2.whl", hash = "sha256:da3326d9e65ef63a817ecbcc0df6e94463713b754fe293eaa03da99befb9a5bd", size = 207746, upload-time = "2025-10-14T04:41:33.773Z" }, + { url = "https://files.pythonhosted.org/packages/10/9a/97c8d48ef10d6cd4fcead2415523221624bf58bcf68a802721a6bc807c8f/charset_normalizer-3.4.4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:8af65f14dc14a79b924524b1e7fffe304517b2bff5a58bf64f30b98bbc5079eb", size = 147889, upload-time = "2025-10-14T04:41:34.897Z" }, + { url = "https://files.pythonhosted.org/packages/10/bf/979224a919a1b606c82bd2c5fa49b5c6d5727aa47b4312bb27b1734f53cd/charset_normalizer-3.4.4-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:74664978bb272435107de04e36db5a9735e78232b85b77d45cfb38f758efd33e", size = 143641, upload-time = "2025-10-14T04:41:36.116Z" }, + { url = "https://files.pythonhosted.org/packages/ba/33/0ad65587441fc730dc7bd90e9716b30b4702dc7b617e6ba4997dc8651495/charset_normalizer-3.4.4-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:752944c7ffbfdd10c074dc58ec2d5a8a4cd9493b314d367c14d24c17684ddd14", size = 160779, upload-time = "2025-10-14T04:41:37.229Z" }, + { url = "https://files.pythonhosted.org/packages/67/ed/331d6b249259ee71ddea93f6f2f0a56cfebd46938bde6fcc6f7b9a3d0e09/charset_normalizer-3.4.4-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:d1f13550535ad8cff21b8d757a3257963e951d96e20ec82ab44bc64aeb62a191", size = 159035, upload-time = "2025-10-14T04:41:38.368Z" }, + { url = "https://files.pythonhosted.org/packages/67/ff/f6b948ca32e4f2a4576aa129d8bed61f2e0543bf9f5f2b7fc3758ed005c9/charset_normalizer-3.4.4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ecaae4149d99b1c9e7b88bb03e3221956f68fd6d50be2ef061b2381b61d20838", size = 152542, upload-time = "2025-10-14T04:41:39.862Z" }, + { url = "https://files.pythonhosted.org/packages/16/85/276033dcbcc369eb176594de22728541a925b2632f9716428c851b149e83/charset_normalizer-3.4.4-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:cb6254dc36b47a990e59e1068afacdcd02958bdcce30bb50cc1700a8b9d624a6", size = 149524, upload-time = "2025-10-14T04:41:41.319Z" }, + { url = "https://files.pythonhosted.org/packages/9e/f2/6a2a1f722b6aba37050e626530a46a68f74e63683947a8acff92569f979a/charset_normalizer-3.4.4-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:c8ae8a0f02f57a6e61203a31428fa1d677cbe50c93622b4149d5c0f319c1d19e", size = 150395, upload-time = "2025-10-14T04:41:42.539Z" }, + { url = "https://files.pythonhosted.org/packages/60/bb/2186cb2f2bbaea6338cad15ce23a67f9b0672929744381e28b0592676824/charset_normalizer-3.4.4-cp314-cp314-musllinux_1_2_armv7l.whl", hash = "sha256:47cc91b2f4dd2833fddaedd2893006b0106129d4b94fdb6af1f4ce5a9965577c", size = 143680, upload-time = "2025-10-14T04:41:43.661Z" }, + { url = "https://files.pythonhosted.org/packages/7d/a5/bf6f13b772fbb2a90360eb620d52ed8f796f3c5caee8398c3b2eb7b1c60d/charset_normalizer-3.4.4-cp314-cp314-musllinux_1_2_ppc64le.whl", hash = "sha256:82004af6c302b5d3ab2cfc4cc5f29db16123b1a8417f2e25f9066f91d4411090", size = 162045, upload-time = "2025-10-14T04:41:44.821Z" }, + { url = "https://files.pythonhosted.org/packages/df/c5/d1be898bf0dc3ef9030c3825e5d3b83f2c528d207d246cbabe245966808d/charset_normalizer-3.4.4-cp314-cp314-musllinux_1_2_riscv64.whl", hash = "sha256:2b7d8f6c26245217bd2ad053761201e9f9680f8ce52f0fcd8d0755aeae5b2152", size = 149687, upload-time = "2025-10-14T04:41:46.442Z" }, + { url = "https://files.pythonhosted.org/packages/a5/42/90c1f7b9341eef50c8a1cb3f098ac43b0508413f33affd762855f67a410e/charset_normalizer-3.4.4-cp314-cp314-musllinux_1_2_s390x.whl", hash = "sha256:799a7a5e4fb2d5898c60b640fd4981d6a25f1c11790935a44ce38c54e985f828", size = 160014, upload-time = "2025-10-14T04:41:47.631Z" }, + { url = "https://files.pythonhosted.org/packages/76/be/4d3ee471e8145d12795ab655ece37baed0929462a86e72372fd25859047c/charset_normalizer-3.4.4-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:99ae2cffebb06e6c22bdc25801d7b30f503cc87dbd283479e7b606f70aff57ec", size = 154044, upload-time = "2025-10-14T04:41:48.81Z" }, + { url = "https://files.pythonhosted.org/packages/b0/6f/8f7af07237c34a1defe7defc565a9bc1807762f672c0fde711a4b22bf9c0/charset_normalizer-3.4.4-cp314-cp314-win32.whl", hash = "sha256:f9d332f8c2a2fcbffe1378594431458ddbef721c1769d78e2cbc06280d8155f9", size = 99940, upload-time = "2025-10-14T04:41:49.946Z" }, + { url = "https://files.pythonhosted.org/packages/4b/51/8ade005e5ca5b0d80fb4aff72a3775b325bdc3d27408c8113811a7cbe640/charset_normalizer-3.4.4-cp314-cp314-win_amd64.whl", hash = "sha256:8a6562c3700cce886c5be75ade4a5db4214fda19fede41d9792d100288d8f94c", size = 107104, upload-time = "2025-10-14T04:41:51.051Z" }, + { url = "https://files.pythonhosted.org/packages/da/5f/6b8f83a55bb8278772c5ae54a577f3099025f9ade59d0136ac24a0df4bde/charset_normalizer-3.4.4-cp314-cp314-win_arm64.whl", hash = "sha256:de00632ca48df9daf77a2c65a484531649261ec9f25489917f09e455cb09ddb2", size = 100743, upload-time = "2025-10-14T04:41:52.122Z" }, + { url = "https://files.pythonhosted.org/packages/0a/4c/925909008ed5a988ccbb72dcc897407e5d6d3bd72410d69e051fc0c14647/charset_normalizer-3.4.4-py3-none-any.whl", hash = "sha256:7a32c560861a02ff789ad905a2fe94e3f840803362c84fecf1851cb4cf3dc37f", size = 53402, upload-time = "2025-10-14T04:42:31.76Z" }, ] [[package]] name = "chgnet" -version = "0.4.0" +version = "0.4.2" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "ase" }, { name = "cython" }, - { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-grace') or (sys_platform != 'linux' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, + { name = "numpy", version = "2.1.3", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, { name = "nvidia-ml-py3" }, { name = "pymatgen" }, { name = "torch", version = "2.6.0", source = { registry = "https://pypi.org/simple" }, marker = "(extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, - { name = "torch", version = "2.7.1", source = { registry = "https://pypi.org/simple" }, marker = "(extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "torch", version = "2.7.0", source = { registry = "https://pypi.org/simple" }, marker = "(extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, { name = "typing-extensions" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/f6/05/1aaaecfaf9567dc93f33cd94a6deda0cc8ca0e665484636d8522978658d6/chgnet-0.4.0.tar.gz", hash = "sha256:1683fd61dbbf2ccb6540b6967589f25b239951b94c4b616f1dbbc3bce8313785", size = 8756128, upload-time = "2024-09-16T22:19:48.12Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/47/b9/03da4ead85cc9538d9d4db77f8d2e1919f2ec78966987a73a6f617120865/chgnet-0.4.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:e0c6f8bac1a0b3b469264dd9d2813b0ec69bff9c610955069612a612122999eb", size = 8916943, upload-time = "2024-09-16T22:18:58.032Z" }, - { url = "https://files.pythonhosted.org/packages/5f/08/4e26d7ab59020ae5be8b7b70154e08c68205364832b7932949b432de8c79/chgnet-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:054d548be08ae57194641976ac64163f71f6d958494f98da274ee9576859d59c", size = 9237970, upload-time = "2024-09-16T22:19:00.615Z" }, - { url = "https://files.pythonhosted.org/packages/b3/95/0438d9c72bccb394e33cdb9a8cff189e3753cea1b185c8ba579e7c50be4c/chgnet-0.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cac302cfc70ce3d02ce17ebd1eed570306283ab1b1824cb98e5cdeb8917f99b2", size = 9224255, upload-time = "2024-09-16T22:19:02.99Z" }, - { url = "https://files.pythonhosted.org/packages/01/30/378a7002c4923b2f7da8f79d83cb889ba819999457aaaffaa60c1c70f8e1/chgnet-0.4.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:37a0459b50161fd7b2eab385daea48e2a8a562d85096c25d0d0ac2915c2b7f88", size = 9251421, upload-time = "2024-09-16T22:19:05.698Z" }, - { url = "https://files.pythonhosted.org/packages/6a/d3/9db7f1f68a553f8d77753e901ae6b97c4d71b2513bc8ce89bff384e8e5a1/chgnet-0.4.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:37879736c55b13c88614f4c2e773d04e2d278a16348ebd9d962a6df9928ad265", size = 9258558, upload-time = "2024-09-16T22:19:07.937Z" }, - { url = "https://files.pythonhosted.org/packages/b6/40/a6df6380a2721e3c1094a445960ae2fb12f9b64b7390742a6447600e2d0b/chgnet-0.4.0-cp310-cp310-win32.whl", hash = "sha256:8b464ee9ba49a6abb8b3789fa7549a2e67bbabc257e66dbe922723c91e05f8b9", size = 8814179, upload-time = "2024-09-16T22:19:10.574Z" }, - { url = "https://files.pythonhosted.org/packages/42/07/d2c5212d10e9fcac6e2b3802b72ab1512fb73664dc859f42ebcfd8103d8b/chgnet-0.4.0-cp310-cp310-win_amd64.whl", hash = "sha256:c355bca4c7ba3895df048d75f75b7380a07470e394237203dc7ecdb6c7cf4bc2", size = 8824666, upload-time = "2024-09-16T22:19:13.159Z" }, - { url = "https://files.pythonhosted.org/packages/09/29/cd527fc388ceed95cb9b785303721dfe136ea2f0d438a3d24aa26db6a47a/chgnet-0.4.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:95026262d4ad7a27ff996cf8bd7e53bfe98beacad8cb24e5a35d09cd7a507763", size = 8916734, upload-time = "2024-09-16T22:19:15.603Z" }, - { url = "https://files.pythonhosted.org/packages/19/95/72eced00dc2535ad60f825469fb2bd3a3ed8671fa492eae0b0c158e14dea/chgnet-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1b03d4d392775afc69745924317e114d6a4c5f3a7ac221f17092fe0cdaaaf7", size = 9275918, upload-time = "2024-09-16T22:19:17.551Z" }, - { url = "https://files.pythonhosted.org/packages/41/8c/dd5ee202939bd3e088d2beb4313da21b05356ebb23a9f25ed5b85b246c0f/chgnet-0.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:aaa50d5d51ced9d9b4e3144fa441c441f3245284d1e0ec1f3577472436316c11", size = 9263959, upload-time = "2024-09-16T22:19:20.058Z" }, - { url = "https://files.pythonhosted.org/packages/ca/68/d8d87e673a9de9182db5b5f0fbca70c8b021aa07a0077c534e185e873b39/chgnet-0.4.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:4594772e9c87f0c4c75941b2b4fbe992ae11bb30e28264e6b93fd614191fd761", size = 9288676, upload-time = "2024-09-16T22:19:22.826Z" }, - { url = "https://files.pythonhosted.org/packages/68/2c/4e616a4d9daa38c6a51e135008368bbba9651ca682c1673963e061e12e46/chgnet-0.4.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:b8f58d07dca2cca1ec3d2759030fcdfc04a3f5ea48a5f39d1bb4f98d9f7d32ae", size = 9300042, upload-time = "2024-09-16T22:19:24.872Z" }, - { url = "https://files.pythonhosted.org/packages/03/1a/25a165d2796cf2dd3f6b3ded13aca3bdd978d707712fe15c1d7a7caf32ff/chgnet-0.4.0-cp311-cp311-win32.whl", hash = "sha256:dab2390fd8046910bac5e8726d921afa696fa40eb477550c990d157a6ce59e3d", size = 8813706, upload-time = "2024-09-16T22:19:27.387Z" }, - { url = "https://files.pythonhosted.org/packages/23/6c/6bf740b42ddeaaa89dff870a72665c537051869e619cbed60aa76a2767c8/chgnet-0.4.0-cp311-cp311-win_amd64.whl", hash = "sha256:25b8230e3df68c3b1c77810588e2630f563f36eee81979a9eea110adb92ed3a6", size = 8824808, upload-time = "2024-09-16T22:19:29.445Z" }, - { url = "https://files.pythonhosted.org/packages/ca/59/307a31cf4786a3baca7cabb311766a0a3ec15295ef32c2a724d89a0d9980/chgnet-0.4.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:7458b55c6444850ab1713cea42ee371a418898f5df13d51b57dd47183616d3fa", size = 8918290, upload-time = "2024-09-16T22:19:31.594Z" }, - { url = "https://files.pythonhosted.org/packages/0d/34/c1cdb90b1bd5a884c154eb4195e23771be959f27bdcad0414a5e4e837f41/chgnet-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8b26ca70451489c7e392b9c294b11517ae07c679fd3308548ed2a8b5ad1c9a11", size = 9265134, upload-time = "2024-09-16T22:19:34.177Z" }, - { url = "https://files.pythonhosted.org/packages/ae/b9/e7d02f291e9e2f47988c409197bf382e9d1227f50c9d88a0ddf42117925f/chgnet-0.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8d57b1d6c29e31bd4d840158cbc14fd73f37e8f33f91e45b35c257c48168db6e", size = 9243149, upload-time = "2024-09-16T22:19:36.866Z" }, - { url = "https://files.pythonhosted.org/packages/44/19/c4b424b71c1662abecff0bee049186a6cfc15906b188e492a8b5d3bc49b9/chgnet-0.4.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:dd0b927ddee05faac59251fb23fd58ed78e846c0f52fd2f642b59a58021ada0c", size = 9269138, upload-time = "2024-09-16T22:19:38.883Z" }, - { url = "https://files.pythonhosted.org/packages/25/01/63594c4b8ecf68fd66604cc530d46c55f85bf89e4f8822636c0401192e8e/chgnet-0.4.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:235ac6fbf565bdb9c1a54c5f06625977a45797ce0d15cc4bcf13dcd52673ce1f", size = 9287335, upload-time = "2024-09-16T22:19:41.333Z" }, - { url = "https://files.pythonhosted.org/packages/93/6a/366e4dbcd0a140635b3a889dd7517f9dff73948fbb7879bd5a3f65997e65/chgnet-0.4.0-cp312-cp312-win32.whl", hash = "sha256:5ca5e2f4432a789443585545b726e6b0df861942e6e909e3b14f29c31837d3a8", size = 8813957, upload-time = "2024-09-16T22:19:43.441Z" }, - { url = "https://files.pythonhosted.org/packages/ea/d2/79e86ded321c762b37ac21d9ef12ccf109a11f7be5c5f6d1bf0cacbc35ba/chgnet-0.4.0-cp312-cp312-win_amd64.whl", hash = "sha256:c3e9de894d86f46cff1d66a089987d64dfc20ded59e3f811f7bb3ecf9e5e123d", size = 8824976, upload-time = "2024-09-16T22:19:45.566Z" }, +sdist = { url = "https://files.pythonhosted.org/packages/83/14/0f75f76611f5d0ac08e38b8f9ce7e94df2e9d026fb355e40b774eb171f2c/chgnet-0.4.2.tar.gz", hash = "sha256:a24dfa050f1eb6c51d46727029015c2b44aa1da22f11d5ffedc5b499c59e2088", size = 13171054, upload-time = "2025-09-22T20:51:11.91Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/08/d3/f51e51457c61e28f80d9beb0871beaf5db5ec4ceaef1423e4bf4115384e3/chgnet-0.4.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:167361415dd102da166fcbdeaca6ecf918c214795ec2bac12c3d65277ddecac4", size = 13317741, upload-time = "2025-09-22T20:50:36.604Z" }, + { url = "https://files.pythonhosted.org/packages/70/43/eb6677e8da6b60432a967239be3a77358c3dc50d7a6fe46d13c695119089/chgnet-0.4.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f60a3ed0dacc4657c511807eb1de44e12654e54d8f5a0cc483d1255564fb378a", size = 13679551, upload-time = "2025-09-22T20:50:39.069Z" }, + { url = "https://files.pythonhosted.org/packages/d3/d3/fa822a9c79c67bcd0d1bba49dcb17f2475f5559606e2162e4b6ffb4dca62/chgnet-0.4.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d970caecbd18e2a4058bf4cd0c0c5cc68b0718ca625d8c2bbacffb09203c4d13", size = 13671541, upload-time = "2025-09-22T20:50:41.712Z" }, + { url = "https://files.pythonhosted.org/packages/7c/43/eecb40fc2cdb862cdea01577247bfd28db2f3d9c27e14bb3c201015acd14/chgnet-0.4.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:a11f14db8bcae15f4471765a884feabe4887b76a36e1c0ba1b579f7b65023b75", size = 13684327, upload-time = "2025-09-22T20:50:43.901Z" }, + { url = "https://files.pythonhosted.org/packages/c8/90/0cf917d5b9f0e342d57dac38c85ce9bdd72de3b4c8015fb47f3b7d4e7bb3/chgnet-0.4.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:b5c929cb88297c3fc12f00276827ae5d69067bba015954275ef9420c92ae483c", size = 13699693, upload-time = "2025-09-22T20:50:45.966Z" }, + { url = "https://files.pythonhosted.org/packages/90/2d/ce9ae9d34a1814ab5ca0c4b1e690c6796072dfe30f5d8a839cdcf7bd891a/chgnet-0.4.2-cp311-cp311-win32.whl", hash = "sha256:f213ed6f7f773edb2053babd1679885dd1f626a6ac1edcb478d8daab2d227bda", size = 13217089, upload-time = "2025-09-22T20:50:48.147Z" }, + { url = "https://files.pythonhosted.org/packages/5b/e0/c287e6d35f7c430fcb08743044f7baa6fb21c06a50678c2bd43104d088b9/chgnet-0.4.2-cp311-cp311-win_amd64.whl", hash = "sha256:c88e7cfed2080f3ae54fb16c1705c4d6d0297f86530815e833dabb9404a8b764", size = 13228495, upload-time = "2025-09-22T20:50:54.134Z" }, + { url = "https://files.pythonhosted.org/packages/48/e6/9d7d2be0d7aacafc1e5b1b4c2f71c9e817c3ef1880daa9f0966622f2c272/chgnet-0.4.2-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:b4924160bbf09c099e5bc46cdbe73d4375c776c049e431d58b6618844bf99bcf", size = 13318901, upload-time = "2025-09-22T20:50:56.377Z" }, + { url = "https://files.pythonhosted.org/packages/8b/c3/afb4e09bdb379fa0756a5bcecd34e19e5e893f2e04e3171d5821b71b478b/chgnet-0.4.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c5231eac9348cb1a2dac27077d3e836a1f6dc324da8aa16b28139c5e3c5da1d6", size = 13675179, upload-time = "2025-09-22T20:50:58.479Z" }, + { url = "https://files.pythonhosted.org/packages/de/38/356e07e684fab1e9b305d31e7213fcec4f3a30b7cfed53f040781c748466/chgnet-0.4.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3328cf21675a002bd9746c5159200dcc997c1f94f924d9d0a99ee09d73f9308", size = 13651898, upload-time = "2025-09-22T20:51:00.677Z" }, + { url = "https://files.pythonhosted.org/packages/5e/8d/66e929f699df5ae7281c51e9357585680ba7c1df4dc1e3a5b44dba884674/chgnet-0.4.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:bcc919a7b7a2fbe907db281ba6855824bff441cb3dfa87a7b4870888e796df03", size = 13679734, upload-time = "2025-09-22T20:51:02.777Z" }, + { url = "https://files.pythonhosted.org/packages/ef/63/9e87f70cc3526da1f1d03042d04b3653bcb73df4f80b2b4055f11e03281f/chgnet-0.4.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:492fd13fde33769367e55cf907b404b5feec1109d9a428042a3ebaf247f744d8", size = 13695482, upload-time = "2025-09-22T20:51:05.406Z" }, + { url = "https://files.pythonhosted.org/packages/23/b8/17c214b94dff4f222d87baef8a93f7e833062a2d48560bbb91bb06e6e67c/chgnet-0.4.2-cp312-cp312-win32.whl", hash = "sha256:8f04c7dd9f135cc398cc0134b398f85fbb1d3ce70a57436d1cf7e56e06ee70d2", size = 13217545, upload-time = "2025-09-22T20:51:07.432Z" }, + { url = "https://files.pythonhosted.org/packages/f5/23/4858d23a2538897736f24b7f48a0d33162c466cc5d9e31211f5331d2d425/chgnet-0.4.2-cp312-cp312-win_amd64.whl", hash = "sha256:3ee8104bcd7b1f49b67ee7132d3f296f2148bc61288bef5be81d6ff6864cbdfc", size = 13229419, upload-time = "2025-09-22T20:51:09.656Z" }, ] [[package]] name = "click" -version = "8.2.1" +version = "8.3.1" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "colorama", marker = "sys_platform == 'win32'" }, + { name = "colorama", marker = "sys_platform == 'win32' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/60/6c/8ca2efa64cf75a977a0d7fac081354553ebe483345c734fb6b6515d96bbc/click-8.2.1.tar.gz", hash = "sha256:27c491cc05d968d271d5a1db13e3b5a184636d9d930f148c50b038f0d0646202", size = 286342, upload-time = "2025-05-20T23:19:49.832Z" } +sdist = { url = "https://files.pythonhosted.org/packages/3d/fa/656b739db8587d7b5dfa22e22ed02566950fbfbcdc20311993483657a5c0/click-8.3.1.tar.gz", hash = "sha256:12ff4785d337a1bb490bb7e9c2b1ee5da3112e94a8622f26a6c77f5d2fc6842a", size = 295065, upload-time = "2025-11-15T20:45:42.706Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/85/32/10bb5764d90a8eee674e9dc6f4db6a0ab47c8c4d0d83c27f7c39ac415a4d/click-8.2.1-py3-none-any.whl", hash = "sha256:61a3265b914e850b85317d0b3109c7f8cd35a670f963866005d6ef1d5175a12b", size = 102215, upload-time = "2025-05-20T23:19:47.796Z" }, + { url = "https://files.pythonhosted.org/packages/98/78/01c019cdb5d6498122777c1a43056ebb3ebfeef2076d9d026bfe15583b2b/click-8.3.1-py3-none-any.whl", hash = "sha256:981153a64e25f12d547d3426c367a4857371575ee7ad18df2a6183ab0545b2a6", size = 108274, upload-time = "2025-11-15T20:45:41.139Z" }, ] [[package]] @@ -1961,14 +1554,14 @@ wheels = [ [[package]] name = "click-plugins" -version = "1.1.1" +version = "1.1.1.2" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "click" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/5f/1d/45434f64ed749540af821fd7e42b8e4d23ac04b1eda7c26613288d6cd8a8/click-plugins-1.1.1.tar.gz", hash = "sha256:46ab999744a9d831159c3411bb0c79346d94a444df9a3a3742e9ed63645f264b", size = 8164, upload-time = "2019-04-04T04:27:04.82Z" } +sdist = { url = "https://files.pythonhosted.org/packages/c3/a4/34847b59150da33690a36da3681d6bbc2ec14ee9a846bc30a6746e5984e4/click_plugins-1.1.1.2.tar.gz", hash = "sha256:d7af3984a99d243c131aa1a828331e7630f4a88a9741fd05c927b204bcf92261", size = 8343, upload-time = "2025-06-25T00:47:37.555Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/e9/da/824b92d9942f4e472702488857914bdd50f73021efea15b4cad9aca8ecef/click_plugins-1.1.1-py2.py3-none-any.whl", hash = "sha256:5d262006d3222f5057fd81e1623d4443e41dcda5dc815c06b442aa3c02889fc8", size = 7497, upload-time = "2019-04-04T04:27:03.36Z" }, + { url = "https://files.pythonhosted.org/packages/3d/9a/2abecb28ae875e39c8cad711eb1186d8d14eab564705325e77e4e6ab9ae5/click_plugins-1.1.1.2-py2.py3-none-any.whl", hash = "sha256:008d65743833ffc1f5417bf0e78e8d2c23aab04d9745ba817bd3e71b0feb6aa6", size = 11051, upload-time = "2025-06-25T00:47:36.731Z" }, ] [[package]] @@ -1986,11 +1579,20 @@ wheels = [ [[package]] name = "cloudpickle" -version = "3.1.1" +version = "3.1.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/27/fb/576f067976d320f5f0114a8d9fa1215425441bb35627b1993e5afd8111e5/cloudpickle-3.1.2.tar.gz", hash = "sha256:7fda9eb655c9c230dab534f1983763de5835249750e85fbcef43aaa30a9a2414", size = 22330, upload-time = "2025-11-03T09:25:26.604Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/88/39/799be3f2f0f38cc727ee3b4f1445fe6d5e4133064ec2e4115069418a5bb6/cloudpickle-3.1.2-py3-none-any.whl", hash = "sha256:9acb47f6afd73f60dc1df93bb801b472f05ff42fa6c84167d25cb206be1fbf4a", size = 22228, upload-time = "2025-11-03T09:25:25.534Z" }, +] + +[[package]] +name = "clusterscope" +version = "0.0.12" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/52/39/069100b84d7418bc358d81669d5748efb14b9cceacd2f9c75f550424132f/cloudpickle-3.1.1.tar.gz", hash = "sha256:b216fa8ae4019d5482a8ac3c95d8f6346115d8835911fd4aefd1a445e4242c64", size = 22113, upload-time = "2025-01-14T17:02:05.085Z" } +sdist = { url = "https://files.pythonhosted.org/packages/83/d9/a96270ca9d087adf9b584f19351f7172bfda2a4521fe2abd524b8533366b/clusterscope-0.0.12.tar.gz", hash = "sha256:537a45401712e527168fb5777e2d87fb729fb188b8771327dbee61ca1cc334a0", size = 66476, upload-time = "2025-09-19T23:56:35.993Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/7e/e8/64c37fadfc2816a7701fa8a6ed8d87327c7d54eacfbfb6edab14a2f2be75/cloudpickle-3.1.1-py3-none-any.whl", hash = "sha256:c8c5a44295039331ee9dad40ba100a9c7297b6f988e50e87ccdf3765a668350e", size = 20992, upload-time = "2025-01-14T17:02:02.417Z" }, + { url = "https://files.pythonhosted.org/packages/ca/c9/949fcacf029ab6703577b1e24e03d6e133c8511f2cab13ea90a128b5b09e/clusterscope-0.0.12-py3-none-any.whl", hash = "sha256:ac7f72c6c9488a1f92210ce4cc7b2a310547505d6ebbfc0c9d1e1713f6e3c60b", size = 13347, upload-time = "2025-09-19T23:56:34.8Z" }, ] [[package]] @@ -2004,14 +1606,11 @@ wheels = [ [[package]] name = "comm" -version = "0.2.2" +version = "0.2.3" source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "traitlets" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/e9/a8/fb783cb0abe2b5fded9f55e5703015cdf1c9c85b3669087c538dd15a6a86/comm-0.2.2.tar.gz", hash = "sha256:3fd7a84065306e07bea1773df6eb8282de51ba82f77c72f9c85716ab11fe980e", size = 6210, upload-time = "2024-03-12T16:53:41.133Z" } +sdist = { url = "https://files.pythonhosted.org/packages/4c/13/7d740c5849255756bc17888787313b61fd38a0a8304fc4f073dfc46122aa/comm-0.2.3.tar.gz", hash = "sha256:2dc8048c10962d55d7ad693be1e7045d891b7ce8d999c97963a5e3e99c055971", size = 6319, upload-time = "2025-07-25T14:02:04.452Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/e6/75/49e5bfe642f71f272236b5b2d2691cf915a7283cc0ceda56357b61daa538/comm-0.2.2-py3-none-any.whl", hash = "sha256:e6fb86cb70ff661ee8c9c14e7d36d6de3b4066f1441be4063df9c5009f0a64d3", size = 7180, upload-time = "2024-03-12T16:53:39.226Z" }, + { url = "https://files.pythonhosted.org/packages/60/97/891a0971e1e4a8c5d2b20bbe0e524dc04548d2307fee33cdeba148fd4fc7/comm-0.2.3-py3-none-any.whl", hash = "sha256:c615d91d75f7f04f095b30d1c1711babd43bdc6419c1be9886a85f2f4e489417", size = 7294, upload-time = "2025-07-25T14:02:02.896Z" }, ] [[package]] @@ -2034,134 +1633,172 @@ wheels = [ [[package]] name = "contourpy" -version = "1.3.2" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-5-mlipx-grace' or extra == 'extra-5-mlipx-matpes' or extra == 'extra-5-mlipx-mattersim' or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-5-mlipx-fairchem' or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/66/54/eb9bfc647b19f2009dd5c7f5ec51c4e6ca831725f1aea7a993034f483147/contourpy-1.3.2.tar.gz", hash = "sha256:b6945942715a034c671b7fc54f9588126b0b8bf23db2696e3ca8328f3ff0ab54", size = 13466130, upload-time = "2025-04-15T17:47:53.79Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/12/a3/da4153ec8fe25d263aa48c1a4cbde7f49b59af86f0b6f7862788c60da737/contourpy-1.3.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ba38e3f9f330af820c4b27ceb4b9c7feee5fe0493ea53a8720f4792667465934", size = 268551, upload-time = "2025-04-15T17:34:46.581Z" }, - { url = "https://files.pythonhosted.org/packages/2f/6c/330de89ae1087eb622bfca0177d32a7ece50c3ef07b28002de4757d9d875/contourpy-1.3.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:dc41ba0714aa2968d1f8674ec97504a8f7e334f48eeacebcaa6256213acb0989", size = 253399, upload-time = "2025-04-15T17:34:51.427Z" }, - { url = "https://files.pythonhosted.org/packages/c1/bd/20c6726b1b7f81a8bee5271bed5c165f0a8e1f572578a9d27e2ccb763cb2/contourpy-1.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9be002b31c558d1ddf1b9b415b162c603405414bacd6932d031c5b5a8b757f0d", size = 312061, upload-time = "2025-04-15T17:34:55.961Z" }, - { url = "https://files.pythonhosted.org/packages/22/fc/a9665c88f8a2473f823cf1ec601de9e5375050f1958cbb356cdf06ef1ab6/contourpy-1.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8d2e74acbcba3bfdb6d9d8384cdc4f9260cae86ed9beee8bd5f54fee49a430b9", size = 351956, upload-time = "2025-04-15T17:35:00.992Z" }, - { url = "https://files.pythonhosted.org/packages/25/eb/9f0a0238f305ad8fb7ef42481020d6e20cf15e46be99a1fcf939546a177e/contourpy-1.3.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e259bced5549ac64410162adc973c5e2fb77f04df4a439d00b478e57a0e65512", size = 320872, upload-time = "2025-04-15T17:35:06.177Z" }, - { url = "https://files.pythonhosted.org/packages/32/5c/1ee32d1c7956923202f00cf8d2a14a62ed7517bdc0ee1e55301227fc273c/contourpy-1.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ad687a04bc802cbe8b9c399c07162a3c35e227e2daccf1668eb1f278cb698631", size = 325027, upload-time = "2025-04-15T17:35:11.244Z" }, - { url = "https://files.pythonhosted.org/packages/83/bf/9baed89785ba743ef329c2b07fd0611d12bfecbedbdd3eeecf929d8d3b52/contourpy-1.3.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:cdd22595308f53ef2f891040ab2b93d79192513ffccbd7fe19be7aa773a5e09f", size = 1306641, upload-time = "2025-04-15T17:35:26.701Z" }, - { url = "https://files.pythonhosted.org/packages/d4/cc/74e5e83d1e35de2d28bd97033426b450bc4fd96e092a1f7a63dc7369b55d/contourpy-1.3.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b4f54d6a2defe9f257327b0f243612dd051cc43825587520b1bf74a31e2f6ef2", size = 1374075, upload-time = "2025-04-15T17:35:43.204Z" }, - { url = "https://files.pythonhosted.org/packages/0c/42/17f3b798fd5e033b46a16f8d9fcb39f1aba051307f5ebf441bad1ecf78f8/contourpy-1.3.2-cp310-cp310-win32.whl", hash = "sha256:f939a054192ddc596e031e50bb13b657ce318cf13d264f095ce9db7dc6ae81c0", size = 177534, upload-time = "2025-04-15T17:35:46.554Z" }, - { url = "https://files.pythonhosted.org/packages/54/ec/5162b8582f2c994721018d0c9ece9dc6ff769d298a8ac6b6a652c307e7df/contourpy-1.3.2-cp310-cp310-win_amd64.whl", hash = "sha256:c440093bbc8fc21c637c03bafcbef95ccd963bc6e0514ad887932c18ca2a759a", size = 221188, upload-time = "2025-04-15T17:35:50.064Z" }, - { url = "https://files.pythonhosted.org/packages/b3/b9/ede788a0b56fc5b071639d06c33cb893f68b1178938f3425debebe2dab78/contourpy-1.3.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6a37a2fb93d4df3fc4c0e363ea4d16f83195fc09c891bc8ce072b9d084853445", size = 269636, upload-time = "2025-04-15T17:35:54.473Z" }, - { url = "https://files.pythonhosted.org/packages/e6/75/3469f011d64b8bbfa04f709bfc23e1dd71be54d05b1b083be9f5b22750d1/contourpy-1.3.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b7cd50c38f500bbcc9b6a46643a40e0913673f869315d8e70de0438817cb7773", size = 254636, upload-time = "2025-04-15T17:35:58.283Z" }, - { url = "https://files.pythonhosted.org/packages/8d/2f/95adb8dae08ce0ebca4fd8e7ad653159565d9739128b2d5977806656fcd2/contourpy-1.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d6658ccc7251a4433eebd89ed2672c2ed96fba367fd25ca9512aa92a4b46c4f1", size = 313053, upload-time = "2025-04-15T17:36:03.235Z" }, - { url = "https://files.pythonhosted.org/packages/c3/a6/8ccf97a50f31adfa36917707fe39c9a0cbc24b3bbb58185577f119736cc9/contourpy-1.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:70771a461aaeb335df14deb6c97439973d253ae70660ca085eec25241137ef43", size = 352985, upload-time = "2025-04-15T17:36:08.275Z" }, - { url = "https://files.pythonhosted.org/packages/1d/b6/7925ab9b77386143f39d9c3243fdd101621b4532eb126743201160ffa7e6/contourpy-1.3.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:65a887a6e8c4cd0897507d814b14c54a8c2e2aa4ac9f7686292f9769fcf9a6ab", size = 323750, upload-time = "2025-04-15T17:36:13.29Z" }, - { url = "https://files.pythonhosted.org/packages/c2/f3/20c5d1ef4f4748e52d60771b8560cf00b69d5c6368b5c2e9311bcfa2a08b/contourpy-1.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3859783aefa2b8355697f16642695a5b9792e7a46ab86da1118a4a23a51a33d7", size = 326246, upload-time = "2025-04-15T17:36:18.329Z" }, - { url = "https://files.pythonhosted.org/packages/8c/e5/9dae809e7e0b2d9d70c52b3d24cba134dd3dad979eb3e5e71f5df22ed1f5/contourpy-1.3.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:eab0f6db315fa4d70f1d8ab514e527f0366ec021ff853d7ed6a2d33605cf4b83", size = 1308728, upload-time = "2025-04-15T17:36:33.878Z" }, - { url = "https://files.pythonhosted.org/packages/e2/4a/0058ba34aeea35c0b442ae61a4f4d4ca84d6df8f91309bc2d43bb8dd248f/contourpy-1.3.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:d91a3ccc7fea94ca0acab82ceb77f396d50a1f67412efe4c526f5d20264e6ecd", size = 1375762, upload-time = "2025-04-15T17:36:51.295Z" }, - { url = "https://files.pythonhosted.org/packages/09/33/7174bdfc8b7767ef2c08ed81244762d93d5c579336fc0b51ca57b33d1b80/contourpy-1.3.2-cp311-cp311-win32.whl", hash = "sha256:1c48188778d4d2f3d48e4643fb15d8608b1d01e4b4d6b0548d9b336c28fc9b6f", size = 178196, upload-time = "2025-04-15T17:36:55.002Z" }, - { url = "https://files.pythonhosted.org/packages/5e/fe/4029038b4e1c4485cef18e480b0e2cd2d755448bb071eb9977caac80b77b/contourpy-1.3.2-cp311-cp311-win_amd64.whl", hash = "sha256:5ebac872ba09cb8f2131c46b8739a7ff71de28a24c869bcad554477eb089a878", size = 222017, upload-time = "2025-04-15T17:36:58.576Z" }, - { url = "https://files.pythonhosted.org/packages/34/f7/44785876384eff370c251d58fd65f6ad7f39adce4a093c934d4a67a7c6b6/contourpy-1.3.2-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:4caf2bcd2969402bf77edc4cb6034c7dd7c0803213b3523f111eb7460a51b8d2", size = 271580, upload-time = "2025-04-15T17:37:03.105Z" }, - { url = "https://files.pythonhosted.org/packages/93/3b/0004767622a9826ea3d95f0e9d98cd8729015768075d61f9fea8eeca42a8/contourpy-1.3.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:82199cb78276249796419fe36b7386bd8d2cc3f28b3bc19fe2454fe2e26c4c15", size = 255530, upload-time = "2025-04-15T17:37:07.026Z" }, - { url = "https://files.pythonhosted.org/packages/e7/bb/7bd49e1f4fa805772d9fd130e0d375554ebc771ed7172f48dfcd4ca61549/contourpy-1.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:106fab697af11456fcba3e352ad50effe493a90f893fca6c2ca5c033820cea92", size = 307688, upload-time = "2025-04-15T17:37:11.481Z" }, - { url = "https://files.pythonhosted.org/packages/fc/97/e1d5dbbfa170725ef78357a9a0edc996b09ae4af170927ba8ce977e60a5f/contourpy-1.3.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d14f12932a8d620e307f715857107b1d1845cc44fdb5da2bc8e850f5ceba9f87", size = 347331, upload-time = "2025-04-15T17:37:18.212Z" }, - { url = "https://files.pythonhosted.org/packages/6f/66/e69e6e904f5ecf6901be3dd16e7e54d41b6ec6ae3405a535286d4418ffb4/contourpy-1.3.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:532fd26e715560721bb0d5fc7610fce279b3699b018600ab999d1be895b09415", size = 318963, upload-time = "2025-04-15T17:37:22.76Z" }, - { url = "https://files.pythonhosted.org/packages/a8/32/b8a1c8965e4f72482ff2d1ac2cd670ce0b542f203c8e1d34e7c3e6925da7/contourpy-1.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f26b383144cf2d2c29f01a1e8170f50dacf0eac02d64139dcd709a8ac4eb3cfe", size = 323681, upload-time = "2025-04-15T17:37:33.001Z" }, - { url = "https://files.pythonhosted.org/packages/30/c6/12a7e6811d08757c7162a541ca4c5c6a34c0f4e98ef2b338791093518e40/contourpy-1.3.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:c49f73e61f1f774650a55d221803b101d966ca0c5a2d6d5e4320ec3997489441", size = 1308674, upload-time = "2025-04-15T17:37:48.64Z" }, - { url = "https://files.pythonhosted.org/packages/2a/8a/bebe5a3f68b484d3a2b8ffaf84704b3e343ef1addea528132ef148e22b3b/contourpy-1.3.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:3d80b2c0300583228ac98d0a927a1ba6a2ba6b8a742463c564f1d419ee5b211e", size = 1380480, upload-time = "2025-04-15T17:38:06.7Z" }, - { url = "https://files.pythonhosted.org/packages/34/db/fcd325f19b5978fb509a7d55e06d99f5f856294c1991097534360b307cf1/contourpy-1.3.2-cp312-cp312-win32.whl", hash = "sha256:90df94c89a91b7362e1142cbee7568f86514412ab8a2c0d0fca72d7e91b62912", size = 178489, upload-time = "2025-04-15T17:38:10.338Z" }, - { url = "https://files.pythonhosted.org/packages/01/c8/fadd0b92ffa7b5eb5949bf340a63a4a496a6930a6c37a7ba0f12acb076d6/contourpy-1.3.2-cp312-cp312-win_amd64.whl", hash = "sha256:8c942a01d9163e2e5cfb05cb66110121b8d07ad438a17f9e766317bcb62abf73", size = 223042, upload-time = "2025-04-15T17:38:14.239Z" }, - { url = "https://files.pythonhosted.org/packages/2e/61/5673f7e364b31e4e7ef6f61a4b5121c5f170f941895912f773d95270f3a2/contourpy-1.3.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:de39db2604ae755316cb5967728f4bea92685884b1e767b7c24e983ef5f771cb", size = 271630, upload-time = "2025-04-15T17:38:19.142Z" }, - { url = "https://files.pythonhosted.org/packages/ff/66/a40badddd1223822c95798c55292844b7e871e50f6bfd9f158cb25e0bd39/contourpy-1.3.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:3f9e896f447c5c8618f1edb2bafa9a4030f22a575ec418ad70611450720b5b08", size = 255670, upload-time = "2025-04-15T17:38:23.688Z" }, - { url = "https://files.pythonhosted.org/packages/1e/c7/cf9fdee8200805c9bc3b148f49cb9482a4e3ea2719e772602a425c9b09f8/contourpy-1.3.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:71e2bd4a1c4188f5c2b8d274da78faab884b59df20df63c34f74aa1813c4427c", size = 306694, upload-time = "2025-04-15T17:38:28.238Z" }, - { url = "https://files.pythonhosted.org/packages/dd/e7/ccb9bec80e1ba121efbffad7f38021021cda5be87532ec16fd96533bb2e0/contourpy-1.3.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:de425af81b6cea33101ae95ece1f696af39446db9682a0b56daaa48cfc29f38f", size = 345986, upload-time = "2025-04-15T17:38:33.502Z" }, - { url = "https://files.pythonhosted.org/packages/dc/49/ca13bb2da90391fa4219fdb23b078d6065ada886658ac7818e5441448b78/contourpy-1.3.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:977e98a0e0480d3fe292246417239d2d45435904afd6d7332d8455981c408b85", size = 318060, upload-time = "2025-04-15T17:38:38.672Z" }, - { url = "https://files.pythonhosted.org/packages/c8/65/5245ce8c548a8422236c13ffcdcdada6a2a812c361e9e0c70548bb40b661/contourpy-1.3.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:434f0adf84911c924519d2b08fc10491dd282b20bdd3fa8f60fd816ea0b48841", size = 322747, upload-time = "2025-04-15T17:38:43.712Z" }, - { url = "https://files.pythonhosted.org/packages/72/30/669b8eb48e0a01c660ead3752a25b44fdb2e5ebc13a55782f639170772f9/contourpy-1.3.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c66c4906cdbc50e9cba65978823e6e00b45682eb09adbb78c9775b74eb222422", size = 1308895, upload-time = "2025-04-15T17:39:00.224Z" }, - { url = "https://files.pythonhosted.org/packages/05/5a/b569f4250decee6e8d54498be7bdf29021a4c256e77fe8138c8319ef8eb3/contourpy-1.3.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:8b7fc0cd78ba2f4695fd0a6ad81a19e7e3ab825c31b577f384aa9d7817dc3bef", size = 1379098, upload-time = "2025-04-15T17:43:29.649Z" }, - { url = "https://files.pythonhosted.org/packages/19/ba/b227c3886d120e60e41b28740ac3617b2f2b971b9f601c835661194579f1/contourpy-1.3.2-cp313-cp313-win32.whl", hash = "sha256:15ce6ab60957ca74cff444fe66d9045c1fd3e92c8936894ebd1f3eef2fff075f", size = 178535, upload-time = "2025-04-15T17:44:44.532Z" }, - { url = "https://files.pythonhosted.org/packages/12/6e/2fed56cd47ca739b43e892707ae9a13790a486a3173be063681ca67d2262/contourpy-1.3.2-cp313-cp313-win_amd64.whl", hash = "sha256:e1578f7eafce927b168752ed7e22646dad6cd9bca673c60bff55889fa236ebf9", size = 223096, upload-time = "2025-04-15T17:44:48.194Z" }, - { url = "https://files.pythonhosted.org/packages/54/4c/e76fe2a03014a7c767d79ea35c86a747e9325537a8b7627e0e5b3ba266b4/contourpy-1.3.2-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:0475b1f6604896bc7c53bb070e355e9321e1bc0d381735421a2d2068ec56531f", size = 285090, upload-time = "2025-04-15T17:43:34.084Z" }, - { url = "https://files.pythonhosted.org/packages/7b/e2/5aba47debd55d668e00baf9651b721e7733975dc9fc27264a62b0dd26eb8/contourpy-1.3.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:c85bb486e9be652314bb5b9e2e3b0d1b2e643d5eec4992c0fbe8ac71775da739", size = 268643, upload-time = "2025-04-15T17:43:38.626Z" }, - { url = "https://files.pythonhosted.org/packages/a1/37/cd45f1f051fe6230f751cc5cdd2728bb3a203f5619510ef11e732109593c/contourpy-1.3.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:745b57db7758f3ffc05a10254edd3182a2a83402a89c00957a8e8a22f5582823", size = 310443, upload-time = "2025-04-15T17:43:44.522Z" }, - { url = "https://files.pythonhosted.org/packages/8b/a2/36ea6140c306c9ff6dd38e3bcec80b3b018474ef4d17eb68ceecd26675f4/contourpy-1.3.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:970e9173dbd7eba9b4e01aab19215a48ee5dd3f43cef736eebde064a171f89a5", size = 349865, upload-time = "2025-04-15T17:43:49.545Z" }, - { url = "https://files.pythonhosted.org/packages/95/b7/2fc76bc539693180488f7b6cc518da7acbbb9e3b931fd9280504128bf956/contourpy-1.3.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c6c4639a9c22230276b7bffb6a850dfc8258a2521305e1faefe804d006b2e532", size = 321162, upload-time = "2025-04-15T17:43:54.203Z" }, - { url = "https://files.pythonhosted.org/packages/f4/10/76d4f778458b0aa83f96e59d65ece72a060bacb20cfbee46cf6cd5ceba41/contourpy-1.3.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cc829960f34ba36aad4302e78eabf3ef16a3a100863f0d4eeddf30e8a485a03b", size = 327355, upload-time = "2025-04-15T17:44:01.025Z" }, - { url = "https://files.pythonhosted.org/packages/43/a3/10cf483ea683f9f8ab096c24bad3cce20e0d1dd9a4baa0e2093c1c962d9d/contourpy-1.3.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:d32530b534e986374fc19eaa77fcb87e8a99e5431499949b828312bdcd20ac52", size = 1307935, upload-time = "2025-04-15T17:44:17.322Z" }, - { url = "https://files.pythonhosted.org/packages/78/73/69dd9a024444489e22d86108e7b913f3528f56cfc312b5c5727a44188471/contourpy-1.3.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:e298e7e70cf4eb179cc1077be1c725b5fd131ebc81181bf0c03525c8abc297fd", size = 1372168, upload-time = "2025-04-15T17:44:33.43Z" }, - { url = "https://files.pythonhosted.org/packages/0f/1b/96d586ccf1b1a9d2004dd519b25fbf104a11589abfd05484ff12199cca21/contourpy-1.3.2-cp313-cp313t-win32.whl", hash = "sha256:d0e589ae0d55204991450bb5c23f571c64fe43adaa53f93fc902a84c96f52fe1", size = 189550, upload-time = "2025-04-15T17:44:37.092Z" }, - { url = "https://files.pythonhosted.org/packages/b0/e6/6000d0094e8a5e32ad62591c8609e269febb6e4db83a1c75ff8868b42731/contourpy-1.3.2-cp313-cp313t-win_amd64.whl", hash = "sha256:78e9253c3de756b3f6a5174d024c4835acd59eb3f8e2ca13e775dbffe1558f69", size = 238214, upload-time = "2025-04-15T17:44:40.827Z" }, - { url = "https://files.pythonhosted.org/packages/33/05/b26e3c6ecc05f349ee0013f0bb850a761016d89cec528a98193a48c34033/contourpy-1.3.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:fd93cc7f3139b6dd7aab2f26a90dde0aa9fc264dbf70f6740d498a70b860b82c", size = 265681, upload-time = "2025-04-15T17:44:59.314Z" }, - { url = "https://files.pythonhosted.org/packages/2b/25/ac07d6ad12affa7d1ffed11b77417d0a6308170f44ff20fa1d5aa6333f03/contourpy-1.3.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:107ba8a6a7eec58bb475329e6d3b95deba9440667c4d62b9b6063942b61d7f16", size = 315101, upload-time = "2025-04-15T17:45:04.165Z" }, - { url = "https://files.pythonhosted.org/packages/8f/4d/5bb3192bbe9d3f27e3061a6a8e7733c9120e203cb8515767d30973f71030/contourpy-1.3.2-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:ded1706ed0c1049224531b81128efbd5084598f18d8a2d9efae833edbd2b40ad", size = 220599, upload-time = "2025-04-15T17:45:08.456Z" }, - { url = "https://files.pythonhosted.org/packages/ff/c0/91f1215d0d9f9f343e4773ba6c9b89e8c0cc7a64a6263f21139da639d848/contourpy-1.3.2-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:5f5964cdad279256c084b69c3f412b7801e15356b16efa9d78aa974041903da0", size = 266807, upload-time = "2025-04-15T17:45:15.535Z" }, - { url = "https://files.pythonhosted.org/packages/d4/79/6be7e90c955c0487e7712660d6cead01fa17bff98e0ea275737cc2bc8e71/contourpy-1.3.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:49b65a95d642d4efa8f64ba12558fcb83407e58a2dfba9d796d77b63ccfcaff5", size = 318729, upload-time = "2025-04-15T17:45:20.166Z" }, - { url = "https://files.pythonhosted.org/packages/87/68/7f46fb537958e87427d98a4074bcde4b67a70b04900cfc5ce29bc2f556c1/contourpy-1.3.2-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:8c5acb8dddb0752bf252e01a3035b21443158910ac16a3b0d20e7fed7d534ce5", size = 221791, upload-time = "2025-04-15T17:45:24.794Z" }, +version = "1.3.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'extra-5-mlipx-grace') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "numpy", version = "2.1.3", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform != 'linux' or extra == 'extra-5-mlipx-fairchem' or extra != 'extra-5-mlipx-grace' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/58/01/1253e6698a07380cd31a736d248a3f2a50a7c88779a1813da27503cadc2a/contourpy-1.3.3.tar.gz", hash = "sha256:083e12155b210502d0bca491432bb04d56dc3432f95a979b429f2848c3dbe880", size = 13466174, upload-time = "2025-07-26T12:03:12.549Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/91/2e/c4390a31919d8a78b90e8ecf87cd4b4c4f05a5b48d05ec17db8e5404c6f4/contourpy-1.3.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:709a48ef9a690e1343202916450bc48b9e51c049b089c7f79a267b46cffcdaa1", size = 288773, upload-time = "2025-07-26T12:01:02.277Z" }, + { url = "https://files.pythonhosted.org/packages/0d/44/c4b0b6095fef4dc9c420e041799591e3b63e9619e3044f7f4f6c21c0ab24/contourpy-1.3.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:23416f38bfd74d5d28ab8429cc4d63fa67d5068bd711a85edb1c3fb0c3e2f381", size = 270149, upload-time = "2025-07-26T12:01:04.072Z" }, + { url = "https://files.pythonhosted.org/packages/30/2e/dd4ced42fefac8470661d7cb7e264808425e6c5d56d175291e93890cce09/contourpy-1.3.3-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:929ddf8c4c7f348e4c0a5a3a714b5c8542ffaa8c22954862a46ca1813b667ee7", size = 329222, upload-time = "2025-07-26T12:01:05.688Z" }, + { url = "https://files.pythonhosted.org/packages/f2/74/cc6ec2548e3d276c71389ea4802a774b7aa3558223b7bade3f25787fafc2/contourpy-1.3.3-cp311-cp311-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:9e999574eddae35f1312c2b4b717b7885d4edd6cb46700e04f7f02db454e67c1", size = 377234, upload-time = "2025-07-26T12:01:07.054Z" }, + { url = "https://files.pythonhosted.org/packages/03/b3/64ef723029f917410f75c09da54254c5f9ea90ef89b143ccadb09df14c15/contourpy-1.3.3-cp311-cp311-manylinux_2_26_s390x.manylinux_2_28_s390x.whl", hash = "sha256:0bf67e0e3f482cb69779dd3061b534eb35ac9b17f163d851e2a547d56dba0a3a", size = 380555, upload-time = "2025-07-26T12:01:08.801Z" }, + { url = "https://files.pythonhosted.org/packages/5f/4b/6157f24ca425b89fe2eb7e7be642375711ab671135be21e6faa100f7448c/contourpy-1.3.3-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:51e79c1f7470158e838808d4a996fa9bac72c498e93d8ebe5119bc1e6becb0db", size = 355238, upload-time = "2025-07-26T12:01:10.319Z" }, + { url = "https://files.pythonhosted.org/packages/98/56/f914f0dd678480708a04cfd2206e7c382533249bc5001eb9f58aa693e200/contourpy-1.3.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:598c3aaece21c503615fd59c92a3598b428b2f01bfb4b8ca9c4edeecc2438620", size = 1326218, upload-time = "2025-07-26T12:01:12.659Z" }, + { url = "https://files.pythonhosted.org/packages/fb/d7/4a972334a0c971acd5172389671113ae82aa7527073980c38d5868ff1161/contourpy-1.3.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:322ab1c99b008dad206d406bb61d014cf0174df491ae9d9d0fac6a6fda4f977f", size = 1392867, upload-time = "2025-07-26T12:01:15.533Z" }, + { url = "https://files.pythonhosted.org/packages/75/3e/f2cc6cd56dc8cff46b1a56232eabc6feea52720083ea71ab15523daab796/contourpy-1.3.3-cp311-cp311-win32.whl", hash = "sha256:fd907ae12cd483cd83e414b12941c632a969171bf90fc937d0c9f268a31cafff", size = 183677, upload-time = "2025-07-26T12:01:17.088Z" }, + { url = "https://files.pythonhosted.org/packages/98/4b/9bd370b004b5c9d8045c6c33cf65bae018b27aca550a3f657cdc99acdbd8/contourpy-1.3.3-cp311-cp311-win_amd64.whl", hash = "sha256:3519428f6be58431c56581f1694ba8e50626f2dd550af225f82fb5f5814d2a42", size = 225234, upload-time = "2025-07-26T12:01:18.256Z" }, + { url = "https://files.pythonhosted.org/packages/d9/b6/71771e02c2e004450c12b1120a5f488cad2e4d5b590b1af8bad060360fe4/contourpy-1.3.3-cp311-cp311-win_arm64.whl", hash = "sha256:15ff10bfada4bf92ec8b31c62bf7c1834c244019b4a33095a68000d7075df470", size = 193123, upload-time = "2025-07-26T12:01:19.848Z" }, + { url = "https://files.pythonhosted.org/packages/be/45/adfee365d9ea3d853550b2e735f9d66366701c65db7855cd07621732ccfc/contourpy-1.3.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:b08a32ea2f8e42cf1d4be3169a98dd4be32bafe4f22b6c4cb4ba810fa9e5d2cb", size = 293419, upload-time = "2025-07-26T12:01:21.16Z" }, + { url = "https://files.pythonhosted.org/packages/53/3e/405b59cfa13021a56bba395a6b3aca8cec012b45bf177b0eaf7a202cde2c/contourpy-1.3.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:556dba8fb6f5d8742f2923fe9457dbdd51e1049c4a43fd3986a0b14a1d815fc6", size = 273979, upload-time = "2025-07-26T12:01:22.448Z" }, + { url = "https://files.pythonhosted.org/packages/d4/1c/a12359b9b2ca3a845e8f7f9ac08bdf776114eb931392fcad91743e2ea17b/contourpy-1.3.3-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:92d9abc807cf7d0e047b95ca5d957cf4792fcd04e920ca70d48add15c1a90ea7", size = 332653, upload-time = "2025-07-26T12:01:24.155Z" }, + { url = "https://files.pythonhosted.org/packages/63/12/897aeebfb475b7748ea67b61e045accdfcf0d971f8a588b67108ed7f5512/contourpy-1.3.3-cp312-cp312-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:b2e8faa0ed68cb29af51edd8e24798bb661eac3bd9f65420c1887b6ca89987c8", size = 379536, upload-time = "2025-07-26T12:01:25.91Z" }, + { url = "https://files.pythonhosted.org/packages/43/8a/a8c584b82deb248930ce069e71576fc09bd7174bbd35183b7943fb1064fd/contourpy-1.3.3-cp312-cp312-manylinux_2_26_s390x.manylinux_2_28_s390x.whl", hash = "sha256:626d60935cf668e70a5ce6ff184fd713e9683fb458898e4249b63be9e28286ea", size = 384397, upload-time = "2025-07-26T12:01:27.152Z" }, + { url = "https://files.pythonhosted.org/packages/cc/8f/ec6289987824b29529d0dfda0d74a07cec60e54b9c92f3c9da4c0ac732de/contourpy-1.3.3-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:4d00e655fcef08aba35ec9610536bfe90267d7ab5ba944f7032549c55a146da1", size = 362601, upload-time = "2025-07-26T12:01:28.808Z" }, + { url = "https://files.pythonhosted.org/packages/05/0a/a3fe3be3ee2dceb3e615ebb4df97ae6f3828aa915d3e10549ce016302bd1/contourpy-1.3.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:451e71b5a7d597379ef572de31eeb909a87246974d960049a9848c3bc6c41bf7", size = 1331288, upload-time = "2025-07-26T12:01:31.198Z" }, + { url = "https://files.pythonhosted.org/packages/33/1d/acad9bd4e97f13f3e2b18a3977fe1b4a37ecf3d38d815333980c6c72e963/contourpy-1.3.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:459c1f020cd59fcfe6650180678a9993932d80d44ccde1fa1868977438f0b411", size = 1403386, upload-time = "2025-07-26T12:01:33.947Z" }, + { url = "https://files.pythonhosted.org/packages/cf/8f/5847f44a7fddf859704217a99a23a4f6417b10e5ab1256a179264561540e/contourpy-1.3.3-cp312-cp312-win32.whl", hash = "sha256:023b44101dfe49d7d53932be418477dba359649246075c996866106da069af69", size = 185018, upload-time = "2025-07-26T12:01:35.64Z" }, + { url = "https://files.pythonhosted.org/packages/19/e8/6026ed58a64563186a9ee3f29f41261fd1828f527dd93d33b60feca63352/contourpy-1.3.3-cp312-cp312-win_amd64.whl", hash = "sha256:8153b8bfc11e1e4d75bcb0bff1db232f9e10b274e0929de9d608027e0d34ff8b", size = 226567, upload-time = "2025-07-26T12:01:36.804Z" }, + { url = "https://files.pythonhosted.org/packages/d1/e2/f05240d2c39a1ed228d8328a78b6f44cd695f7ef47beb3e684cf93604f86/contourpy-1.3.3-cp312-cp312-win_arm64.whl", hash = "sha256:07ce5ed73ecdc4a03ffe3e1b3e3c1166db35ae7584be76f65dbbe28a7791b0cc", size = 193655, upload-time = "2025-07-26T12:01:37.999Z" }, + { url = "https://files.pythonhosted.org/packages/68/35/0167aad910bbdb9599272bd96d01a9ec6852f36b9455cf2ca67bd4cc2d23/contourpy-1.3.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:177fb367556747a686509d6fef71d221a4b198a3905fe824430e5ea0fda54eb5", size = 293257, upload-time = "2025-07-26T12:01:39.367Z" }, + { url = "https://files.pythonhosted.org/packages/96/e4/7adcd9c8362745b2210728f209bfbcf7d91ba868a2c5f40d8b58f54c509b/contourpy-1.3.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:d002b6f00d73d69333dac9d0b8d5e84d9724ff9ef044fd63c5986e62b7c9e1b1", size = 274034, upload-time = "2025-07-26T12:01:40.645Z" }, + { url = "https://files.pythonhosted.org/packages/73/23/90e31ceeed1de63058a02cb04b12f2de4b40e3bef5e082a7c18d9c8ae281/contourpy-1.3.3-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:348ac1f5d4f1d66d3322420f01d42e43122f43616e0f194fc1c9f5d830c5b286", size = 334672, upload-time = "2025-07-26T12:01:41.942Z" }, + { url = "https://files.pythonhosted.org/packages/ed/93/b43d8acbe67392e659e1d984700e79eb67e2acb2bd7f62012b583a7f1b55/contourpy-1.3.3-cp313-cp313-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:655456777ff65c2c548b7c454af9c6f33f16c8884f11083244b5819cc214f1b5", size = 381234, upload-time = "2025-07-26T12:01:43.499Z" }, + { url = "https://files.pythonhosted.org/packages/46/3b/bec82a3ea06f66711520f75a40c8fc0b113b2a75edb36aa633eb11c4f50f/contourpy-1.3.3-cp313-cp313-manylinux_2_26_s390x.manylinux_2_28_s390x.whl", hash = "sha256:644a6853d15b2512d67881586bd03f462c7ab755db95f16f14d7e238f2852c67", size = 385169, upload-time = "2025-07-26T12:01:45.219Z" }, + { url = "https://files.pythonhosted.org/packages/4b/32/e0f13a1c5b0f8572d0ec6ae2f6c677b7991fafd95da523159c19eff0696a/contourpy-1.3.3-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:4debd64f124ca62069f313a9cb86656ff087786016d76927ae2cf37846b006c9", size = 362859, upload-time = "2025-07-26T12:01:46.519Z" }, + { url = "https://files.pythonhosted.org/packages/33/71/e2a7945b7de4e58af42d708a219f3b2f4cff7386e6b6ab0a0fa0033c49a9/contourpy-1.3.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:a15459b0f4615b00bbd1e91f1b9e19b7e63aea7483d03d804186f278c0af2659", size = 1332062, upload-time = "2025-07-26T12:01:48.964Z" }, + { url = "https://files.pythonhosted.org/packages/12/fc/4e87ac754220ccc0e807284f88e943d6d43b43843614f0a8afa469801db0/contourpy-1.3.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:ca0fdcd73925568ca027e0b17ab07aad764be4706d0a925b89227e447d9737b7", size = 1403932, upload-time = "2025-07-26T12:01:51.979Z" }, + { url = "https://files.pythonhosted.org/packages/a6/2e/adc197a37443f934594112222ac1aa7dc9a98faf9c3842884df9a9d8751d/contourpy-1.3.3-cp313-cp313-win32.whl", hash = "sha256:b20c7c9a3bf701366556e1b1984ed2d0cedf999903c51311417cf5f591d8c78d", size = 185024, upload-time = "2025-07-26T12:01:53.245Z" }, + { url = "https://files.pythonhosted.org/packages/18/0b/0098c214843213759692cc638fce7de5c289200a830e5035d1791d7a2338/contourpy-1.3.3-cp313-cp313-win_amd64.whl", hash = "sha256:1cadd8b8969f060ba45ed7c1b714fe69185812ab43bd6b86a9123fe8f99c3263", size = 226578, upload-time = "2025-07-26T12:01:54.422Z" }, + { url = "https://files.pythonhosted.org/packages/8a/9a/2f6024a0c5995243cd63afdeb3651c984f0d2bc727fd98066d40e141ad73/contourpy-1.3.3-cp313-cp313-win_arm64.whl", hash = "sha256:fd914713266421b7536de2bfa8181aa8c699432b6763a0ea64195ebe28bff6a9", size = 193524, upload-time = "2025-07-26T12:01:55.73Z" }, + { url = "https://files.pythonhosted.org/packages/c0/b3/f8a1a86bd3298513f500e5b1f5fd92b69896449f6cab6a146a5d52715479/contourpy-1.3.3-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:88df9880d507169449d434c293467418b9f6cbe82edd19284aa0409e7fdb933d", size = 306730, upload-time = "2025-07-26T12:01:57.051Z" }, + { url = "https://files.pythonhosted.org/packages/3f/11/4780db94ae62fc0c2053909b65dc3246bd7cecfc4f8a20d957ad43aa4ad8/contourpy-1.3.3-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:d06bb1f751ba5d417047db62bca3c8fde202b8c11fb50742ab3ab962c81e8216", size = 287897, upload-time = "2025-07-26T12:01:58.663Z" }, + { url = "https://files.pythonhosted.org/packages/ae/15/e59f5f3ffdd6f3d4daa3e47114c53daabcb18574a26c21f03dc9e4e42ff0/contourpy-1.3.3-cp313-cp313t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e4e6b05a45525357e382909a4c1600444e2a45b4795163d3b22669285591c1ae", size = 326751, upload-time = "2025-07-26T12:02:00.343Z" }, + { url = "https://files.pythonhosted.org/packages/0f/81/03b45cfad088e4770b1dcf72ea78d3802d04200009fb364d18a493857210/contourpy-1.3.3-cp313-cp313t-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:ab3074b48c4e2cf1a960e6bbeb7f04566bf36b1861d5c9d4d8ac04b82e38ba20", size = 375486, upload-time = "2025-07-26T12:02:02.128Z" }, + { url = "https://files.pythonhosted.org/packages/0c/ba/49923366492ffbdd4486e970d421b289a670ae8cf539c1ea9a09822b371a/contourpy-1.3.3-cp313-cp313t-manylinux_2_26_s390x.manylinux_2_28_s390x.whl", hash = "sha256:6c3d53c796f8647d6deb1abe867daeb66dcc8a97e8455efa729516b997b8ed99", size = 388106, upload-time = "2025-07-26T12:02:03.615Z" }, + { url = "https://files.pythonhosted.org/packages/9f/52/5b00ea89525f8f143651f9f03a0df371d3cbd2fccd21ca9b768c7a6500c2/contourpy-1.3.3-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:50ed930df7289ff2a8d7afeb9603f8289e5704755c7e5c3bbd929c90c817164b", size = 352548, upload-time = "2025-07-26T12:02:05.165Z" }, + { url = "https://files.pythonhosted.org/packages/32/1d/a209ec1a3a3452d490f6b14dd92e72280c99ae3d1e73da74f8277d4ee08f/contourpy-1.3.3-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:4feffb6537d64b84877da813a5c30f1422ea5739566abf0bd18065ac040e120a", size = 1322297, upload-time = "2025-07-26T12:02:07.379Z" }, + { url = "https://files.pythonhosted.org/packages/bc/9e/46f0e8ebdd884ca0e8877e46a3f4e633f6c9c8c4f3f6e72be3fe075994aa/contourpy-1.3.3-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:2b7e9480ffe2b0cd2e787e4df64270e3a0440d9db8dc823312e2c940c167df7e", size = 1391023, upload-time = "2025-07-26T12:02:10.171Z" }, + { url = "https://files.pythonhosted.org/packages/b9/70/f308384a3ae9cd2209e0849f33c913f658d3326900d0ff5d378d6a1422d2/contourpy-1.3.3-cp313-cp313t-win32.whl", hash = "sha256:283edd842a01e3dcd435b1c5116798d661378d83d36d337b8dde1d16a5fc9ba3", size = 196157, upload-time = "2025-07-26T12:02:11.488Z" }, + { url = "https://files.pythonhosted.org/packages/b2/dd/880f890a6663b84d9e34a6f88cded89d78f0091e0045a284427cb6b18521/contourpy-1.3.3-cp313-cp313t-win_amd64.whl", hash = "sha256:87acf5963fc2b34825e5b6b048f40e3635dd547f590b04d2ab317c2619ef7ae8", size = 240570, upload-time = "2025-07-26T12:02:12.754Z" }, + { url = "https://files.pythonhosted.org/packages/80/99/2adc7d8ffead633234817ef8e9a87115c8a11927a94478f6bb3d3f4d4f7d/contourpy-1.3.3-cp313-cp313t-win_arm64.whl", hash = "sha256:3c30273eb2a55024ff31ba7d052dde990d7d8e5450f4bbb6e913558b3d6c2301", size = 199713, upload-time = "2025-07-26T12:02:14.4Z" }, + { url = "https://files.pythonhosted.org/packages/72/8b/4546f3ab60f78c514ffb7d01a0bd743f90de36f0019d1be84d0a708a580a/contourpy-1.3.3-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:fde6c716d51c04b1c25d0b90364d0be954624a0ee9d60e23e850e8d48353d07a", size = 292189, upload-time = "2025-07-26T12:02:16.095Z" }, + { url = "https://files.pythonhosted.org/packages/fd/e1/3542a9cb596cadd76fcef413f19c79216e002623158befe6daa03dbfa88c/contourpy-1.3.3-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:cbedb772ed74ff5be440fa8eee9bd49f64f6e3fc09436d9c7d8f1c287b121d77", size = 273251, upload-time = "2025-07-26T12:02:17.524Z" }, + { url = "https://files.pythonhosted.org/packages/b1/71/f93e1e9471d189f79d0ce2497007731c1e6bf9ef6d1d61b911430c3db4e5/contourpy-1.3.3-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:22e9b1bd7a9b1d652cd77388465dc358dafcd2e217d35552424aa4f996f524f5", size = 335810, upload-time = "2025-07-26T12:02:18.9Z" }, + { url = "https://files.pythonhosted.org/packages/91/f9/e35f4c1c93f9275d4e38681a80506b5510e9327350c51f8d4a5a724d178c/contourpy-1.3.3-cp314-cp314-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:a22738912262aa3e254e4f3cb079a95a67132fc5a063890e224393596902f5a4", size = 382871, upload-time = "2025-07-26T12:02:20.418Z" }, + { url = "https://files.pythonhosted.org/packages/b5/71/47b512f936f66a0a900d81c396a7e60d73419868fba959c61efed7a8ab46/contourpy-1.3.3-cp314-cp314-manylinux_2_26_s390x.manylinux_2_28_s390x.whl", hash = "sha256:afe5a512f31ee6bd7d0dda52ec9864c984ca3d66664444f2d72e0dc4eb832e36", size = 386264, upload-time = "2025-07-26T12:02:21.916Z" }, + { url = "https://files.pythonhosted.org/packages/04/5f/9ff93450ba96b09c7c2b3f81c94de31c89f92292f1380261bd7195bea4ea/contourpy-1.3.3-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:f64836de09927cba6f79dcd00fdd7d5329f3fccc633468507079c829ca4db4e3", size = 363819, upload-time = "2025-07-26T12:02:23.759Z" }, + { url = "https://files.pythonhosted.org/packages/3e/a6/0b185d4cc480ee494945cde102cb0149ae830b5fa17bf855b95f2e70ad13/contourpy-1.3.3-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:1fd43c3be4c8e5fd6e4f2baeae35ae18176cf2e5cced681cca908addf1cdd53b", size = 1333650, upload-time = "2025-07-26T12:02:26.181Z" }, + { url = "https://files.pythonhosted.org/packages/43/d7/afdc95580ca56f30fbcd3060250f66cedbde69b4547028863abd8aa3b47e/contourpy-1.3.3-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:6afc576f7b33cf00996e5c1102dc2a8f7cc89e39c0b55df93a0b78c1bd992b36", size = 1404833, upload-time = "2025-07-26T12:02:28.782Z" }, + { url = "https://files.pythonhosted.org/packages/e2/e2/366af18a6d386f41132a48f033cbd2102e9b0cf6345d35ff0826cd984566/contourpy-1.3.3-cp314-cp314-win32.whl", hash = "sha256:66c8a43a4f7b8df8b71ee1840e4211a3c8d93b214b213f590e18a1beca458f7d", size = 189692, upload-time = "2025-07-26T12:02:30.128Z" }, + { url = "https://files.pythonhosted.org/packages/7d/c2/57f54b03d0f22d4044b8afb9ca0e184f8b1afd57b4f735c2fa70883dc601/contourpy-1.3.3-cp314-cp314-win_amd64.whl", hash = "sha256:cf9022ef053f2694e31d630feaacb21ea24224be1c3ad0520b13d844274614fd", size = 232424, upload-time = "2025-07-26T12:02:31.395Z" }, + { url = "https://files.pythonhosted.org/packages/18/79/a9416650df9b525737ab521aa181ccc42d56016d2123ddcb7b58e926a42c/contourpy-1.3.3-cp314-cp314-win_arm64.whl", hash = "sha256:95b181891b4c71de4bb404c6621e7e2390745f887f2a026b2d99e92c17892339", size = 198300, upload-time = "2025-07-26T12:02:32.956Z" }, + { url = "https://files.pythonhosted.org/packages/1f/42/38c159a7d0f2b7b9c04c64ab317042bb6952b713ba875c1681529a2932fe/contourpy-1.3.3-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:33c82d0138c0a062380332c861387650c82e4cf1747aaa6938b9b6516762e772", size = 306769, upload-time = "2025-07-26T12:02:34.2Z" }, + { url = "https://files.pythonhosted.org/packages/c3/6c/26a8205f24bca10974e77460de68d3d7c63e282e23782f1239f226fcae6f/contourpy-1.3.3-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:ea37e7b45949df430fe649e5de8351c423430046a2af20b1c1961cae3afcda77", size = 287892, upload-time = "2025-07-26T12:02:35.807Z" }, + { url = "https://files.pythonhosted.org/packages/66/06/8a475c8ab718ebfd7925661747dbb3c3ee9c82ac834ccb3570be49d129f4/contourpy-1.3.3-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d304906ecc71672e9c89e87c4675dc5c2645e1f4269a5063b99b0bb29f232d13", size = 326748, upload-time = "2025-07-26T12:02:37.193Z" }, + { url = "https://files.pythonhosted.org/packages/b4/a3/c5ca9f010a44c223f098fccd8b158bb1cb287378a31ac141f04730dc49be/contourpy-1.3.3-cp314-cp314t-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:ca658cd1a680a5c9ea96dc61cdbae1e85c8f25849843aa799dfd3cb370ad4fbe", size = 375554, upload-time = "2025-07-26T12:02:38.894Z" }, + { url = "https://files.pythonhosted.org/packages/80/5b/68bd33ae63fac658a4145088c1e894405e07584a316738710b636c6d0333/contourpy-1.3.3-cp314-cp314t-manylinux_2_26_s390x.manylinux_2_28_s390x.whl", hash = "sha256:ab2fd90904c503739a75b7c8c5c01160130ba67944a7b77bbf36ef8054576e7f", size = 388118, upload-time = "2025-07-26T12:02:40.642Z" }, + { url = "https://files.pythonhosted.org/packages/40/52/4c285a6435940ae25d7410a6c36bda5145839bc3f0beb20c707cda18b9d2/contourpy-1.3.3-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b7301b89040075c30e5768810bc96a8e8d78085b47d8be6e4c3f5a0b4ed478a0", size = 352555, upload-time = "2025-07-26T12:02:42.25Z" }, + { url = "https://files.pythonhosted.org/packages/24/ee/3e81e1dd174f5c7fefe50e85d0892de05ca4e26ef1c9a59c2a57e43b865a/contourpy-1.3.3-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:2a2a8b627d5cc6b7c41a4beff6c5ad5eb848c88255fda4a8745f7e901b32d8e4", size = 1322295, upload-time = "2025-07-26T12:02:44.668Z" }, + { url = "https://files.pythonhosted.org/packages/3c/b2/6d913d4d04e14379de429057cd169e5e00f6c2af3bb13e1710bcbdb5da12/contourpy-1.3.3-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:fd6ec6be509c787f1caf6b247f0b1ca598bef13f4ddeaa126b7658215529ba0f", size = 1391027, upload-time = "2025-07-26T12:02:47.09Z" }, + { url = "https://files.pythonhosted.org/packages/93/8a/68a4ec5c55a2971213d29a9374913f7e9f18581945a7a31d1a39b5d2dfe5/contourpy-1.3.3-cp314-cp314t-win32.whl", hash = "sha256:e74a9a0f5e3fff48fb5a7f2fd2b9b70a3fe014a67522f79b7cca4c0c7e43c9ae", size = 202428, upload-time = "2025-07-26T12:02:48.691Z" }, + { url = "https://files.pythonhosted.org/packages/fa/96/fd9f641ffedc4fa3ace923af73b9d07e869496c9cc7a459103e6e978992f/contourpy-1.3.3-cp314-cp314t-win_amd64.whl", hash = "sha256:13b68d6a62db8eafaebb8039218921399baf6e47bf85006fd8529f2a08ef33fc", size = 250331, upload-time = "2025-07-26T12:02:50.137Z" }, + { url = "https://files.pythonhosted.org/packages/ae/8c/469afb6465b853afff216f9528ffda78a915ff880ed58813ba4faf4ba0b6/contourpy-1.3.3-cp314-cp314t-win_arm64.whl", hash = "sha256:b7448cb5a725bb1e35ce88771b86fba35ef418952474492cf7c764059933ff8b", size = 203831, upload-time = "2025-07-26T12:02:51.449Z" }, + { url = "https://files.pythonhosted.org/packages/a5/29/8dcfe16f0107943fa92388c23f6e05cff0ba58058c4c95b00280d4c75a14/contourpy-1.3.3-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:cd5dfcaeb10f7b7f9dc8941717c6c2ade08f587be2226222c12b25f0483ed497", size = 278809, upload-time = "2025-07-26T12:02:52.74Z" }, + { url = "https://files.pythonhosted.org/packages/85/a9/8b37ef4f7dafeb335daee3c8254645ef5725be4d9c6aa70b50ec46ef2f7e/contourpy-1.3.3-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:0c1fc238306b35f246d61a1d416a627348b5cf0648648a031e14bb8705fcdfe8", size = 261593, upload-time = "2025-07-26T12:02:54.037Z" }, + { url = "https://files.pythonhosted.org/packages/0a/59/ebfb8c677c75605cc27f7122c90313fd2f375ff3c8d19a1694bda74aaa63/contourpy-1.3.3-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:70f9aad7de812d6541d29d2bbf8feb22ff7e1c299523db288004e3157ff4674e", size = 302202, upload-time = "2025-07-26T12:02:55.947Z" }, + { url = "https://files.pythonhosted.org/packages/3c/37/21972a15834d90bfbfb009b9d004779bd5a07a0ec0234e5ba8f64d5736f4/contourpy-1.3.3-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:5ed3657edf08512fc3fe81b510e35c2012fbd3081d2e26160f27ca28affec989", size = 329207, upload-time = "2025-07-26T12:02:57.468Z" }, + { url = "https://files.pythonhosted.org/packages/0c/58/bd257695f39d05594ca4ad60df5bcb7e32247f9951fd09a9b8edb82d1daa/contourpy-1.3.3-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:3d1a3799d62d45c18bafd41c5fa05120b96a28079f2393af559b843d1a966a77", size = 225315, upload-time = "2025-07-26T12:02:58.801Z" }, ] [[package]] name = "coverage" -version = "7.8.2" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/ba/07/998afa4a0ecdf9b1981ae05415dad2d4e7716e1b1f00abbd91691ac09ac9/coverage-7.8.2.tar.gz", hash = "sha256:a886d531373a1f6ff9fad2a2ba4a045b68467b779ae729ee0b3b10ac20033b27", size = 812759, upload-time = "2025-05-23T11:39:57.856Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/26/6b/7dd06399a5c0b81007e3a6af0395cd60e6a30f959f8d407d3ee04642e896/coverage-7.8.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:bd8ec21e1443fd7a447881332f7ce9d35b8fbd2849e761bb290b584535636b0a", size = 211573, upload-time = "2025-05-23T11:37:47.207Z" }, - { url = "https://files.pythonhosted.org/packages/f0/df/2b24090820a0bac1412955fb1a4dade6bc3b8dcef7b899c277ffaf16916d/coverage-7.8.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:4c26c2396674816deaeae7ded0e2b42c26537280f8fe313335858ffff35019be", size = 212006, upload-time = "2025-05-23T11:37:50.289Z" }, - { url = "https://files.pythonhosted.org/packages/c5/c4/e4e3b998e116625562a872a342419652fa6ca73f464d9faf9f52f1aff427/coverage-7.8.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1aec326ed237e5880bfe69ad41616d333712c7937bcefc1343145e972938f9b3", size = 241128, upload-time = "2025-05-23T11:37:52.229Z" }, - { url = "https://files.pythonhosted.org/packages/b1/67/b28904afea3e87a895da850ba587439a61699bf4b73d04d0dfd99bbd33b4/coverage-7.8.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5e818796f71702d7a13e50c70de2a1924f729228580bcba1607cccf32eea46e6", size = 239026, upload-time = "2025-05-23T11:37:53.846Z" }, - { url = "https://files.pythonhosted.org/packages/8c/0f/47bf7c5630d81bc2cd52b9e13043685dbb7c79372a7f5857279cc442b37c/coverage-7.8.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:546e537d9e24efc765c9c891328f30f826e3e4808e31f5d0f87c4ba12bbd1622", size = 240172, upload-time = "2025-05-23T11:37:55.711Z" }, - { url = "https://files.pythonhosted.org/packages/ba/38/af3eb9d36d85abc881f5aaecf8209383dbe0fa4cac2d804c55d05c51cb04/coverage-7.8.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:ab9b09a2349f58e73f8ebc06fac546dd623e23b063e5398343c5270072e3201c", size = 240086, upload-time = "2025-05-23T11:37:57.724Z" }, - { url = "https://files.pythonhosted.org/packages/9e/64/c40c27c2573adeba0fe16faf39a8aa57368a1f2148865d6bb24c67eadb41/coverage-7.8.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:fd51355ab8a372d89fb0e6a31719e825cf8df8b6724bee942fb5b92c3f016ba3", size = 238792, upload-time = "2025-05-23T11:37:59.737Z" }, - { url = "https://files.pythonhosted.org/packages/8e/ab/b7c85146f15457671c1412afca7c25a5696d7625e7158002aa017e2d7e3c/coverage-7.8.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:0774df1e093acb6c9e4d58bce7f86656aeed6c132a16e2337692c12786b32404", size = 239096, upload-time = "2025-05-23T11:38:01.693Z" }, - { url = "https://files.pythonhosted.org/packages/d3/50/9446dad1310905fb1dc284d60d4320a5b25d4e3e33f9ea08b8d36e244e23/coverage-7.8.2-cp310-cp310-win32.whl", hash = "sha256:00f2e2f2e37f47e5f54423aeefd6c32a7dbcedc033fcd3928a4f4948e8b96af7", size = 214144, upload-time = "2025-05-23T11:38:03.68Z" }, - { url = "https://files.pythonhosted.org/packages/23/ed/792e66ad7b8b0df757db8d47af0c23659cdb5a65ef7ace8b111cacdbee89/coverage-7.8.2-cp310-cp310-win_amd64.whl", hash = "sha256:145b07bea229821d51811bf15eeab346c236d523838eda395ea969d120d13347", size = 215043, upload-time = "2025-05-23T11:38:05.217Z" }, - { url = "https://files.pythonhosted.org/packages/6a/4d/1ff618ee9f134d0de5cc1661582c21a65e06823f41caf801aadf18811a8e/coverage-7.8.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b99058eef42e6a8dcd135afb068b3d53aff3921ce699e127602efff9956457a9", size = 211692, upload-time = "2025-05-23T11:38:08.485Z" }, - { url = "https://files.pythonhosted.org/packages/96/fa/c3c1b476de96f2bc7a8ca01a9f1fcb51c01c6b60a9d2c3e66194b2bdb4af/coverage-7.8.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:5feb7f2c3e6ea94d3b877def0270dff0947b8d8c04cfa34a17be0a4dc1836879", size = 212115, upload-time = "2025-05-23T11:38:09.989Z" }, - { url = "https://files.pythonhosted.org/packages/f7/c2/5414c5a1b286c0f3881ae5adb49be1854ac5b7e99011501f81c8c1453065/coverage-7.8.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:670a13249b957bb9050fab12d86acef7bf8f6a879b9d1a883799276e0d4c674a", size = 244740, upload-time = "2025-05-23T11:38:11.947Z" }, - { url = "https://files.pythonhosted.org/packages/cd/46/1ae01912dfb06a642ef3dd9cf38ed4996fda8fe884dab8952da616f81a2b/coverage-7.8.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0bdc8bf760459a4a4187b452213e04d039990211f98644c7292adf1e471162b5", size = 242429, upload-time = "2025-05-23T11:38:13.955Z" }, - { url = "https://files.pythonhosted.org/packages/06/58/38c676aec594bfe2a87c7683942e5a30224791d8df99bcc8439fde140377/coverage-7.8.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:07a989c867986c2a75f158f03fdb413128aad29aca9d4dbce5fc755672d96f11", size = 244218, upload-time = "2025-05-23T11:38:15.631Z" }, - { url = "https://files.pythonhosted.org/packages/80/0c/95b1023e881ce45006d9abc250f76c6cdab7134a1c182d9713878dfefcb2/coverage-7.8.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:2db10dedeb619a771ef0e2949ccba7b75e33905de959c2643a4607bef2f3fb3a", size = 243865, upload-time = "2025-05-23T11:38:17.622Z" }, - { url = "https://files.pythonhosted.org/packages/57/37/0ae95989285a39e0839c959fe854a3ae46c06610439350d1ab860bf020ac/coverage-7.8.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:e6ea7dba4e92926b7b5f0990634b78ea02f208d04af520c73a7c876d5a8d36cb", size = 242038, upload-time = "2025-05-23T11:38:19.966Z" }, - { url = "https://files.pythonhosted.org/packages/4d/82/40e55f7c0eb5e97cc62cbd9d0746fd24e8caf57be5a408b87529416e0c70/coverage-7.8.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:ef2f22795a7aca99fc3c84393a55a53dd18ab8c93fb431004e4d8f0774150f54", size = 242567, upload-time = "2025-05-23T11:38:21.912Z" }, - { url = "https://files.pythonhosted.org/packages/f9/35/66a51adc273433a253989f0d9cc7aa6bcdb4855382cf0858200afe578861/coverage-7.8.2-cp311-cp311-win32.whl", hash = "sha256:641988828bc18a6368fe72355df5f1703e44411adbe49bba5644b941ce6f2e3a", size = 214194, upload-time = "2025-05-23T11:38:23.571Z" }, - { url = "https://files.pythonhosted.org/packages/f6/8f/a543121f9f5f150eae092b08428cb4e6b6d2d134152c3357b77659d2a605/coverage-7.8.2-cp311-cp311-win_amd64.whl", hash = "sha256:8ab4a51cb39dc1933ba627e0875046d150e88478dbe22ce145a68393e9652975", size = 215109, upload-time = "2025-05-23T11:38:25.137Z" }, - { url = "https://files.pythonhosted.org/packages/77/65/6cc84b68d4f35186463cd7ab1da1169e9abb59870c0f6a57ea6aba95f861/coverage-7.8.2-cp311-cp311-win_arm64.whl", hash = "sha256:8966a821e2083c74d88cca5b7dcccc0a3a888a596a04c0b9668a891de3a0cc53", size = 213521, upload-time = "2025-05-23T11:38:27.123Z" }, - { url = "https://files.pythonhosted.org/packages/8d/2a/1da1ada2e3044fcd4a3254fb3576e160b8fe5b36d705c8a31f793423f763/coverage-7.8.2-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:e2f6fe3654468d061942591aef56686131335b7a8325684eda85dacdf311356c", size = 211876, upload-time = "2025-05-23T11:38:29.01Z" }, - { url = "https://files.pythonhosted.org/packages/70/e9/3d715ffd5b6b17a8be80cd14a8917a002530a99943cc1939ad5bb2aa74b9/coverage-7.8.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:76090fab50610798cc05241bf83b603477c40ee87acd358b66196ab0ca44ffa1", size = 212130, upload-time = "2025-05-23T11:38:30.675Z" }, - { url = "https://files.pythonhosted.org/packages/a0/02/fdce62bb3c21649abfd91fbdcf041fb99be0d728ff00f3f9d54d97ed683e/coverage-7.8.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2bd0a0a5054be160777a7920b731a0570284db5142abaaf81bcbb282b8d99279", size = 246176, upload-time = "2025-05-23T11:38:32.395Z" }, - { url = "https://files.pythonhosted.org/packages/a7/52/decbbed61e03b6ffe85cd0fea360a5e04a5a98a7423f292aae62423b8557/coverage-7.8.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:da23ce9a3d356d0affe9c7036030b5c8f14556bd970c9b224f9c8205505e3b99", size = 243068, upload-time = "2025-05-23T11:38:33.989Z" }, - { url = "https://files.pythonhosted.org/packages/38/6c/d0e9c0cce18faef79a52778219a3c6ee8e336437da8eddd4ab3dbd8fadff/coverage-7.8.2-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c9392773cffeb8d7e042a7b15b82a414011e9d2b5fdbbd3f7e6a6b17d5e21b20", size = 245328, upload-time = "2025-05-23T11:38:35.568Z" }, - { url = "https://files.pythonhosted.org/packages/f0/70/f703b553a2f6b6c70568c7e398ed0789d47f953d67fbba36a327714a7bca/coverage-7.8.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:876cbfd0b09ce09d81585d266c07a32657beb3eaec896f39484b631555be0fe2", size = 245099, upload-time = "2025-05-23T11:38:37.627Z" }, - { url = "https://files.pythonhosted.org/packages/ec/fb/4cbb370dedae78460c3aacbdad9d249e853f3bc4ce5ff0e02b1983d03044/coverage-7.8.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:3da9b771c98977a13fbc3830f6caa85cae6c9c83911d24cb2d218e9394259c57", size = 243314, upload-time = "2025-05-23T11:38:39.238Z" }, - { url = "https://files.pythonhosted.org/packages/39/9f/1afbb2cb9c8699b8bc38afdce00a3b4644904e6a38c7bf9005386c9305ec/coverage-7.8.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:9a990f6510b3292686713bfef26d0049cd63b9c7bb17e0864f133cbfd2e6167f", size = 244489, upload-time = "2025-05-23T11:38:40.845Z" }, - { url = "https://files.pythonhosted.org/packages/79/fa/f3e7ec7d220bff14aba7a4786ae47043770cbdceeea1803083059c878837/coverage-7.8.2-cp312-cp312-win32.whl", hash = "sha256:bf8111cddd0f2b54d34e96613e7fbdd59a673f0cf5574b61134ae75b6f5a33b8", size = 214366, upload-time = "2025-05-23T11:38:43.551Z" }, - { url = "https://files.pythonhosted.org/packages/54/aa/9cbeade19b7e8e853e7ffc261df885d66bf3a782c71cba06c17df271f9e6/coverage-7.8.2-cp312-cp312-win_amd64.whl", hash = "sha256:86a323a275e9e44cdf228af9b71c5030861d4d2610886ab920d9945672a81223", size = 215165, upload-time = "2025-05-23T11:38:45.148Z" }, - { url = "https://files.pythonhosted.org/packages/c4/73/e2528bf1237d2448f882bbebaec5c3500ef07301816c5c63464b9da4d88a/coverage-7.8.2-cp312-cp312-win_arm64.whl", hash = "sha256:820157de3a589e992689ffcda8639fbabb313b323d26388d02e154164c57b07f", size = 213548, upload-time = "2025-05-23T11:38:46.74Z" }, - { url = "https://files.pythonhosted.org/packages/1a/93/eb6400a745ad3b265bac36e8077fdffcf0268bdbbb6c02b7220b624c9b31/coverage-7.8.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:ea561010914ec1c26ab4188aef8b1567272ef6de096312716f90e5baa79ef8ca", size = 211898, upload-time = "2025-05-23T11:38:49.066Z" }, - { url = "https://files.pythonhosted.org/packages/1b/7c/bdbf113f92683024406a1cd226a199e4200a2001fc85d6a6e7e299e60253/coverage-7.8.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:cb86337a4fcdd0e598ff2caeb513ac604d2f3da6d53df2c8e368e07ee38e277d", size = 212171, upload-time = "2025-05-23T11:38:51.207Z" }, - { url = "https://files.pythonhosted.org/packages/91/22/594513f9541a6b88eb0dba4d5da7d71596dadef6b17a12dc2c0e859818a9/coverage-7.8.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:26a4636ddb666971345541b59899e969f3b301143dd86b0ddbb570bd591f1e85", size = 245564, upload-time = "2025-05-23T11:38:52.857Z" }, - { url = "https://files.pythonhosted.org/packages/1f/f4/2860fd6abeebd9f2efcfe0fd376226938f22afc80c1943f363cd3c28421f/coverage-7.8.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5040536cf9b13fb033f76bcb5e1e5cb3b57c4807fef37db9e0ed129c6a094257", size = 242719, upload-time = "2025-05-23T11:38:54.529Z" }, - { url = "https://files.pythonhosted.org/packages/89/60/f5f50f61b6332451520e6cdc2401700c48310c64bc2dd34027a47d6ab4ca/coverage-7.8.2-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dc67994df9bcd7e0150a47ef41278b9e0a0ea187caba72414b71dc590b99a108", size = 244634, upload-time = "2025-05-23T11:38:57.326Z" }, - { url = "https://files.pythonhosted.org/packages/3b/70/7f4e919039ab7d944276c446b603eea84da29ebcf20984fb1fdf6e602028/coverage-7.8.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:6e6c86888fd076d9e0fe848af0a2142bf606044dc5ceee0aa9eddb56e26895a0", size = 244824, upload-time = "2025-05-23T11:38:59.421Z" }, - { url = "https://files.pythonhosted.org/packages/26/45/36297a4c0cea4de2b2c442fe32f60c3991056c59cdc3cdd5346fbb995c97/coverage-7.8.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:684ca9f58119b8e26bef860db33524ae0365601492e86ba0b71d513f525e7050", size = 242872, upload-time = "2025-05-23T11:39:01.049Z" }, - { url = "https://files.pythonhosted.org/packages/a4/71/e041f1b9420f7b786b1367fa2a375703889ef376e0d48de9f5723fb35f11/coverage-7.8.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:8165584ddedb49204c4e18da083913bdf6a982bfb558632a79bdaadcdafd0d48", size = 244179, upload-time = "2025-05-23T11:39:02.709Z" }, - { url = "https://files.pythonhosted.org/packages/bd/db/3c2bf49bdc9de76acf2491fc03130c4ffc51469ce2f6889d2640eb563d77/coverage-7.8.2-cp313-cp313-win32.whl", hash = "sha256:34759ee2c65362163699cc917bdb2a54114dd06d19bab860725f94ef45a3d9b7", size = 214393, upload-time = "2025-05-23T11:39:05.457Z" }, - { url = "https://files.pythonhosted.org/packages/c6/dc/947e75d47ebbb4b02d8babb1fad4ad381410d5bc9da7cfca80b7565ef401/coverage-7.8.2-cp313-cp313-win_amd64.whl", hash = "sha256:2f9bc608fbafaee40eb60a9a53dbfb90f53cc66d3d32c2849dc27cf5638a21e3", size = 215194, upload-time = "2025-05-23T11:39:07.171Z" }, - { url = "https://files.pythonhosted.org/packages/90/31/a980f7df8a37eaf0dc60f932507fda9656b3a03f0abf188474a0ea188d6d/coverage-7.8.2-cp313-cp313-win_arm64.whl", hash = "sha256:9fe449ee461a3b0c7105690419d0b0aba1232f4ff6d120a9e241e58a556733f7", size = 213580, upload-time = "2025-05-23T11:39:08.862Z" }, - { url = "https://files.pythonhosted.org/packages/8a/6a/25a37dd90f6c95f59355629417ebcb74e1c34e38bb1eddf6ca9b38b0fc53/coverage-7.8.2-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:8369a7c8ef66bded2b6484053749ff220dbf83cba84f3398c84c51a6f748a008", size = 212734, upload-time = "2025-05-23T11:39:11.109Z" }, - { url = "https://files.pythonhosted.org/packages/36/8b/3a728b3118988725f40950931abb09cd7f43b3c740f4640a59f1db60e372/coverage-7.8.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:159b81df53a5fcbc7d45dae3adad554fdbde9829a994e15227b3f9d816d00b36", size = 212959, upload-time = "2025-05-23T11:39:12.751Z" }, - { url = "https://files.pythonhosted.org/packages/53/3c/212d94e6add3a3c3f412d664aee452045ca17a066def8b9421673e9482c4/coverage-7.8.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e6fcbbd35a96192d042c691c9e0c49ef54bd7ed865846a3c9d624c30bb67ce46", size = 257024, upload-time = "2025-05-23T11:39:15.569Z" }, - { url = "https://files.pythonhosted.org/packages/a4/40/afc03f0883b1e51bbe804707aae62e29c4e8c8bbc365c75e3e4ddeee9ead/coverage-7.8.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:05364b9cc82f138cc86128dc4e2e1251c2981a2218bfcd556fe6b0fbaa3501be", size = 252867, upload-time = "2025-05-23T11:39:17.64Z" }, - { url = "https://files.pythonhosted.org/packages/18/a2/3699190e927b9439c6ded4998941a3c1d6fa99e14cb28d8536729537e307/coverage-7.8.2-cp313-cp313t-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:46d532db4e5ff3979ce47d18e2fe8ecad283eeb7367726da0e5ef88e4fe64740", size = 255096, upload-time = "2025-05-23T11:39:19.328Z" }, - { url = "https://files.pythonhosted.org/packages/b4/06/16e3598b9466456b718eb3e789457d1a5b8bfb22e23b6e8bbc307df5daf0/coverage-7.8.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:4000a31c34932e7e4fa0381a3d6deb43dc0c8f458e3e7ea6502e6238e10be625", size = 256276, upload-time = "2025-05-23T11:39:21.077Z" }, - { url = "https://files.pythonhosted.org/packages/a7/d5/4b5a120d5d0223050a53d2783c049c311eea1709fa9de12d1c358e18b707/coverage-7.8.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:43ff5033d657cd51f83015c3b7a443287250dc14e69910577c3e03bd2e06f27b", size = 254478, upload-time = "2025-05-23T11:39:22.838Z" }, - { url = "https://files.pythonhosted.org/packages/ba/85/f9ecdb910ecdb282b121bfcaa32fa8ee8cbd7699f83330ee13ff9bbf1a85/coverage-7.8.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:94316e13f0981cbbba132c1f9f365cac1d26716aaac130866ca812006f662199", size = 255255, upload-time = "2025-05-23T11:39:24.644Z" }, - { url = "https://files.pythonhosted.org/packages/50/63/2d624ac7d7ccd4ebbd3c6a9eba9d7fc4491a1226071360d59dd84928ccb2/coverage-7.8.2-cp313-cp313t-win32.whl", hash = "sha256:3f5673888d3676d0a745c3d0e16da338c5eea300cb1f4ada9c872981265e76d8", size = 215109, upload-time = "2025-05-23T11:39:26.722Z" }, - { url = "https://files.pythonhosted.org/packages/22/5e/7053b71462e970e869111c1853afd642212568a350eba796deefdfbd0770/coverage-7.8.2-cp313-cp313t-win_amd64.whl", hash = "sha256:2c08b05ee8d7861e45dc5a2cc4195c8c66dca5ac613144eb6ebeaff2d502e73d", size = 216268, upload-time = "2025-05-23T11:39:28.429Z" }, - { url = "https://files.pythonhosted.org/packages/07/69/afa41aa34147655543dbe96994f8a246daf94b361ccf5edfd5df62ce066a/coverage-7.8.2-cp313-cp313t-win_arm64.whl", hash = "sha256:1e1448bb72b387755e1ff3ef1268a06617afd94188164960dba8d0245a46004b", size = 214071, upload-time = "2025-05-23T11:39:30.55Z" }, - { url = "https://files.pythonhosted.org/packages/69/2f/572b29496d8234e4a7773200dd835a0d32d9e171f2d974f3fe04a9dbc271/coverage-7.8.2-pp39.pp310.pp311-none-any.whl", hash = "sha256:ec455eedf3ba0bbdf8f5a570012617eb305c63cb9f03428d39bf544cb2b94837", size = 203636, upload-time = "2025-05-23T11:39:52.002Z" }, - { url = "https://files.pythonhosted.org/packages/a0/1a/0b9c32220ad694d66062f571cc5cedfa9997b64a591e8a500bb63de1bd40/coverage-7.8.2-py3-none-any.whl", hash = "sha256:726f32ee3713f7359696331a18daf0c3b3a70bb0ae71141b9d3c52be7c595e32", size = 203623, upload-time = "2025-05-23T11:39:53.846Z" }, +version = "7.12.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/89/26/4a96807b193b011588099c3b5c89fbb05294e5b90e71018e065465f34eb6/coverage-7.12.0.tar.gz", hash = "sha256:fc11e0a4e372cb5f282f16ef90d4a585034050ccda536451901abfb19a57f40c", size = 819341, upload-time = "2025-11-18T13:34:20.766Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/5a/0c/0dfe7f0487477d96432e4815537263363fb6dd7289743a796e8e51eabdf2/coverage-7.12.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:aa124a3683d2af98bd9d9c2bfa7a5076ca7e5ab09fdb96b81fa7d89376ae928f", size = 217535, upload-time = "2025-11-18T13:32:08.812Z" }, + { url = "https://files.pythonhosted.org/packages/9b/f5/f9a4a053a5bbff023d3bec259faac8f11a1e5a6479c2ccf586f910d8dac7/coverage-7.12.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:d93fbf446c31c0140208dcd07c5d882029832e8ed7891a39d6d44bd65f2316c3", size = 218044, upload-time = "2025-11-18T13:32:10.329Z" }, + { url = "https://files.pythonhosted.org/packages/95/c5/84fc3697c1fa10cd8571919bf9693f693b7373278daaf3b73e328d502bc8/coverage-7.12.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:52ca620260bd8cd6027317bdd8b8ba929be1d741764ee765b42c4d79a408601e", size = 248440, upload-time = "2025-11-18T13:32:12.536Z" }, + { url = "https://files.pythonhosted.org/packages/f4/36/2d93fbf6a04670f3874aed397d5a5371948a076e3249244a9e84fb0e02d6/coverage-7.12.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:f3433ffd541380f3a0e423cff0f4926d55b0cc8c1d160fdc3be24a4c03aa65f7", size = 250361, upload-time = "2025-11-18T13:32:13.852Z" }, + { url = "https://files.pythonhosted.org/packages/5d/49/66dc65cc456a6bfc41ea3d0758c4afeaa4068a2b2931bf83be6894cf1058/coverage-7.12.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f7bbb321d4adc9f65e402c677cd1c8e4c2d0105d3ce285b51b4d87f1d5db5245", size = 252472, upload-time = "2025-11-18T13:32:15.068Z" }, + { url = "https://files.pythonhosted.org/packages/35/1f/ebb8a18dffd406db9fcd4b3ae42254aedcaf612470e8712f12041325930f/coverage-7.12.0-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:22a7aade354a72dff3b59c577bfd18d6945c61f97393bc5fb7bd293a4237024b", size = 248592, upload-time = "2025-11-18T13:32:16.328Z" }, + { url = "https://files.pythonhosted.org/packages/da/a8/67f213c06e5ea3b3d4980df7dc344d7fea88240b5fe878a5dcbdfe0e2315/coverage-7.12.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:3ff651dcd36d2fea66877cd4a82de478004c59b849945446acb5baf9379a1b64", size = 250167, upload-time = "2025-11-18T13:32:17.687Z" }, + { url = "https://files.pythonhosted.org/packages/f0/00/e52aef68154164ea40cc8389c120c314c747fe63a04b013a5782e989b77f/coverage-7.12.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:31b8b2e38391a56e3cea39d22a23faaa7c3fc911751756ef6d2621d2a9daf742", size = 248238, upload-time = "2025-11-18T13:32:19.2Z" }, + { url = "https://files.pythonhosted.org/packages/1f/a4/4d88750bcf9d6d66f77865e5a05a20e14db44074c25fd22519777cb69025/coverage-7.12.0-cp311-cp311-musllinux_1_2_riscv64.whl", hash = "sha256:297bc2da28440f5ae51c845a47c8175a4db0553a53827886e4fb25c66633000c", size = 247964, upload-time = "2025-11-18T13:32:21.027Z" }, + { url = "https://files.pythonhosted.org/packages/a7/6b/b74693158899d5b47b0bf6238d2c6722e20ba749f86b74454fac0696bb00/coverage-7.12.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:6ff7651cc01a246908eac162a6a86fc0dbab6de1ad165dfb9a1e2ec660b44984", size = 248862, upload-time = "2025-11-18T13:32:22.304Z" }, + { url = "https://files.pythonhosted.org/packages/18/de/6af6730227ce0e8ade307b1cc4a08e7f51b419a78d02083a86c04ccceb29/coverage-7.12.0-cp311-cp311-win32.whl", hash = "sha256:313672140638b6ddb2c6455ddeda41c6a0b208298034544cfca138978c6baed6", size = 220033, upload-time = "2025-11-18T13:32:23.714Z" }, + { url = "https://files.pythonhosted.org/packages/e2/a1/e7f63021a7c4fe20994359fcdeae43cbef4a4d0ca36a5a1639feeea5d9e1/coverage-7.12.0-cp311-cp311-win_amd64.whl", hash = "sha256:a1783ed5bd0d5938d4435014626568dc7f93e3cb99bc59188cc18857c47aa3c4", size = 220966, upload-time = "2025-11-18T13:32:25.599Z" }, + { url = "https://files.pythonhosted.org/packages/77/e8/deae26453f37c20c3aa0c4433a1e32cdc169bf415cce223a693117aa3ddd/coverage-7.12.0-cp311-cp311-win_arm64.whl", hash = "sha256:4648158fd8dd9381b5847622df1c90ff314efbfc1df4550092ab6013c238a5fc", size = 219637, upload-time = "2025-11-18T13:32:27.265Z" }, + { url = "https://files.pythonhosted.org/packages/02/bf/638c0427c0f0d47638242e2438127f3c8ee3cfc06c7fdeb16778ed47f836/coverage-7.12.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:29644c928772c78512b48e14156b81255000dcfd4817574ff69def189bcb3647", size = 217704, upload-time = "2025-11-18T13:32:28.906Z" }, + { url = "https://files.pythonhosted.org/packages/08/e1/706fae6692a66c2d6b871a608bbde0da6281903fa0e9f53a39ed441da36a/coverage-7.12.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:8638cbb002eaa5d7c8d04da667813ce1067080b9a91099801a0053086e52b736", size = 218064, upload-time = "2025-11-18T13:32:30.161Z" }, + { url = "https://files.pythonhosted.org/packages/a9/8b/eb0231d0540f8af3ffda39720ff43cb91926489d01524e68f60e961366e4/coverage-7.12.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:083631eeff5eb9992c923e14b810a179798bb598e6a0dd60586819fc23be6e60", size = 249560, upload-time = "2025-11-18T13:32:31.835Z" }, + { url = "https://files.pythonhosted.org/packages/e9/a1/67fb52af642e974d159b5b379e4d4c59d0ebe1288677fbd04bbffe665a82/coverage-7.12.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:99d5415c73ca12d558e07776bd957c4222c687b9f1d26fa0e1b57e3598bdcde8", size = 252318, upload-time = "2025-11-18T13:32:33.178Z" }, + { url = "https://files.pythonhosted.org/packages/41/e5/38228f31b2c7665ebf9bdfdddd7a184d56450755c7e43ac721c11a4b8dab/coverage-7.12.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e949ebf60c717c3df63adb4a1a366c096c8d7fd8472608cd09359e1bd48ef59f", size = 253403, upload-time = "2025-11-18T13:32:34.45Z" }, + { url = "https://files.pythonhosted.org/packages/ec/4b/df78e4c8188f9960684267c5a4897836f3f0f20a20c51606ee778a1d9749/coverage-7.12.0-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:6d907ddccbca819afa2cd014bc69983b146cca2735a0b1e6259b2a6c10be1e70", size = 249984, upload-time = "2025-11-18T13:32:35.747Z" }, + { url = "https://files.pythonhosted.org/packages/ba/51/bb163933d195a345c6f63eab9e55743413d064c291b6220df754075c2769/coverage-7.12.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:b1518ecbad4e6173f4c6e6c4a46e49555ea5679bf3feda5edb1b935c7c44e8a0", size = 251339, upload-time = "2025-11-18T13:32:37.352Z" }, + { url = "https://files.pythonhosted.org/packages/15/40/c9b29cdb8412c837cdcbc2cfa054547dd83affe6cbbd4ce4fdb92b6ba7d1/coverage-7.12.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:51777647a749abdf6f6fd8c7cffab12de68ab93aab15efc72fbbb83036c2a068", size = 249489, upload-time = "2025-11-18T13:32:39.212Z" }, + { url = "https://files.pythonhosted.org/packages/c8/da/b3131e20ba07a0de4437a50ef3b47840dfabf9293675b0cd5c2c7f66dd61/coverage-7.12.0-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:42435d46d6461a3b305cdfcad7cdd3248787771f53fe18305548cba474e6523b", size = 249070, upload-time = "2025-11-18T13:32:40.598Z" }, + { url = "https://files.pythonhosted.org/packages/70/81/b653329b5f6302c08d683ceff6785bc60a34be9ae92a5c7b63ee7ee7acec/coverage-7.12.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:5bcead88c8423e1855e64b8057d0544e33e4080b95b240c2a355334bb7ced937", size = 250929, upload-time = "2025-11-18T13:32:42.915Z" }, + { url = "https://files.pythonhosted.org/packages/a3/00/250ac3bca9f252a5fb1338b5ad01331ebb7b40223f72bef5b1b2cb03aa64/coverage-7.12.0-cp312-cp312-win32.whl", hash = "sha256:dcbb630ab034e86d2a0f79aefd2be07e583202f41e037602d438c80044957baa", size = 220241, upload-time = "2025-11-18T13:32:44.665Z" }, + { url = "https://files.pythonhosted.org/packages/64/1c/77e79e76d37ce83302f6c21980b45e09f8aa4551965213a10e62d71ce0ab/coverage-7.12.0-cp312-cp312-win_amd64.whl", hash = "sha256:2fd8354ed5d69775ac42986a691fbf68b4084278710cee9d7c3eaa0c28fa982a", size = 221051, upload-time = "2025-11-18T13:32:46.008Z" }, + { url = "https://files.pythonhosted.org/packages/31/f5/641b8a25baae564f9e52cac0e2667b123de961985709a004e287ee7663cc/coverage-7.12.0-cp312-cp312-win_arm64.whl", hash = "sha256:737c3814903be30695b2de20d22bcc5428fdae305c61ba44cdc8b3252984c49c", size = 219692, upload-time = "2025-11-18T13:32:47.372Z" }, + { url = "https://files.pythonhosted.org/packages/b8/14/771700b4048774e48d2c54ed0c674273702713c9ee7acdfede40c2666747/coverage-7.12.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:47324fffca8d8eae7e185b5bb20c14645f23350f870c1649003618ea91a78941", size = 217725, upload-time = "2025-11-18T13:32:49.22Z" }, + { url = "https://files.pythonhosted.org/packages/17/a7/3aa4144d3bcb719bf67b22d2d51c2d577bf801498c13cb08f64173e80497/coverage-7.12.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:ccf3b2ede91decd2fb53ec73c1f949c3e034129d1e0b07798ff1d02ea0c8fa4a", size = 218098, upload-time = "2025-11-18T13:32:50.78Z" }, + { url = "https://files.pythonhosted.org/packages/fc/9c/b846bbc774ff81091a12a10203e70562c91ae71badda00c5ae5b613527b1/coverage-7.12.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:b365adc70a6936c6b0582dc38746b33b2454148c02349345412c6e743efb646d", size = 249093, upload-time = "2025-11-18T13:32:52.554Z" }, + { url = "https://files.pythonhosted.org/packages/76/b6/67d7c0e1f400b32c883e9342de4a8c2ae7c1a0b57c5de87622b7262e2309/coverage-7.12.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:bc13baf85cd8a4cfcf4a35c7bc9d795837ad809775f782f697bf630b7e200211", size = 251686, upload-time = "2025-11-18T13:32:54.862Z" }, + { url = "https://files.pythonhosted.org/packages/cc/75/b095bd4b39d49c3be4bffbb3135fea18a99a431c52dd7513637c0762fecb/coverage-7.12.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:099d11698385d572ceafb3288a5b80fe1fc58bf665b3f9d362389de488361d3d", size = 252930, upload-time = "2025-11-18T13:32:56.417Z" }, + { url = "https://files.pythonhosted.org/packages/6e/f3/466f63015c7c80550bead3093aacabf5380c1220a2a93c35d374cae8f762/coverage-7.12.0-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:473dc45d69694069adb7680c405fb1e81f60b2aff42c81e2f2c3feaf544d878c", size = 249296, upload-time = "2025-11-18T13:32:58.074Z" }, + { url = "https://files.pythonhosted.org/packages/27/86/eba2209bf2b7e28c68698fc13437519a295b2d228ba9e0ec91673e09fa92/coverage-7.12.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:583f9adbefd278e9de33c33d6846aa8f5d164fa49b47144180a0e037f0688bb9", size = 251068, upload-time = "2025-11-18T13:32:59.646Z" }, + { url = "https://files.pythonhosted.org/packages/ec/55/ca8ae7dbba962a3351f18940b359b94c6bafdd7757945fdc79ec9e452dc7/coverage-7.12.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:b2089cc445f2dc0af6f801f0d1355c025b76c24481935303cf1af28f636688f0", size = 249034, upload-time = "2025-11-18T13:33:01.481Z" }, + { url = "https://files.pythonhosted.org/packages/7a/d7/39136149325cad92d420b023b5fd900dabdd1c3a0d1d5f148ef4a8cedef5/coverage-7.12.0-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:950411f1eb5d579999c5f66c62a40961f126fc71e5e14419f004471957b51508", size = 248853, upload-time = "2025-11-18T13:33:02.935Z" }, + { url = "https://files.pythonhosted.org/packages/fe/b6/76e1add8b87ef60e00643b0b7f8f7bb73d4bf5249a3be19ebefc5793dd25/coverage-7.12.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:b1aab7302a87bafebfe76b12af681b56ff446dc6f32ed178ff9c092ca776e6bc", size = 250619, upload-time = "2025-11-18T13:33:04.336Z" }, + { url = "https://files.pythonhosted.org/packages/95/87/924c6dc64f9203f7a3c1832a6a0eee5a8335dbe5f1bdadcc278d6f1b4d74/coverage-7.12.0-cp313-cp313-win32.whl", hash = "sha256:d7e0d0303c13b54db495eb636bc2465b2fb8475d4c8bcec8fe4b5ca454dfbae8", size = 220261, upload-time = "2025-11-18T13:33:06.493Z" }, + { url = "https://files.pythonhosted.org/packages/91/77/dd4aff9af16ff776bf355a24d87eeb48fc6acde54c907cc1ea89b14a8804/coverage-7.12.0-cp313-cp313-win_amd64.whl", hash = "sha256:ce61969812d6a98a981d147d9ac583a36ac7db7766f2e64a9d4d059c2fe29d07", size = 221072, upload-time = "2025-11-18T13:33:07.926Z" }, + { url = "https://files.pythonhosted.org/packages/70/49/5c9dc46205fef31b1b226a6e16513193715290584317fd4df91cdaf28b22/coverage-7.12.0-cp313-cp313-win_arm64.whl", hash = "sha256:bcec6f47e4cb8a4c2dc91ce507f6eefc6a1b10f58df32cdc61dff65455031dfc", size = 219702, upload-time = "2025-11-18T13:33:09.631Z" }, + { url = "https://files.pythonhosted.org/packages/9b/62/f87922641c7198667994dd472a91e1d9b829c95d6c29529ceb52132436ad/coverage-7.12.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:459443346509476170d553035e4a3eed7b860f4fe5242f02de1010501956ce87", size = 218420, upload-time = "2025-11-18T13:33:11.153Z" }, + { url = "https://files.pythonhosted.org/packages/85/dd/1cc13b2395ef15dbb27d7370a2509b4aee77890a464fb35d72d428f84871/coverage-7.12.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:04a79245ab2b7a61688958f7a855275997134bc84f4a03bc240cf64ff132abf6", size = 218773, upload-time = "2025-11-18T13:33:12.569Z" }, + { url = "https://files.pythonhosted.org/packages/74/40/35773cc4bb1e9d4658d4fb669eb4195b3151bef3bbd6f866aba5cd5dac82/coverage-7.12.0-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:09a86acaaa8455f13d6a99221d9654df249b33937b4e212b4e5a822065f12aa7", size = 260078, upload-time = "2025-11-18T13:33:14.037Z" }, + { url = "https://files.pythonhosted.org/packages/ec/ee/231bb1a6ffc2905e396557585ebc6bdc559e7c66708376d245a1f1d330fc/coverage-7.12.0-cp313-cp313t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:907e0df1b71ba77463687a74149c6122c3f6aac56c2510a5d906b2f368208560", size = 262144, upload-time = "2025-11-18T13:33:15.601Z" }, + { url = "https://files.pythonhosted.org/packages/28/be/32f4aa9f3bf0b56f3971001b56508352c7753915345d45fab4296a986f01/coverage-7.12.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:9b57e2d0ddd5f0582bae5437c04ee71c46cd908e7bc5d4d0391f9a41e812dd12", size = 264574, upload-time = "2025-11-18T13:33:17.354Z" }, + { url = "https://files.pythonhosted.org/packages/68/7c/00489fcbc2245d13ab12189b977e0cf06ff3351cb98bc6beba8bd68c5902/coverage-7.12.0-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:58c1c6aa677f3a1411fe6fb28ec3a942e4f665df036a3608816e0847fad23296", size = 259298, upload-time = "2025-11-18T13:33:18.958Z" }, + { url = "https://files.pythonhosted.org/packages/96/b4/f0760d65d56c3bea95b449e02570d4abd2549dc784bf39a2d4721a2d8ceb/coverage-7.12.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:4c589361263ab2953e3c4cd2a94db94c4ad4a8e572776ecfbad2389c626e4507", size = 262150, upload-time = "2025-11-18T13:33:20.644Z" }, + { url = "https://files.pythonhosted.org/packages/c5/71/9a9314df00f9326d78c1e5a910f520d599205907432d90d1c1b7a97aa4b1/coverage-7.12.0-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:91b810a163ccad2e43b1faa11d70d3cf4b6f3d83f9fd5f2df82a32d47b648e0d", size = 259763, upload-time = "2025-11-18T13:33:22.189Z" }, + { url = "https://files.pythonhosted.org/packages/10/34/01a0aceed13fbdf925876b9a15d50862eb8845454301fe3cdd1df08b2182/coverage-7.12.0-cp313-cp313t-musllinux_1_2_riscv64.whl", hash = "sha256:40c867af715f22592e0d0fb533a33a71ec9e0f73a6945f722a0c85c8c1cbe3a2", size = 258653, upload-time = "2025-11-18T13:33:24.239Z" }, + { url = "https://files.pythonhosted.org/packages/8d/04/81d8fd64928acf1574bbb0181f66901c6c1c6279c8ccf5f84259d2c68ae9/coverage-7.12.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:68b0d0a2d84f333de875666259dadf28cc67858bc8fd8b3f1eae84d3c2bec455", size = 260856, upload-time = "2025-11-18T13:33:26.365Z" }, + { url = "https://files.pythonhosted.org/packages/f2/76/fa2a37bfaeaf1f766a2d2360a25a5297d4fb567098112f6517475eee120b/coverage-7.12.0-cp313-cp313t-win32.whl", hash = "sha256:73f9e7fbd51a221818fd11b7090eaa835a353ddd59c236c57b2199486b116c6d", size = 220936, upload-time = "2025-11-18T13:33:28.165Z" }, + { url = "https://files.pythonhosted.org/packages/f9/52/60f64d932d555102611c366afb0eb434b34266b1d9266fc2fe18ab641c47/coverage-7.12.0-cp313-cp313t-win_amd64.whl", hash = "sha256:24cff9d1f5743f67db7ba46ff284018a6e9aeb649b67aa1e70c396aa1b7cb23c", size = 222001, upload-time = "2025-11-18T13:33:29.656Z" }, + { url = "https://files.pythonhosted.org/packages/77/df/c303164154a5a3aea7472bf323b7c857fed93b26618ed9fc5c2955566bb0/coverage-7.12.0-cp313-cp313t-win_arm64.whl", hash = "sha256:c87395744f5c77c866d0f5a43d97cc39e17c7f1cb0115e54a2fe67ca75c5d14d", size = 220273, upload-time = "2025-11-18T13:33:31.415Z" }, + { url = "https://files.pythonhosted.org/packages/bf/2e/fc12db0883478d6e12bbd62d481210f0c8daf036102aa11434a0c5755825/coverage-7.12.0-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:a1c59b7dc169809a88b21a936eccf71c3895a78f5592051b1af8f4d59c2b4f92", size = 217777, upload-time = "2025-11-18T13:33:32.86Z" }, + { url = "https://files.pythonhosted.org/packages/1f/c1/ce3e525d223350c6ec16b9be8a057623f54226ef7f4c2fee361ebb6a02b8/coverage-7.12.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:8787b0f982e020adb732b9f051f3e49dd5054cebbc3f3432061278512a2b1360", size = 218100, upload-time = "2025-11-18T13:33:34.532Z" }, + { url = "https://files.pythonhosted.org/packages/15/87/113757441504aee3808cb422990ed7c8bcc2d53a6779c66c5adef0942939/coverage-7.12.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:5ea5a9f7dc8877455b13dd1effd3202e0bca72f6f3ab09f9036b1bcf728f69ac", size = 249151, upload-time = "2025-11-18T13:33:36.135Z" }, + { url = "https://files.pythonhosted.org/packages/d9/1d/9529d9bd44049b6b05bb319c03a3a7e4b0a8a802d28fa348ad407e10706d/coverage-7.12.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:fdba9f15849534594f60b47c9a30bc70409b54947319a7c4fd0e8e3d8d2f355d", size = 251667, upload-time = "2025-11-18T13:33:37.996Z" }, + { url = "https://files.pythonhosted.org/packages/11/bb/567e751c41e9c03dc29d3ce74b8c89a1e3396313e34f255a2a2e8b9ebb56/coverage-7.12.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:a00594770eb715854fb1c57e0dea08cce6720cfbc531accdb9850d7c7770396c", size = 253003, upload-time = "2025-11-18T13:33:39.553Z" }, + { url = "https://files.pythonhosted.org/packages/e4/b3/c2cce2d8526a02fb9e9ca14a263ca6fc074449b33a6afa4892838c903528/coverage-7.12.0-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:5560c7e0d82b42eb1951e4f68f071f8017c824ebfd5a6ebe42c60ac16c6c2434", size = 249185, upload-time = "2025-11-18T13:33:42.086Z" }, + { url = "https://files.pythonhosted.org/packages/0e/a7/967f93bb66e82c9113c66a8d0b65ecf72fc865adfba5a145f50c7af7e58d/coverage-7.12.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:d6c2e26b481c9159c2773a37947a9718cfdc58893029cdfb177531793e375cfc", size = 251025, upload-time = "2025-11-18T13:33:43.634Z" }, + { url = "https://files.pythonhosted.org/packages/b9/b2/f2f6f56337bc1af465d5b2dc1ee7ee2141b8b9272f3bf6213fcbc309a836/coverage-7.12.0-cp314-cp314-musllinux_1_2_i686.whl", hash = "sha256:6e1a8c066dabcde56d5d9fed6a66bc19a2883a3fe051f0c397a41fc42aedd4cc", size = 248979, upload-time = "2025-11-18T13:33:46.04Z" }, + { url = "https://files.pythonhosted.org/packages/f4/7a/bf4209f45a4aec09d10a01a57313a46c0e0e8f4c55ff2965467d41a92036/coverage-7.12.0-cp314-cp314-musllinux_1_2_riscv64.whl", hash = "sha256:f7ba9da4726e446d8dd8aae5a6cd872511184a5d861de80a86ef970b5dacce3e", size = 248800, upload-time = "2025-11-18T13:33:47.546Z" }, + { url = "https://files.pythonhosted.org/packages/b8/b7/1e01b8696fb0521810f60c5bbebf699100d6754183e6cc0679bf2ed76531/coverage-7.12.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:e0f483ab4f749039894abaf80c2f9e7ed77bbf3c737517fb88c8e8e305896a17", size = 250460, upload-time = "2025-11-18T13:33:49.537Z" }, + { url = "https://files.pythonhosted.org/packages/71/ae/84324fb9cb46c024760e706353d9b771a81b398d117d8c1fe010391c186f/coverage-7.12.0-cp314-cp314-win32.whl", hash = "sha256:76336c19a9ef4a94b2f8dc79f8ac2da3f193f625bb5d6f51a328cd19bfc19933", size = 220533, upload-time = "2025-11-18T13:33:51.16Z" }, + { url = "https://files.pythonhosted.org/packages/e2/71/1033629deb8460a8f97f83e6ac4ca3b93952e2b6f826056684df8275e015/coverage-7.12.0-cp314-cp314-win_amd64.whl", hash = "sha256:7c1059b600aec6ef090721f8f633f60ed70afaffe8ecab85b59df748f24b31fe", size = 221348, upload-time = "2025-11-18T13:33:52.776Z" }, + { url = "https://files.pythonhosted.org/packages/0a/5f/ac8107a902f623b0c251abdb749be282dc2ab61854a8a4fcf49e276fce2f/coverage-7.12.0-cp314-cp314-win_arm64.whl", hash = "sha256:172cf3a34bfef42611963e2b661302a8931f44df31629e5b1050567d6b90287d", size = 219922, upload-time = "2025-11-18T13:33:54.316Z" }, + { url = "https://files.pythonhosted.org/packages/79/6e/f27af2d4da367f16077d21ef6fe796c874408219fa6dd3f3efe7751bd910/coverage-7.12.0-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:aa7d48520a32cb21c7a9b31f81799e8eaec7239db36c3b670be0fa2403828d1d", size = 218511, upload-time = "2025-11-18T13:33:56.343Z" }, + { url = "https://files.pythonhosted.org/packages/67/dd/65fd874aa460c30da78f9d259400d8e6a4ef457d61ab052fd248f0050558/coverage-7.12.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:90d58ac63bc85e0fb919f14d09d6caa63f35a5512a2205284b7816cafd21bb03", size = 218771, upload-time = "2025-11-18T13:33:57.966Z" }, + { url = "https://files.pythonhosted.org/packages/55/e0/7c6b71d327d8068cb79c05f8f45bf1b6145f7a0de23bbebe63578fe5240a/coverage-7.12.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:ca8ecfa283764fdda3eae1bdb6afe58bf78c2c3ec2b2edcb05a671f0bba7b3f9", size = 260151, upload-time = "2025-11-18T13:33:59.597Z" }, + { url = "https://files.pythonhosted.org/packages/49/ce/4697457d58285b7200de6b46d606ea71066c6e674571a946a6ea908fb588/coverage-7.12.0-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:874fe69a0785d96bd066059cd4368022cebbec1a8958f224f0016979183916e6", size = 262257, upload-time = "2025-11-18T13:34:01.166Z" }, + { url = "https://files.pythonhosted.org/packages/2f/33/acbc6e447aee4ceba88c15528dbe04a35fb4d67b59d393d2e0d6f1e242c1/coverage-7.12.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5b3c889c0b8b283a24d721a9eabc8ccafcfc3aebf167e4cd0d0e23bf8ec4e339", size = 264671, upload-time = "2025-11-18T13:34:02.795Z" }, + { url = "https://files.pythonhosted.org/packages/87/ec/e2822a795c1ed44d569980097be839c5e734d4c0c1119ef8e0a073496a30/coverage-7.12.0-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:8bb5b894b3ec09dcd6d3743229dc7f2c42ef7787dc40596ae04c0edda487371e", size = 259231, upload-time = "2025-11-18T13:34:04.397Z" }, + { url = "https://files.pythonhosted.org/packages/72/c5/a7ec5395bb4a49c9b7ad97e63f0c92f6bf4a9e006b1393555a02dae75f16/coverage-7.12.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:79a44421cd5fba96aa57b5e3b5a4d3274c449d4c622e8f76882d76635501fd13", size = 262137, upload-time = "2025-11-18T13:34:06.068Z" }, + { url = "https://files.pythonhosted.org/packages/67/0c/02c08858b764129f4ecb8e316684272972e60777ae986f3865b10940bdd6/coverage-7.12.0-cp314-cp314t-musllinux_1_2_i686.whl", hash = "sha256:33baadc0efd5c7294f436a632566ccc1f72c867f82833eb59820ee37dc811c6f", size = 259745, upload-time = "2025-11-18T13:34:08.04Z" }, + { url = "https://files.pythonhosted.org/packages/5a/04/4fd32b7084505f3829a8fe45c1a74a7a728cb251aaadbe3bec04abcef06d/coverage-7.12.0-cp314-cp314t-musllinux_1_2_riscv64.whl", hash = "sha256:c406a71f544800ef7e9e0000af706b88465f3573ae8b8de37e5f96c59f689ad1", size = 258570, upload-time = "2025-11-18T13:34:09.676Z" }, + { url = "https://files.pythonhosted.org/packages/48/35/2365e37c90df4f5342c4fa202223744119fe31264ee2924f09f074ea9b6d/coverage-7.12.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:e71bba6a40883b00c6d571599b4627f50c360b3d0d02bfc658168936be74027b", size = 260899, upload-time = "2025-11-18T13:34:11.259Z" }, + { url = "https://files.pythonhosted.org/packages/05/56/26ab0464ca733fa325e8e71455c58c1c374ce30f7c04cebb88eabb037b18/coverage-7.12.0-cp314-cp314t-win32.whl", hash = "sha256:9157a5e233c40ce6613dead4c131a006adfda70e557b6856b97aceed01b0e27a", size = 221313, upload-time = "2025-11-18T13:34:12.863Z" }, + { url = "https://files.pythonhosted.org/packages/da/1c/017a3e1113ed34d998b27d2c6dba08a9e7cb97d362f0ec988fcd873dcf81/coverage-7.12.0-cp314-cp314t-win_amd64.whl", hash = "sha256:e84da3a0fd233aeec797b981c51af1cabac74f9bd67be42458365b30d11b5291", size = 222423, upload-time = "2025-11-18T13:34:15.14Z" }, + { url = "https://files.pythonhosted.org/packages/4c/36/bcc504fdd5169301b52568802bb1b9cdde2e27a01d39fbb3b4b508ab7c2c/coverage-7.12.0-cp314-cp314t-win_arm64.whl", hash = "sha256:01d24af36fedda51c2b1aca56e4330a3710f83b02a5ff3743a6b015ffa7c9384", size = 220459, upload-time = "2025-11-18T13:34:17.222Z" }, + { url = "https://files.pythonhosted.org/packages/ce/a3/43b749004e3c09452e39bb56347a008f0a0668aad37324a99b5c8ca91d9e/coverage-7.12.0-py3-none-any.whl", hash = "sha256:159d50c0b12e060b15ed3d39f87ed43d4f7f7ad40b8a534f4dd331adbb51104a", size = 209503, upload-time = "2025-11-18T13:34:18.892Z" }, ] [package.optional-dependencies] @@ -2171,63 +1808,78 @@ toml = [ [[package]] name = "cryptography" -version = "45.0.4" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "cffi", marker = "platform_python_implementation != 'PyPy'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/fe/c8/a2a376a8711c1e11708b9c9972e0c3223f5fc682552c82d8db844393d6ce/cryptography-45.0.4.tar.gz", hash = "sha256:7405ade85c83c37682c8fe65554759800a4a8c54b2d96e0f8ad114d31b808d57", size = 744890, upload-time = "2025-06-10T00:03:51.297Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/cc/1c/92637793de053832523b410dbe016d3f5c11b41d0cf6eef8787aabb51d41/cryptography-45.0.4-cp311-abi3-macosx_10_9_universal2.whl", hash = "sha256:425a9a6ac2823ee6e46a76a21a4e8342d8fa5c01e08b823c1f19a8b74f096069", size = 7055712, upload-time = "2025-06-10T00:02:38.826Z" }, - { url = "https://files.pythonhosted.org/packages/ba/14/93b69f2af9ba832ad6618a03f8a034a5851dc9a3314336a3d71c252467e1/cryptography-45.0.4-cp311-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:680806cf63baa0039b920f4976f5f31b10e772de42f16310a6839d9f21a26b0d", size = 4205335, upload-time = "2025-06-10T00:02:41.64Z" }, - { url = "https://files.pythonhosted.org/packages/67/30/fae1000228634bf0b647fca80403db5ca9e3933b91dd060570689f0bd0f7/cryptography-45.0.4-cp311-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:4ca0f52170e821bc8da6fc0cc565b7bb8ff8d90d36b5e9fdd68e8a86bdf72036", size = 4431487, upload-time = "2025-06-10T00:02:43.696Z" }, - { url = "https://files.pythonhosted.org/packages/6d/5a/7dffcf8cdf0cb3c2430de7404b327e3db64735747d641fc492539978caeb/cryptography-45.0.4-cp311-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:f3fe7a5ae34d5a414957cc7f457e2b92076e72938423ac64d215722f6cf49a9e", size = 4208922, upload-time = "2025-06-10T00:02:45.334Z" }, - { url = "https://files.pythonhosted.org/packages/c6/f3/528729726eb6c3060fa3637253430547fbaaea95ab0535ea41baa4a6fbd8/cryptography-45.0.4-cp311-abi3-manylinux_2_28_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:25eb4d4d3e54595dc8adebc6bbd5623588991d86591a78c2548ffb64797341e2", size = 3900433, upload-time = "2025-06-10T00:02:47.359Z" }, - { url = "https://files.pythonhosted.org/packages/d9/4a/67ba2e40f619e04d83c32f7e1d484c1538c0800a17c56a22ff07d092ccc1/cryptography-45.0.4-cp311-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:ce1678a2ccbe696cf3af15a75bb72ee008d7ff183c9228592ede9db467e64f1b", size = 4464163, upload-time = "2025-06-10T00:02:49.412Z" }, - { url = "https://files.pythonhosted.org/packages/7e/9a/b4d5aa83661483ac372464809c4b49b5022dbfe36b12fe9e323ca8512420/cryptography-45.0.4-cp311-abi3-manylinux_2_34_aarch64.whl", hash = "sha256:49fe9155ab32721b9122975e168a6760d8ce4cffe423bcd7ca269ba41b5dfac1", size = 4208687, upload-time = "2025-06-10T00:02:50.976Z" }, - { url = "https://files.pythonhosted.org/packages/db/b7/a84bdcd19d9c02ec5807f2ec2d1456fd8451592c5ee353816c09250e3561/cryptography-45.0.4-cp311-abi3-manylinux_2_34_x86_64.whl", hash = "sha256:2882338b2a6e0bd337052e8b9007ced85c637da19ef9ecaf437744495c8c2999", size = 4463623, upload-time = "2025-06-10T00:02:52.542Z" }, - { url = "https://files.pythonhosted.org/packages/d8/84/69707d502d4d905021cac3fb59a316344e9f078b1da7fb43ecde5e10840a/cryptography-45.0.4-cp311-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:23b9c3ea30c3ed4db59e7b9619272e94891f8a3a5591d0b656a7582631ccf750", size = 4332447, upload-time = "2025-06-10T00:02:54.63Z" }, - { url = "https://files.pythonhosted.org/packages/f3/ee/d4f2ab688e057e90ded24384e34838086a9b09963389a5ba6854b5876598/cryptography-45.0.4-cp311-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:b0a97c927497e3bc36b33987abb99bf17a9a175a19af38a892dc4bbb844d7ee2", size = 4572830, upload-time = "2025-06-10T00:02:56.689Z" }, - { url = "https://files.pythonhosted.org/packages/70/d4/994773a261d7ff98034f72c0e8251fe2755eac45e2265db4c866c1c6829c/cryptography-45.0.4-cp311-abi3-win32.whl", hash = "sha256:e00a6c10a5c53979d6242f123c0a97cff9f3abed7f064fc412c36dc521b5f257", size = 2932769, upload-time = "2025-06-10T00:02:58.467Z" }, - { url = "https://files.pythonhosted.org/packages/5a/42/c80bd0b67e9b769b364963b5252b17778a397cefdd36fa9aa4a5f34c599a/cryptography-45.0.4-cp311-abi3-win_amd64.whl", hash = "sha256:817ee05c6c9f7a69a16200f0c90ab26d23a87701e2a284bd15156783e46dbcc8", size = 3410441, upload-time = "2025-06-10T00:03:00.14Z" }, - { url = "https://files.pythonhosted.org/packages/ce/0b/2488c89f3a30bc821c9d96eeacfcab6ff3accc08a9601ba03339c0fd05e5/cryptography-45.0.4-cp37-abi3-macosx_10_9_universal2.whl", hash = "sha256:964bcc28d867e0f5491a564b7debb3ffdd8717928d315d12e0d7defa9e43b723", size = 7031836, upload-time = "2025-06-10T00:03:01.726Z" }, - { url = "https://files.pythonhosted.org/packages/fe/51/8c584ed426093aac257462ae62d26ad61ef1cbf5b58d8b67e6e13c39960e/cryptography-45.0.4-cp37-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:6a5bf57554e80f75a7db3d4b1dacaa2764611ae166ab42ea9a72bcdb5d577637", size = 4195746, upload-time = "2025-06-10T00:03:03.94Z" }, - { url = "https://files.pythonhosted.org/packages/5c/7d/4b0ca4d7af95a704eef2f8f80a8199ed236aaf185d55385ae1d1610c03c2/cryptography-45.0.4-cp37-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:46cf7088bf91bdc9b26f9c55636492c1cce3e7aaf8041bbf0243f5e5325cfb2d", size = 4424456, upload-time = "2025-06-10T00:03:05.589Z" }, - { url = "https://files.pythonhosted.org/packages/1d/45/5fabacbc6e76ff056f84d9f60eeac18819badf0cefc1b6612ee03d4ab678/cryptography-45.0.4-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:7bedbe4cc930fa4b100fc845ea1ea5788fcd7ae9562e669989c11618ae8d76ee", size = 4198495, upload-time = "2025-06-10T00:03:09.172Z" }, - { url = "https://files.pythonhosted.org/packages/55/b7/ffc9945b290eb0a5d4dab9b7636706e3b5b92f14ee5d9d4449409d010d54/cryptography-45.0.4-cp37-abi3-manylinux_2_28_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:eaa3e28ea2235b33220b949c5a0d6cf79baa80eab2eb5607ca8ab7525331b9ff", size = 3885540, upload-time = "2025-06-10T00:03:10.835Z" }, - { url = "https://files.pythonhosted.org/packages/7f/e3/57b010282346980475e77d414080acdcb3dab9a0be63071efc2041a2c6bd/cryptography-45.0.4-cp37-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:7ef2dde4fa9408475038fc9aadfc1fb2676b174e68356359632e980c661ec8f6", size = 4452052, upload-time = "2025-06-10T00:03:12.448Z" }, - { url = "https://files.pythonhosted.org/packages/37/e6/ddc4ac2558bf2ef517a358df26f45bc774a99bf4653e7ee34b5e749c03e3/cryptography-45.0.4-cp37-abi3-manylinux_2_34_aarch64.whl", hash = "sha256:6a3511ae33f09094185d111160fd192c67aa0a2a8d19b54d36e4c78f651dc5ad", size = 4198024, upload-time = "2025-06-10T00:03:13.976Z" }, - { url = "https://files.pythonhosted.org/packages/3a/c0/85fa358ddb063ec588aed4a6ea1df57dc3e3bc1712d87c8fa162d02a65fc/cryptography-45.0.4-cp37-abi3-manylinux_2_34_x86_64.whl", hash = "sha256:06509dc70dd71fa56eaa138336244e2fbaf2ac164fc9b5e66828fccfd2b680d6", size = 4451442, upload-time = "2025-06-10T00:03:16.248Z" }, - { url = "https://files.pythonhosted.org/packages/33/67/362d6ec1492596e73da24e669a7fbbaeb1c428d6bf49a29f7a12acffd5dc/cryptography-45.0.4-cp37-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:5f31e6b0a5a253f6aa49be67279be4a7e5a4ef259a9f33c69f7d1b1191939872", size = 4325038, upload-time = "2025-06-10T00:03:18.4Z" }, - { url = "https://files.pythonhosted.org/packages/53/75/82a14bf047a96a1b13ebb47fb9811c4f73096cfa2e2b17c86879687f9027/cryptography-45.0.4-cp37-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:944e9ccf67a9594137f942d5b52c8d238b1b4e46c7a0c2891b7ae6e01e7c80a4", size = 4560964, upload-time = "2025-06-10T00:03:20.06Z" }, - { url = "https://files.pythonhosted.org/packages/cd/37/1a3cba4c5a468ebf9b95523a5ef5651244693dc712001e276682c278fc00/cryptography-45.0.4-cp37-abi3-win32.whl", hash = "sha256:c22fe01e53dc65edd1945a2e6f0015e887f84ced233acecb64b4daadb32f5c97", size = 2924557, upload-time = "2025-06-10T00:03:22.563Z" }, - { url = "https://files.pythonhosted.org/packages/2a/4b/3256759723b7e66380397d958ca07c59cfc3fb5c794fb5516758afd05d41/cryptography-45.0.4-cp37-abi3-win_amd64.whl", hash = "sha256:627ba1bc94f6adf0b0a2e35d87020285ead22d9f648c7e75bb64f367375f3b22", size = 3395508, upload-time = "2025-06-10T00:03:24.586Z" }, - { url = "https://files.pythonhosted.org/packages/16/33/b38e9d372afde56906a23839302c19abdac1c505bfb4776c1e4b07c3e145/cryptography-45.0.4-pp310-pypy310_pp73-macosx_10_9_x86_64.whl", hash = "sha256:a77c6fb8d76e9c9f99f2f3437c1a4ac287b34eaf40997cfab1e9bd2be175ac39", size = 3580103, upload-time = "2025-06-10T00:03:26.207Z" }, - { url = "https://files.pythonhosted.org/packages/c4/b9/357f18064ec09d4807800d05a48f92f3b369056a12f995ff79549fbb31f1/cryptography-45.0.4-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:7aad98a25ed8ac917fdd8a9c1e706e5a0956e06c498be1f713b61734333a4507", size = 4143732, upload-time = "2025-06-10T00:03:27.896Z" }, - { url = "https://files.pythonhosted.org/packages/c4/9c/7f7263b03d5db329093617648b9bd55c953de0b245e64e866e560f9aac07/cryptography-45.0.4-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:3530382a43a0e524bc931f187fc69ef4c42828cf7d7f592f7f249f602b5a4ab0", size = 4385424, upload-time = "2025-06-10T00:03:29.992Z" }, - { url = "https://files.pythonhosted.org/packages/a6/5a/6aa9d8d5073d5acc0e04e95b2860ef2684b2bd2899d8795fc443013e263b/cryptography-45.0.4-pp310-pypy310_pp73-manylinux_2_34_aarch64.whl", hash = "sha256:6b613164cb8425e2f8db5849ffb84892e523bf6d26deb8f9bb76ae86181fa12b", size = 4142438, upload-time = "2025-06-10T00:03:31.782Z" }, - { url = "https://files.pythonhosted.org/packages/42/1c/71c638420f2cdd96d9c2b287fec515faf48679b33a2b583d0f1eda3a3375/cryptography-45.0.4-pp310-pypy310_pp73-manylinux_2_34_x86_64.whl", hash = "sha256:96d4819e25bf3b685199b304a0029ce4a3caf98947ce8a066c9137cc78ad2c58", size = 4384622, upload-time = "2025-06-10T00:03:33.491Z" }, - { url = "https://files.pythonhosted.org/packages/ef/ab/e3a055c34e97deadbf0d846e189237d3385dca99e1a7e27384c3b2292041/cryptography-45.0.4-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:b97737a3ffbea79eebb062eb0d67d72307195035332501722a9ca86bab9e3ab2", size = 3328911, upload-time = "2025-06-10T00:03:35.035Z" }, - { url = "https://files.pythonhosted.org/packages/ea/ba/cf442ae99ef363855ed84b39e0fb3c106ac66b7a7703f3c9c9cfe05412cb/cryptography-45.0.4-pp311-pypy311_pp73-macosx_10_9_x86_64.whl", hash = "sha256:4828190fb6c4bcb6ebc6331f01fe66ae838bb3bd58e753b59d4b22eb444b996c", size = 3590512, upload-time = "2025-06-10T00:03:36.982Z" }, - { url = "https://files.pythonhosted.org/packages/28/9a/a7d5bb87d149eb99a5abdc69a41e4e47b8001d767e5f403f78bfaafc7aa7/cryptography-45.0.4-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:03dbff8411206713185b8cebe31bc5c0eb544799a50c09035733716b386e61a4", size = 4146899, upload-time = "2025-06-10T00:03:38.659Z" }, - { url = "https://files.pythonhosted.org/packages/17/11/9361c2c71c42cc5c465cf294c8030e72fb0c87752bacbd7a3675245e3db3/cryptography-45.0.4-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:51dfbd4d26172d31150d84c19bbe06c68ea4b7f11bbc7b3a5e146b367c311349", size = 4388900, upload-time = "2025-06-10T00:03:40.233Z" }, - { url = "https://files.pythonhosted.org/packages/c0/76/f95b83359012ee0e670da3e41c164a0c256aeedd81886f878911581d852f/cryptography-45.0.4-pp311-pypy311_pp73-manylinux_2_34_aarch64.whl", hash = "sha256:0339a692de47084969500ee455e42c58e449461e0ec845a34a6a9b9bf7df7fb8", size = 4146422, upload-time = "2025-06-10T00:03:41.827Z" }, - { url = "https://files.pythonhosted.org/packages/09/ad/5429fcc4def93e577a5407988f89cf15305e64920203d4ac14601a9dc876/cryptography-45.0.4-pp311-pypy311_pp73-manylinux_2_34_x86_64.whl", hash = "sha256:0cf13c77d710131d33e63626bd55ae7c0efb701ebdc2b3a7952b9b23a0412862", size = 4388475, upload-time = "2025-06-10T00:03:43.493Z" }, - { url = "https://files.pythonhosted.org/packages/99/49/0ab9774f64555a1b50102757811508f5ace451cf5dc0a2d074a4b9deca6a/cryptography-45.0.4-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:bbc505d1dc469ac12a0a064214879eac6294038d6b24ae9f71faae1448a9608d", size = 3337594, upload-time = "2025-06-10T00:03:45.523Z" }, +version = "46.0.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cffi", marker = "platform_python_implementation != 'PyPy' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/9f/33/c00162f49c0e2fe8064a62cb92b93e50c74a72bc370ab92f86112b33ff62/cryptography-46.0.3.tar.gz", hash = "sha256:a8b17438104fed022ce745b362294d9ce35b4c2e45c1d958ad4a4b019285f4a1", size = 749258, upload-time = "2025-10-15T23:18:31.74Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1d/42/9c391dd801d6cf0d561b5890549d4b27bafcc53b39c31a817e69d87c625b/cryptography-46.0.3-cp311-abi3-macosx_10_9_universal2.whl", hash = "sha256:109d4ddfadf17e8e7779c39f9b18111a09efb969a301a31e987416a0191ed93a", size = 7225004, upload-time = "2025-10-15T23:16:52.239Z" }, + { url = "https://files.pythonhosted.org/packages/1c/67/38769ca6b65f07461eb200e85fc1639b438bdc667be02cf7f2cd6a64601c/cryptography-46.0.3-cp311-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:09859af8466b69bc3c27bdf4f5d84a665e0f7ab5088412e9e2ec49758eca5cbc", size = 4296667, upload-time = "2025-10-15T23:16:54.369Z" }, + { url = "https://files.pythonhosted.org/packages/5c/49/498c86566a1d80e978b42f0d702795f69887005548c041636df6ae1ca64c/cryptography-46.0.3-cp311-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:01ca9ff2885f3acc98c29f1860552e37f6d7c7d013d7334ff2a9de43a449315d", size = 4450807, upload-time = "2025-10-15T23:16:56.414Z" }, + { url = "https://files.pythonhosted.org/packages/4b/0a/863a3604112174c8624a2ac3c038662d9e59970c7f926acdcfaed8d61142/cryptography-46.0.3-cp311-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:6eae65d4c3d33da080cff9c4ab1f711b15c1d9760809dad6ea763f3812d254cb", size = 4299615, upload-time = "2025-10-15T23:16:58.442Z" }, + { url = "https://files.pythonhosted.org/packages/64/02/b73a533f6b64a69f3cd3872acb6ebc12aef924d8d103133bb3ea750dc703/cryptography-46.0.3-cp311-abi3-manylinux_2_28_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:e5bf0ed4490068a2e72ac03d786693adeb909981cc596425d09032d372bcc849", size = 4016800, upload-time = "2025-10-15T23:17:00.378Z" }, + { url = "https://files.pythonhosted.org/packages/25/d5/16e41afbfa450cde85a3b7ec599bebefaef16b5c6ba4ec49a3532336ed72/cryptography-46.0.3-cp311-abi3-manylinux_2_28_ppc64le.whl", hash = "sha256:5ecfccd2329e37e9b7112a888e76d9feca2347f12f37918facbb893d7bb88ee8", size = 4984707, upload-time = "2025-10-15T23:17:01.98Z" }, + { url = "https://files.pythonhosted.org/packages/c9/56/e7e69b427c3878352c2fb9b450bd0e19ed552753491d39d7d0a2f5226d41/cryptography-46.0.3-cp311-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:a2c0cd47381a3229c403062f764160d57d4d175e022c1df84e168c6251a22eec", size = 4482541, upload-time = "2025-10-15T23:17:04.078Z" }, + { url = "https://files.pythonhosted.org/packages/78/f6/50736d40d97e8483172f1bb6e698895b92a223dba513b0ca6f06b2365339/cryptography-46.0.3-cp311-abi3-manylinux_2_34_aarch64.whl", hash = "sha256:549e234ff32571b1f4076ac269fcce7a808d3bf98b76c8dd560e42dbc66d7d91", size = 4299464, upload-time = "2025-10-15T23:17:05.483Z" }, + { url = "https://files.pythonhosted.org/packages/00/de/d8e26b1a855f19d9994a19c702fa2e93b0456beccbcfe437eda00e0701f2/cryptography-46.0.3-cp311-abi3-manylinux_2_34_ppc64le.whl", hash = "sha256:c0a7bb1a68a5d3471880e264621346c48665b3bf1c3759d682fc0864c540bd9e", size = 4950838, upload-time = "2025-10-15T23:17:07.425Z" }, + { url = "https://files.pythonhosted.org/packages/8f/29/798fc4ec461a1c9e9f735f2fc58741b0daae30688f41b2497dcbc9ed1355/cryptography-46.0.3-cp311-abi3-manylinux_2_34_x86_64.whl", hash = "sha256:10b01676fc208c3e6feeb25a8b83d81767e8059e1fe86e1dc62d10a3018fa926", size = 4481596, upload-time = "2025-10-15T23:17:09.343Z" }, + { url = "https://files.pythonhosted.org/packages/15/8d/03cd48b20a573adfff7652b76271078e3045b9f49387920e7f1f631d125e/cryptography-46.0.3-cp311-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:0abf1ffd6e57c67e92af68330d05760b7b7efb243aab8377e583284dbab72c71", size = 4426782, upload-time = "2025-10-15T23:17:11.22Z" }, + { url = "https://files.pythonhosted.org/packages/fa/b1/ebacbfe53317d55cf33165bda24c86523497a6881f339f9aae5c2e13e57b/cryptography-46.0.3-cp311-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:a04bee9ab6a4da801eb9b51f1b708a1b5b5c9eb48c03f74198464c66f0d344ac", size = 4698381, upload-time = "2025-10-15T23:17:12.829Z" }, + { url = "https://files.pythonhosted.org/packages/96/92/8a6a9525893325fc057a01f654d7efc2c64b9de90413adcf605a85744ff4/cryptography-46.0.3-cp311-abi3-win32.whl", hash = "sha256:f260d0d41e9b4da1ed1e0f1ce571f97fe370b152ab18778e9e8f67d6af432018", size = 3055988, upload-time = "2025-10-15T23:17:14.65Z" }, + { url = "https://files.pythonhosted.org/packages/7e/bf/80fbf45253ea585a1e492a6a17efcb93467701fa79e71550a430c5e60df0/cryptography-46.0.3-cp311-abi3-win_amd64.whl", hash = "sha256:a9a3008438615669153eb86b26b61e09993921ebdd75385ddd748702c5adfddb", size = 3514451, upload-time = "2025-10-15T23:17:16.142Z" }, + { url = "https://files.pythonhosted.org/packages/2e/af/9b302da4c87b0beb9db4e756386a7c6c5b8003cd0e742277888d352ae91d/cryptography-46.0.3-cp311-abi3-win_arm64.whl", hash = "sha256:5d7f93296ee28f68447397bf5198428c9aeeab45705a55d53a6343455dcb2c3c", size = 2928007, upload-time = "2025-10-15T23:17:18.04Z" }, + { url = "https://files.pythonhosted.org/packages/f5/e2/a510aa736755bffa9d2f75029c229111a1d02f8ecd5de03078f4c18d91a3/cryptography-46.0.3-cp314-cp314t-macosx_10_9_universal2.whl", hash = "sha256:00a5e7e87938e5ff9ff5447ab086a5706a957137e6e433841e9d24f38a065217", size = 7158012, upload-time = "2025-10-15T23:17:19.982Z" }, + { url = "https://files.pythonhosted.org/packages/73/dc/9aa866fbdbb95b02e7f9d086f1fccfeebf8953509b87e3f28fff927ff8a0/cryptography-46.0.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:c8daeb2d2174beb4575b77482320303f3d39b8e81153da4f0fb08eb5fe86a6c5", size = 4288728, upload-time = "2025-10-15T23:17:21.527Z" }, + { url = "https://files.pythonhosted.org/packages/c5/fd/bc1daf8230eaa075184cbbf5f8cd00ba9db4fd32d63fb83da4671b72ed8a/cryptography-46.0.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:39b6755623145ad5eff1dab323f4eae2a32a77a7abef2c5089a04a3d04366715", size = 4435078, upload-time = "2025-10-15T23:17:23.042Z" }, + { url = "https://files.pythonhosted.org/packages/82/98/d3bd5407ce4c60017f8ff9e63ffee4200ab3e23fe05b765cab805a7db008/cryptography-46.0.3-cp314-cp314t-manylinux_2_28_aarch64.whl", hash = "sha256:db391fa7c66df6762ee3f00c95a89e6d428f4d60e7abc8328f4fe155b5ac6e54", size = 4293460, upload-time = "2025-10-15T23:17:24.885Z" }, + { url = "https://files.pythonhosted.org/packages/26/e9/e23e7900983c2b8af7a08098db406cf989d7f09caea7897e347598d4cd5b/cryptography-46.0.3-cp314-cp314t-manylinux_2_28_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:78a97cf6a8839a48c49271cdcbd5cf37ca2c1d6b7fdd86cc864f302b5e9bf459", size = 3995237, upload-time = "2025-10-15T23:17:26.449Z" }, + { url = "https://files.pythonhosted.org/packages/91/15/af68c509d4a138cfe299d0d7ddb14afba15233223ebd933b4bbdbc7155d3/cryptography-46.0.3-cp314-cp314t-manylinux_2_28_ppc64le.whl", hash = "sha256:dfb781ff7eaa91a6f7fd41776ec37c5853c795d3b358d4896fdbb5df168af422", size = 4967344, upload-time = "2025-10-15T23:17:28.06Z" }, + { url = "https://files.pythonhosted.org/packages/ca/e3/8643d077c53868b681af077edf6b3cb58288b5423610f21c62aadcbe99f4/cryptography-46.0.3-cp314-cp314t-manylinux_2_28_x86_64.whl", hash = "sha256:6f61efb26e76c45c4a227835ddeae96d83624fb0d29eb5df5b96e14ed1a0afb7", size = 4466564, upload-time = "2025-10-15T23:17:29.665Z" }, + { url = "https://files.pythonhosted.org/packages/0e/43/c1e8726fa59c236ff477ff2b5dc071e54b21e5a1e51aa2cee1676f1c986f/cryptography-46.0.3-cp314-cp314t-manylinux_2_34_aarch64.whl", hash = "sha256:23b1a8f26e43f47ceb6d6a43115f33a5a37d57df4ea0ca295b780ae8546e8044", size = 4292415, upload-time = "2025-10-15T23:17:31.686Z" }, + { url = "https://files.pythonhosted.org/packages/42/f9/2f8fefdb1aee8a8e3256a0568cffc4e6d517b256a2fe97a029b3f1b9fe7e/cryptography-46.0.3-cp314-cp314t-manylinux_2_34_ppc64le.whl", hash = "sha256:b419ae593c86b87014b9be7396b385491ad7f320bde96826d0dd174459e54665", size = 4931457, upload-time = "2025-10-15T23:17:33.478Z" }, + { url = "https://files.pythonhosted.org/packages/79/30/9b54127a9a778ccd6d27c3da7563e9f2d341826075ceab89ae3b41bf5be2/cryptography-46.0.3-cp314-cp314t-manylinux_2_34_x86_64.whl", hash = "sha256:50fc3343ac490c6b08c0cf0d704e881d0d660be923fd3076db3e932007e726e3", size = 4466074, upload-time = "2025-10-15T23:17:35.158Z" }, + { url = "https://files.pythonhosted.org/packages/ac/68/b4f4a10928e26c941b1b6a179143af9f4d27d88fe84a6a3c53592d2e76bf/cryptography-46.0.3-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:22d7e97932f511d6b0b04f2bfd818d73dcd5928db509460aaf48384778eb6d20", size = 4420569, upload-time = "2025-10-15T23:17:37.188Z" }, + { url = "https://files.pythonhosted.org/packages/a3/49/3746dab4c0d1979888f125226357d3262a6dd40e114ac29e3d2abdf1ec55/cryptography-46.0.3-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:d55f3dffadd674514ad19451161118fd010988540cee43d8bc20675e775925de", size = 4681941, upload-time = "2025-10-15T23:17:39.236Z" }, + { url = "https://files.pythonhosted.org/packages/fd/30/27654c1dbaf7e4a3531fa1fc77986d04aefa4d6d78259a62c9dc13d7ad36/cryptography-46.0.3-cp314-cp314t-win32.whl", hash = "sha256:8a6e050cb6164d3f830453754094c086ff2d0b2f3a897a1d9820f6139a1f0914", size = 3022339, upload-time = "2025-10-15T23:17:40.888Z" }, + { url = "https://files.pythonhosted.org/packages/f6/30/640f34ccd4d2a1bc88367b54b926b781b5a018d65f404d409aba76a84b1c/cryptography-46.0.3-cp314-cp314t-win_amd64.whl", hash = "sha256:760f83faa07f8b64e9c33fc963d790a2edb24efb479e3520c14a45741cd9b2db", size = 3494315, upload-time = "2025-10-15T23:17:42.769Z" }, + { url = "https://files.pythonhosted.org/packages/ba/8b/88cc7e3bd0a8e7b861f26981f7b820e1f46aa9d26cc482d0feba0ecb4919/cryptography-46.0.3-cp314-cp314t-win_arm64.whl", hash = "sha256:516ea134e703e9fe26bcd1277a4b59ad30586ea90c365a87781d7887a646fe21", size = 2919331, upload-time = "2025-10-15T23:17:44.468Z" }, + { url = "https://files.pythonhosted.org/packages/fd/23/45fe7f376a7df8daf6da3556603b36f53475a99ce4faacb6ba2cf3d82021/cryptography-46.0.3-cp38-abi3-macosx_10_9_universal2.whl", hash = "sha256:cb3d760a6117f621261d662bccc8ef5bc32ca673e037c83fbe565324f5c46936", size = 7218248, upload-time = "2025-10-15T23:17:46.294Z" }, + { url = "https://files.pythonhosted.org/packages/27/32/b68d27471372737054cbd34c84981f9edbc24fe67ca225d389799614e27f/cryptography-46.0.3-cp38-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:4b7387121ac7d15e550f5cb4a43aef2559ed759c35df7336c402bb8275ac9683", size = 4294089, upload-time = "2025-10-15T23:17:48.269Z" }, + { url = "https://files.pythonhosted.org/packages/26/42/fa8389d4478368743e24e61eea78846a0006caffaf72ea24a15159215a14/cryptography-46.0.3-cp38-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:15ab9b093e8f09daab0f2159bb7e47532596075139dd74365da52ecc9cb46c5d", size = 4440029, upload-time = "2025-10-15T23:17:49.837Z" }, + { url = "https://files.pythonhosted.org/packages/5f/eb/f483db0ec5ac040824f269e93dd2bd8a21ecd1027e77ad7bdf6914f2fd80/cryptography-46.0.3-cp38-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:46acf53b40ea38f9c6c229599a4a13f0d46a6c3fa9ef19fc1a124d62e338dfa0", size = 4297222, upload-time = "2025-10-15T23:17:51.357Z" }, + { url = "https://files.pythonhosted.org/packages/fd/cf/da9502c4e1912cb1da3807ea3618a6829bee8207456fbbeebc361ec38ba3/cryptography-46.0.3-cp38-abi3-manylinux_2_28_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:10ca84c4668d066a9878890047f03546f3ae0a6b8b39b697457b7757aaf18dbc", size = 4012280, upload-time = "2025-10-15T23:17:52.964Z" }, + { url = "https://files.pythonhosted.org/packages/6b/8f/9adb86b93330e0df8b3dcf03eae67c33ba89958fc2e03862ef1ac2b42465/cryptography-46.0.3-cp38-abi3-manylinux_2_28_ppc64le.whl", hash = "sha256:36e627112085bb3b81b19fed209c05ce2a52ee8b15d161b7c643a7d5a88491f3", size = 4978958, upload-time = "2025-10-15T23:17:54.965Z" }, + { url = "https://files.pythonhosted.org/packages/d1/a0/5fa77988289c34bdb9f913f5606ecc9ada1adb5ae870bd0d1054a7021cc4/cryptography-46.0.3-cp38-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:1000713389b75c449a6e979ffc7dcc8ac90b437048766cef052d4d30b8220971", size = 4473714, upload-time = "2025-10-15T23:17:56.754Z" }, + { url = "https://files.pythonhosted.org/packages/14/e5/fc82d72a58d41c393697aa18c9abe5ae1214ff6f2a5c18ac470f92777895/cryptography-46.0.3-cp38-abi3-manylinux_2_34_aarch64.whl", hash = "sha256:b02cf04496f6576afffef5ddd04a0cb7d49cf6be16a9059d793a30b035f6b6ac", size = 4296970, upload-time = "2025-10-15T23:17:58.588Z" }, + { url = "https://files.pythonhosted.org/packages/78/06/5663ed35438d0b09056973994f1aec467492b33bd31da36e468b01ec1097/cryptography-46.0.3-cp38-abi3-manylinux_2_34_ppc64le.whl", hash = "sha256:71e842ec9bc7abf543b47cf86b9a743baa95f4677d22baa4c7d5c69e49e9bc04", size = 4940236, upload-time = "2025-10-15T23:18:00.897Z" }, + { url = "https://files.pythonhosted.org/packages/fc/59/873633f3f2dcd8a053b8dd1d38f783043b5fce589c0f6988bf55ef57e43e/cryptography-46.0.3-cp38-abi3-manylinux_2_34_x86_64.whl", hash = "sha256:402b58fc32614f00980b66d6e56a5b4118e6cb362ae8f3fda141ba4689bd4506", size = 4472642, upload-time = "2025-10-15T23:18:02.749Z" }, + { url = "https://files.pythonhosted.org/packages/3d/39/8e71f3930e40f6877737d6f69248cf74d4e34b886a3967d32f919cc50d3b/cryptography-46.0.3-cp38-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:ef639cb3372f69ec44915fafcd6698b6cc78fbe0c2ea41be867f6ed612811963", size = 4423126, upload-time = "2025-10-15T23:18:04.85Z" }, + { url = "https://files.pythonhosted.org/packages/cd/c7/f65027c2810e14c3e7268353b1681932b87e5a48e65505d8cc17c99e36ae/cryptography-46.0.3-cp38-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:3b51b8ca4f1c6453d8829e1eb7299499ca7f313900dd4d89a24b8b87c0a780d4", size = 4686573, upload-time = "2025-10-15T23:18:06.908Z" }, + { url = "https://files.pythonhosted.org/packages/0a/6e/1c8331ddf91ca4730ab3086a0f1be19c65510a33b5a441cb334e7a2d2560/cryptography-46.0.3-cp38-abi3-win32.whl", hash = "sha256:6276eb85ef938dc035d59b87c8a7dc559a232f954962520137529d77b18ff1df", size = 3036695, upload-time = "2025-10-15T23:18:08.672Z" }, + { url = "https://files.pythonhosted.org/packages/90/45/b0d691df20633eff80955a0fc7695ff9051ffce8b69741444bd9ed7bd0db/cryptography-46.0.3-cp38-abi3-win_amd64.whl", hash = "sha256:416260257577718c05135c55958b674000baef9a1c7d9e8f306ec60d71db850f", size = 3501720, upload-time = "2025-10-15T23:18:10.632Z" }, + { url = "https://files.pythonhosted.org/packages/e8/cb/2da4cc83f5edb9c3257d09e1e7ab7b23f049c7962cae8d842bbef0a9cec9/cryptography-46.0.3-cp38-abi3-win_arm64.whl", hash = "sha256:d89c3468de4cdc4f08a57e214384d0471911a3830fcdaf7a8cc587e42a866372", size = 2918740, upload-time = "2025-10-15T23:18:12.277Z" }, + { url = "https://files.pythonhosted.org/packages/06/8a/e60e46adab4362a682cf142c7dcb5bf79b782ab2199b0dcb81f55970807f/cryptography-46.0.3-pp311-pypy311_pp73-macosx_10_9_x86_64.whl", hash = "sha256:7ce938a99998ed3c8aa7e7272dca1a610401ede816d36d0693907d863b10d9ea", size = 3698132, upload-time = "2025-10-15T23:18:17.056Z" }, + { url = "https://files.pythonhosted.org/packages/da/38/f59940ec4ee91e93d3311f7532671a5cef5570eb04a144bf203b58552d11/cryptography-46.0.3-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:191bb60a7be5e6f54e30ba16fdfae78ad3a342a0599eb4193ba88e3f3d6e185b", size = 4243992, upload-time = "2025-10-15T23:18:18.695Z" }, + { url = "https://files.pythonhosted.org/packages/b0/0c/35b3d92ddebfdfda76bb485738306545817253d0a3ded0bfe80ef8e67aa5/cryptography-46.0.3-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:c70cc23f12726be8f8bc72e41d5065d77e4515efae3690326764ea1b07845cfb", size = 4409944, upload-time = "2025-10-15T23:18:20.597Z" }, + { url = "https://files.pythonhosted.org/packages/99/55/181022996c4063fc0e7666a47049a1ca705abb9c8a13830f074edb347495/cryptography-46.0.3-pp311-pypy311_pp73-manylinux_2_34_aarch64.whl", hash = "sha256:9394673a9f4de09e28b5356e7fff97d778f8abad85c9d5ac4a4b7e25a0de7717", size = 4242957, upload-time = "2025-10-15T23:18:22.18Z" }, + { url = "https://files.pythonhosted.org/packages/ba/af/72cd6ef29f9c5f731251acadaeb821559fe25f10852f44a63374c9ca08c1/cryptography-46.0.3-pp311-pypy311_pp73-manylinux_2_34_x86_64.whl", hash = "sha256:94cd0549accc38d1494e1f8de71eca837d0509d0d44bf11d158524b0e12cebf9", size = 4409447, upload-time = "2025-10-15T23:18:24.209Z" }, + { url = "https://files.pythonhosted.org/packages/0d/c3/e90f4a4feae6410f914f8ebac129b9ae7a8c92eb60a638012dde42030a9d/cryptography-46.0.3-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:6b5063083824e5509fdba180721d55909ffacccc8adbec85268b48439423d78c", size = 3438528, upload-time = "2025-10-15T23:18:26.227Z" }, ] [[package]] name = "custodian" -version = "2025.5.12" +version = "2025.10.11" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "monty" }, { name = "psutil" }, { name = "ruamel-yaml" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/81/d7/d81259d1704684f7c58d16228e11e993f596a81e0652ea60d17160d81ae7/custodian-2025.5.12.tar.gz", hash = "sha256:d77d461d31fbec8bfc8f0a49e83c561e265f409bebd2546d138b90386b4d8bea", size = 111490, upload-time = "2025-05-12T19:19:59.19Z" } +sdist = { url = "https://files.pythonhosted.org/packages/9d/25/24c8e62eca1216acfe3d5ddebca8d51f351025c7fd6d4f549abdcff10189/custodian-2025.10.11.tar.gz", hash = "sha256:6ec794e3ac207ad923dd6989472ca2060ed160b56f25478e1f3e8e82fa675565", size = 110829, upload-time = "2025-10-11T21:11:02.513Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/ca/2b/20a27d9896db086c4f924a7be664e83314591c173f14ae66c1b6e8d083f8/custodian-2025.5.12-py3-none-any.whl", hash = "sha256:d71cffc3c05e31a02dafd6ece286f478ec76cdac114ccc3a1c78f9e727e8a876", size = 123716, upload-time = "2025-05-12T19:19:57.355Z" }, + { url = "https://files.pythonhosted.org/packages/16/3e/356779f9763e9e36686d93ad8d4e46dcad49f9d7eea2f367103879054ddd/custodian-2025.10.11-py3-none-any.whl", hash = "sha256:3a69b381f9f2b8e32f41ec85a9336388bcfb0700fb35137eeab6bf7061cf1450", size = 123678, upload-time = "2025-10-11T21:11:01.09Z" }, ] [[package]] @@ -2241,76 +1893,61 @@ wheels = [ [[package]] name = "cython" -version = "3.1.2" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/18/40/7b17cd866158238db704965da1b5849af261dbad393ea3ac966f934b2d39/cython-3.1.2.tar.gz", hash = "sha256:6bbf7a953fa6762dfecdec015e3b054ba51c0121a45ad851fa130f63f5331381", size = 3184825, upload-time = "2025-06-09T07:08:48.465Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/4c/5e/c89172b252697acd6a440a2efead37685f8f2c42ea0d906098cbfb9aed69/cython-3.1.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0f2add8b23cb19da3f546a688cd8f9e0bfc2776715ebf5e283bc3113b03ff008", size = 2973977, upload-time = "2025-06-09T07:09:03.604Z" }, - { url = "https://files.pythonhosted.org/packages/9c/e5/d7fb67187193c5763d59a4b70d86a92be18b05b01737af8bfca7bafea0d3/cython-3.1.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:0d6248a2ae155ca4c42d7fa6a9a05154d62e695d7736bc17e1b85da6dcc361df", size = 2836988, upload-time = "2025-06-09T07:09:06.156Z" }, - { url = "https://files.pythonhosted.org/packages/23/3a/5b92bfff9c1cc1179a493684d0e6a893ee7cd69c4f1977813000ea76c5d7/cython-3.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:262bf49d9da64e2a34c86cbf8de4aa37daffb0f602396f116cca1ed47dc4b9f2", size = 3212933, upload-time = "2025-06-09T07:09:08.725Z" }, - { url = "https://files.pythonhosted.org/packages/b4/eb/8c47ba21177929f9122e7aceca9fe1f9f5a037e705226f8a5a9113fb53ba/cython-3.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ae53ae93c699d5f113953a9869df2fc269d8e173f9aa0616c6d8d6e12b4e9827", size = 3332955, upload-time = "2025-06-09T07:09:11.371Z" }, - { url = "https://files.pythonhosted.org/packages/2a/a7/e29079146154c4c0403dfb5b9b51c183e0887fc19727aacc3946246c5898/cython-3.1.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b417c5d046ce676ee595ec7955ed47a68ad6f419cbf8c2a8708e55a3b38dfa35", size = 3394613, upload-time = "2025-06-09T07:09:14.189Z" }, - { url = "https://files.pythonhosted.org/packages/94/18/dd10c4531c0e918b20300ee23b32a4bffa5cbacaa8e8dd19fa6b02b260fe/cython-3.1.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:af127da4b956e0e906e552fad838dc3fb6b6384164070ceebb0d90982a8ae25a", size = 3257573, upload-time = "2025-06-09T07:09:16.787Z" }, - { url = "https://files.pythonhosted.org/packages/19/09/0998fa0c42c6cc56fdcba6bb757abe13fc4456a5a063dacb5331e30d7560/cython-3.1.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:9be3d4954b46fd0f2dceac011d470f658eaf819132db52fbd1cf226ee60348db", size = 3479007, upload-time = "2025-06-09T07:09:19.431Z" }, - { url = "https://files.pythonhosted.org/packages/9d/1c/e107d8bc45ab1f3c2205c7f4a17b3c594126b72f7fc2d78b304f5ae72434/cython-3.1.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:63da49672c4bb022b4de9d37bab6c29953dbf5a31a2f40dffd0cf0915dcd7a17", size = 3414055, upload-time = "2025-06-09T07:09:22.264Z" }, - { url = "https://files.pythonhosted.org/packages/13/25/5c1177bbc23263ba82b60a754383a001c57798d3f7982ea9b5fd3916c1fa/cython-3.1.2-cp310-cp310-win32.whl", hash = "sha256:2d8291dbbc1cb86b8d60c86fe9cbf99ec72de28cb157cbe869c95df4d32efa96", size = 2484860, upload-time = "2025-06-09T07:09:24.203Z" }, - { url = "https://files.pythonhosted.org/packages/f5/19/119287fa7e3c8268d33ac6213fc7e7d6e9b74b239d459073d285362ebf2a/cython-3.1.2-cp310-cp310-win_amd64.whl", hash = "sha256:e1f30a1339e03c80968a371ef76bf27a6648c5646cccd14a97e731b6957db97a", size = 2679771, upload-time = "2025-06-09T07:09:26.701Z" }, - { url = "https://files.pythonhosted.org/packages/1f/de/502ddebaf5fe78f13cd6361acdd74710d3a5b15c22a9edc0ea4c873a59a5/cython-3.1.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:5548573e0912d7dc80579827493315384c462e2f15797b91a8ed177686d31eb9", size = 3007792, upload-time = "2025-06-09T07:09:28.777Z" }, - { url = "https://files.pythonhosted.org/packages/bb/c8/91b00bc68effba9ba1ff5b33988052ac4d98fc1ac3021ade7261661299c6/cython-3.1.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:4bf3ea5bc50d80762c490f42846820a868a6406fdb5878ae9e4cc2f11b50228a", size = 2870798, upload-time = "2025-06-09T07:09:30.745Z" }, - { url = "https://files.pythonhosted.org/packages/f4/4b/29d290f14607785112c00a5e1685d766f433531bbd6a11ad229ab61b7a70/cython-3.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:20ce53951d06ab2bca39f153d9c5add1d631c2a44d58bf67288c9d631be9724e", size = 3131280, upload-time = "2025-06-09T07:09:32.785Z" }, - { url = "https://files.pythonhosted.org/packages/38/3c/7c61e9ce25377ec7c4aa0b7ceeed34559ebca7b5cfd384672ba64eeaa4ba/cython-3.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e05a36224e3002d48c7c1c695b3771343bd16bc57eab60d6c5d5e08f3cbbafd8", size = 3223898, upload-time = "2025-06-09T07:09:35.345Z" }, - { url = "https://files.pythonhosted.org/packages/10/96/2d3fbe7e50e98b53ac86fefb48b64262b2e1304b3495e8e25b3cd1c3473e/cython-3.1.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dbc0fc0777c7ab82297c01c61a1161093a22a41714f62e8c35188a309bd5db8e", size = 3291527, upload-time = "2025-06-09T07:09:37.502Z" }, - { url = "https://files.pythonhosted.org/packages/bd/e4/4cd3624e250d86f05bdb121a567865b9cca75cdc6dce4eedd68e626ea4f8/cython-3.1.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:18161ef3dd0e90a944daa2be468dd27696712a5f792d6289e97d2a31298ad688", size = 3184034, upload-time = "2025-06-09T07:09:40.225Z" }, - { url = "https://files.pythonhosted.org/packages/24/de/f8c1243c3e50ec95cb81f3a7936c8cf162f28050db8683e291c3861b46a0/cython-3.1.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:ca45020950cd52d82189d6dfb6225737586be6fe7b0b9d3fadd7daca62eff531", size = 3386084, upload-time = "2025-06-09T07:09:42.206Z" }, - { url = "https://files.pythonhosted.org/packages/c8/95/2365937da44741ef0781bb9ecc1f8f52b38b65acb7293b5fc7c3eaee5346/cython-3.1.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:aaae97d6d07610224be2b73a93e9e3dd85c09aedfd8e47054e3ef5a863387dae", size = 3309974, upload-time = "2025-06-09T07:09:44.801Z" }, - { url = "https://files.pythonhosted.org/packages/9b/b8/280eed114110a1a3aa9e2e76bcd06cdd5ef0df7ab77c0be9d5378ca28c57/cython-3.1.2-cp311-cp311-win32.whl", hash = "sha256:3d439d9b19e7e70f6ff745602906d282a853dd5219d8e7abbf355de680c9d120", size = 2482942, upload-time = "2025-06-09T07:09:46.583Z" }, - { url = "https://files.pythonhosted.org/packages/a2/50/0aa65be5a4ab65bde3224b8fd23ed795f699d1e724ac109bb0a32036b82d/cython-3.1.2-cp311-cp311-win_amd64.whl", hash = "sha256:8efa44ee2f1876e40eb5e45f6513a19758077c56bf140623ccab43d31f873b61", size = 2686535, upload-time = "2025-06-09T07:09:48.345Z" }, - { url = "https://files.pythonhosted.org/packages/22/86/9393ab7204d5bb65f415dd271b658c18f57b9345d06002cae069376a5a7a/cython-3.1.2-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:9c2c4b6f9a941c857b40168b3f3c81d514e509d985c2dcd12e1a4fea9734192e", size = 3015898, upload-time = "2025-06-09T07:09:50.79Z" }, - { url = "https://files.pythonhosted.org/packages/f9/b8/3d10ac37ab7b7ee60bc6bfb48f6682ebee7fddaccf56e1e135f0d46ca79f/cython-3.1.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:bdbc115bbe1b8c1dcbcd1b03748ea87fa967eb8dfc3a1a9bb243d4a382efcff4", size = 2846204, upload-time = "2025-06-09T07:09:52.832Z" }, - { url = "https://files.pythonhosted.org/packages/f8/34/637771d8e10ebabc34a34cdd0d63fe797b66c334e150189955bf6442d710/cython-3.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c05111f89db1ca98edc0675cfaa62be47b3ff519a29876eb095532a9f9e052b8", size = 3080671, upload-time = "2025-06-09T07:09:54.924Z" }, - { url = "https://files.pythonhosted.org/packages/6b/c8/383ad1851fb272920a152c5a30bb6f08c3471b5438079d9488fc3074a170/cython-3.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f6e7188df8709be32cfdfadc7c3782e361c929df9132f95e1bbc90a340dca3c7", size = 3199022, upload-time = "2025-06-09T07:09:56.978Z" }, - { url = "https://files.pythonhosted.org/packages/e6/11/20adc8f2db37a29f245e8fd4b8b8a8245fce4bbbd128185cc9a7b1065e4c/cython-3.1.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1c0ecc71e60a051732c2607b8eb8f2a03a5dac09b28e52b8af323c329db9987b", size = 3241337, upload-time = "2025-06-09T07:09:59.156Z" }, - { url = "https://files.pythonhosted.org/packages/6f/0b/491f1fd3e177cccb6bb6d52f9609f78d395edde83ac47ebb06d21717ca29/cython-3.1.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:f27143cf88835c8bcc9bf3304953f23f377d1d991e8942982fe7be344c7cfce3", size = 3131808, upload-time = "2025-06-09T07:10:01.31Z" }, - { url = "https://files.pythonhosted.org/packages/db/d2/5e7053a3214c9baa7ad72940555eb87cf4750e597f10b2bb43db62c3f39f/cython-3.1.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:d8c43566701133f53bf13485839d8f3f309095fe0d3b9d0cd5873073394d2edc", size = 3340319, upload-time = "2025-06-09T07:10:03.485Z" }, - { url = "https://files.pythonhosted.org/packages/95/42/4842f8ddac9b36c94ae08b23c7fcde3f930c1dd49ac8992bb5320a4d96b5/cython-3.1.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:a3bb893e85f027a929c1764bb14db4c31cbdf8a96f59a78f608f2ba7cfbbce95", size = 3287370, upload-time = "2025-06-09T07:10:05.637Z" }, - { url = "https://files.pythonhosted.org/packages/03/0d/417745ed75d414176e50310087b43299a3e611e75c379ff998f60f2ca1a8/cython-3.1.2-cp312-cp312-win32.whl", hash = "sha256:12c5902f105e43ca9af7874cdf87a23627f98c15d5a4f6d38bc9d334845145c0", size = 2487734, upload-time = "2025-06-09T07:10:07.591Z" }, - { url = "https://files.pythonhosted.org/packages/8e/82/df61d09ab81979ba171a8252af8fb8a3b26a0f19d1330c2679c11fe41667/cython-3.1.2-cp312-cp312-win_amd64.whl", hash = "sha256:06789eb7bd2e55b38b9dd349e9309f794aee0fed99c26ea5c9562d463877763f", size = 2695542, upload-time = "2025-06-09T07:10:09.545Z" }, - { url = "https://files.pythonhosted.org/packages/7b/e2/355354a00a4ee7029b89767a280272f91c7e68b6edb686690992aaa6c32c/cython-3.1.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:cc22e5f18af436c894b90c257130346930fdc860d7f42b924548c591672beeef", size = 2999991, upload-time = "2025-06-09T07:10:11.825Z" }, - { url = "https://files.pythonhosted.org/packages/7c/d6/fb1033396585fd900adda9a410624b96d2a37b5f7f3685f0bdc5fa2bafe0/cython-3.1.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:42c7bffb0fe9898996c7eef9eb74ce3654553c7a3a3f3da66e5a49f801904ce0", size = 2831764, upload-time = "2025-06-09T07:10:14.578Z" }, - { url = "https://files.pythonhosted.org/packages/28/46/2bbcd5a8a67e4ec0dbdf73b0b85add085e401d782cdc9291673aeaf05fc2/cython-3.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:88dc7fd54bfae78c366c6106a759f389000ea4dfe8ed9568af9d2f612825a164", size = 3068467, upload-time = "2025-06-09T07:10:17.158Z" }, - { url = "https://files.pythonhosted.org/packages/b3/9b/20a8a12d1454416141479380f7722f2ad298d2b41d0d7833fc409894715d/cython-3.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:80d0ce057672ca50728153757d022842d5dcec536b50c79615a22dda2a874ea0", size = 3186690, upload-time = "2025-06-09T07:10:19.257Z" }, - { url = "https://files.pythonhosted.org/packages/3a/9f/20cdecae7966dfbaff198952bcee745e402072a3b6565dfebb41202b55f8/cython-3.1.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:eda6a43f1b78eae0d841698916eef661d15f8bc8439c266a964ea4c504f05612", size = 3212888, upload-time = "2025-06-09T07:10:22.648Z" }, - { url = "https://files.pythonhosted.org/packages/fe/6a/ae723af7a2c9fe9e737468c046d953b34d427093c4974d34c15174cf7efe/cython-3.1.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:b4c516d103e87c2e9c1ab85227e4d91c7484c1ba29e25f8afbf67bae93fee164", size = 3117859, upload-time = "2025-06-09T07:10:24.772Z" }, - { url = "https://files.pythonhosted.org/packages/f5/e9/25a5f5c962f2f331dc2ff74a62046e35ec0ffd08f0da6fa51261101a5e2e/cython-3.1.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:7542f1d18ab2cd22debc72974ec9e53437a20623d47d6001466e430538d7df54", size = 3315382, upload-time = "2025-06-09T07:10:27.415Z" }, - { url = "https://files.pythonhosted.org/packages/4f/d2/2ee59f5e31b1d7e397ca0f3899559681a44dd3502fa8b68d2bb285f54aa7/cython-3.1.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:63335513c06dcec4ecdaa8598f36c969032149ffd92a461f641ee363dc83c7ad", size = 3273216, upload-time = "2025-06-09T07:10:29.603Z" }, - { url = "https://files.pythonhosted.org/packages/a7/88/e792eb40d8a17010793da2f6c0f72624ec2b7964fccba8d5c544aed16400/cython-3.1.2-cp313-cp313-win32.whl", hash = "sha256:b377d542299332bfeb61ec09c57821b10f1597304394ba76544f4d07780a16df", size = 2482057, upload-time = "2025-06-09T07:10:31.547Z" }, - { url = "https://files.pythonhosted.org/packages/c2/94/65ba40faeafe74845ba22b61aff7d73475671c3bd24bffc6cba53f3b0063/cython-3.1.2-cp313-cp313-win_amd64.whl", hash = "sha256:8ab1319c77f15b0ae04b3fb03588df3afdec4cf79e90eeea5c961e0ebd8fdf72", size = 2693103, upload-time = "2025-06-09T07:10:33.696Z" }, - { url = "https://files.pythonhosted.org/packages/25/d6/ef8557d5e75cc57d55df579af4976935ee111a85bbee4a5b72354e257066/cython-3.1.2-py3-none-any.whl", hash = "sha256:d23fd7ffd7457205f08571a42b108a3cf993e83a59fe4d72b42e6fc592cf2639", size = 1224753, upload-time = "2025-06-09T07:08:44.849Z" }, +version = "3.2.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/29/17/55fc687ba986f2210298fa2f60fec265fa3004c3f9a1e958ea1fe2d4e061/cython-3.2.2.tar.gz", hash = "sha256:c3add3d483acc73129a61d105389344d792c17e7c1cee24863f16416bd071634", size = 3275797, upload-time = "2025-11-30T12:48:20.942Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e0/ba/d785f60564a43bddbb7316134252a55d67ff6f164f0be90c4bf31482da82/cython-3.2.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:d140c2701cbb8cf960300cf1b67f3b4fa9d294d32e51b85f329bff56936a82fd", size = 2951181, upload-time = "2025-11-30T12:48:39.723Z" }, + { url = "https://files.pythonhosted.org/packages/8c/36/277ea908bd7a326adcce5f67581926783ec11a4402ead0719e72555da2e7/cython-3.2.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:50bbaabee733fd2780985e459fc20f655e02def83e8eff10220ad88455a34622", size = 3243194, upload-time = "2025-11-30T12:48:41.862Z" }, + { url = "https://files.pythonhosted.org/packages/74/87/7776495bbff80bdd7754f4849bfde126b1d97741df5bc58a3a00af641747/cython-3.2.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a9509f1e9c41c86b790cff745bb31927bbc861662a3b462596d71d3d2a578abb", size = 3378096, upload-time = "2025-11-30T12:48:43.584Z" }, + { url = "https://files.pythonhosted.org/packages/a5/d0/fabb9f4767f7101f1c0d6b23116d6d250148f656dac152afd792756661a8/cython-3.2.2-cp311-cp311-win_amd64.whl", hash = "sha256:034ab96cb8bc8e7432bc27491f8d66f51e435b1eb21ddc03aa844be8f21ad847", size = 2768932, upload-time = "2025-11-30T12:48:45.193Z" }, + { url = "https://files.pythonhosted.org/packages/57/0f/6fd78dc581373722bb9dedfc90c35b59ba88af988756315af227a877c7a2/cython-3.2.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:692a41c8fe06fb2dc55ca2c8d71c80c469fd16fe69486ed99f3b3cbb2d3af83f", size = 2968037, upload-time = "2025-11-30T12:48:47.279Z" }, + { url = "https://files.pythonhosted.org/packages/b0/52/50b6263c2fbad73aae8911ce54641ee1739d430a0592d3b3510591d7842b/cython-3.2.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:098590c1dc309f8a0406ade031963a95a87714296b425539f9920aebf924560d", size = 3223137, upload-time = "2025-11-30T12:48:48.951Z" }, + { url = "https://files.pythonhosted.org/packages/d6/44/4e34d161674c9162c6eb9ddef0cd69d41d92ae7e6dee3945fed3a6871ebe/cython-3.2.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a3898c076e9c458bcb3e4936187919fda5f5365fe4c567d35d2b003444b6f3fe", size = 3390943, upload-time = "2025-11-30T12:48:51.125Z" }, + { url = "https://files.pythonhosted.org/packages/62/8a/ffc2df024c1341737008fbaf0fbea51ef983a7146b43b84a239f197cf005/cython-3.2.2-cp312-cp312-win_amd64.whl", hash = "sha256:2b910b89a2a71004064c5e890b9512a251eda63fae252caa0feb9835057035f9", size = 2756403, upload-time = "2025-11-30T12:48:52.929Z" }, + { url = "https://files.pythonhosted.org/packages/a2/4f/b5355918962ec28b376eb8e357c718d58baf32d6df7017be8d147dd4ba29/cython-3.2.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:aa24cd0bdab27ca099b2467806c684404add597c1108e07ddf7b6471653c85d7", size = 2958578, upload-time = "2025-11-30T12:48:55.354Z" }, + { url = "https://files.pythonhosted.org/packages/46/21/a8038c8253e7a5241ed1db6d031bac586f7a502d92f487124abbc3f3e94f/cython-3.2.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:60f4aa425e1ff98abf8d965ae7020f06dd2cbc01dbd945137d2f9cca4ff0524a", size = 3212479, upload-time = "2025-11-30T12:48:57.567Z" }, + { url = "https://files.pythonhosted.org/packages/57/c1/76928c07176a4402c74d5b304936ad8ee167dd04a07cf7dca545e8c25f9b/cython-3.2.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a473df474ba89e9fee81ee82b31062a267f9e598096b222783477e56d02ad12c", size = 3374773, upload-time = "2025-11-30T12:48:59.318Z" }, + { url = "https://files.pythonhosted.org/packages/fa/cb/ce641e07ba9c0cde8468e83e0214fb87020b74ba34dbb9dfe8d250a327f5/cython-3.2.2-cp313-cp313-win_amd64.whl", hash = "sha256:b4df52101209817fde7284cf779156f79142fb639b1d7840f11680ff4bb30604", size = 2754492, upload-time = "2025-11-30T12:49:01.029Z" }, + { url = "https://files.pythonhosted.org/packages/c0/f2/cd60f639f0fde38b71319d7b6808e1ff17a6fd7f3feaff475b866a5c0aef/cython-3.2.2-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:177faf4d61e9f2d4d2db61194ac9ec16d3fe3041c1b6830f871a01935319eeb3", size = 2969023, upload-time = "2025-11-30T12:49:02.734Z" }, + { url = "https://files.pythonhosted.org/packages/5d/45/6f155a9ad125536d8f30716c4d7571caae73ec811039d3ae33f9b535090d/cython-3.2.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:8db28aef793c81dc69383b619ca508668998aaf099cd839d3cbae85184cce744", size = 3258270, upload-time = "2025-11-30T12:49:04.878Z" }, + { url = "https://files.pythonhosted.org/packages/af/7e/022c25886fdc3ff6a005b6ae4a1c3d8522006bb738367aa5bd6c2590130b/cython-3.2.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:3de43a5786033a27fae1c882feb5ff0d023c38b83356e6800c1be0bcd6cf9f11", size = 3384504, upload-time = "2025-11-30T12:49:07.078Z" }, + { url = "https://files.pythonhosted.org/packages/b6/07/1e3e4faf6f785d5ba053e9d6320b3f338162dc122c27a7c540b49615fc39/cython-3.2.2-cp314-cp314-win_amd64.whl", hash = "sha256:fed44d0ab2d36f1b0301c770b0dafec23bcb9700d58e7769cd6d9136b3304c11", size = 2791504, upload-time = "2025-11-30T12:49:08.729Z" }, + { url = "https://files.pythonhosted.org/packages/f4/69/5430879d35235ec3d5ffd778862173b6419390509ae4e37a72bdd45d9e86/cython-3.2.2-cp39-abi3-macosx_10_9_x86_64.whl", hash = "sha256:a6387e3ad31342443916db9a419509935fddd8d4cbac34aab9c895ae55326a56", size = 2874031, upload-time = "2025-11-30T12:49:18.34Z" }, + { url = "https://files.pythonhosted.org/packages/51/fa/584f4b56b35b3e7a43dc16603dd722cb5528484da67c27136534b782827b/cython-3.2.2-cp39-abi3-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:436eb562d0affbc0b959f62f3f9c1ed251b9499e4f29c1d19514ae859894b6bf", size = 3210813, upload-time = "2025-11-30T12:49:20.55Z" }, + { url = "https://files.pythonhosted.org/packages/d1/d4/063c34a34d9ef54836a5dafb100b8f4fdbdaa63942913fe93f9eb93a11a2/cython-3.2.2-cp39-abi3-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:f560ff3aea5b5df93853ec7bf1a1e9623d6d511f4192f197559aca18fca43392", size = 2855611, upload-time = "2025-11-30T12:49:22.303Z" }, + { url = "https://files.pythonhosted.org/packages/b9/44/c0b8854e0bf6d444c88cc2050f550d964596daea20eaf1bc592fcfde2782/cython-3.2.2-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:d8c93fe128b58942832b1fcac96e48f93c2c69b569eff0d38d30fb5995fecfa0", size = 2992824, upload-time = "2025-11-30T12:49:24.02Z" }, + { url = "https://files.pythonhosted.org/packages/90/6f/741186935c52de99acf4d7fad5c3dcf28d980b4c95d171d9618f9c399316/cython-3.2.2-cp39-abi3-musllinux_1_2_armv7l.whl", hash = "sha256:b4fe499eed7cd70b2aa4e096b9ce2588f5e6fdf049b46d40a5e55efcde6e4904", size = 2890389, upload-time = "2025-11-30T12:49:25.783Z" }, + { url = "https://files.pythonhosted.org/packages/5c/79/3e487876addd0d69c148a529f3973c1942498ad39cede1e63565676064ed/cython-3.2.2-cp39-abi3-musllinux_1_2_i686.whl", hash = "sha256:14432d7f207245a3c35556155873f494784169297b28978a6204f1c60d31553e", size = 3224881, upload-time = "2025-11-30T12:49:27.484Z" }, + { url = "https://files.pythonhosted.org/packages/15/b9/d9a103feb74d04579c6bde7b0cad6d5f45c002d843ca70788a5758707b68/cython-3.2.2-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:820c4a99dbf6b3e6c0300be42b4040b501eff0e1feeb80cfa52c48a346fb0df2", size = 3114308, upload-time = "2025-11-30T12:49:29.292Z" }, + { url = "https://files.pythonhosted.org/packages/18/56/90445707cff62ab72136857a0134c5e50f9c73920c1a3af5218dfdae1c19/cython-3.2.2-cp39-abi3-win32.whl", hash = "sha256:826cad0ad43ab05a26e873b5d625f64d458dc739ec6fdeecab848b60a91c4252", size = 2435212, upload-time = "2025-11-30T12:49:32.179Z" }, + { url = "https://files.pythonhosted.org/packages/44/54/25a98c2731521ac9fc18e17d79a0e7d58164d4db398f09e1bd24cdd27ed1/cython-3.2.2-cp39-abi3-win_arm64.whl", hash = "sha256:5f818d40bbcf17e2089e2de7840f0de1c0ca527acf9b044aba79d5f5d8a5bdba", size = 2440536, upload-time = "2025-11-30T12:49:34.109Z" }, + { url = "https://files.pythonhosted.org/packages/76/f2/98fd8d0b514622a789fd2824b59bd6041b799aaeeba14a8d92d52f6654dd/cython-3.2.2-py3-none-any.whl", hash = "sha256:13b99ecb9482aff6a6c12d1ca6feef6940c507af909914b49f568de74fa965fb", size = 1255106, upload-time = "2025-11-30T12:48:18.454Z" }, ] [[package]] name = "debugpy" -version = "1.8.14" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/bd/75/087fe07d40f490a78782ff3b0a30e3968936854105487decdb33446d4b0e/debugpy-1.8.14.tar.gz", hash = "sha256:7cd287184318416850aa8b60ac90105837bb1e59531898c07569d197d2ed5322", size = 1641444, upload-time = "2025-04-10T19:46:10.981Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/fc/df/156df75a41aaebd97cee9d3870fe68f8001b6c1c4ca023e221cfce69bece/debugpy-1.8.14-cp310-cp310-macosx_14_0_x86_64.whl", hash = "sha256:93fee753097e85623cab1c0e6a68c76308cd9f13ffdf44127e6fab4fbf024339", size = 2076510, upload-time = "2025-04-10T19:46:13.315Z" }, - { url = "https://files.pythonhosted.org/packages/69/cd/4fc391607bca0996db5f3658762106e3d2427beaef9bfd363fd370a3c054/debugpy-1.8.14-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3d937d93ae4fa51cdc94d3e865f535f185d5f9748efb41d0d49e33bf3365bd79", size = 3559614, upload-time = "2025-04-10T19:46:14.647Z" }, - { url = "https://files.pythonhosted.org/packages/1a/42/4e6d2b9d63e002db79edfd0cb5656f1c403958915e0e73ab3e9220012eec/debugpy-1.8.14-cp310-cp310-win32.whl", hash = "sha256:c442f20577b38cc7a9aafecffe1094f78f07fb8423c3dddb384e6b8f49fd2987", size = 5208588, upload-time = "2025-04-10T19:46:16.233Z" }, - { url = "https://files.pythonhosted.org/packages/97/b1/cc9e4e5faadc9d00df1a64a3c2d5c5f4b9df28196c39ada06361c5141f89/debugpy-1.8.14-cp310-cp310-win_amd64.whl", hash = "sha256:f117dedda6d969c5c9483e23f573b38f4e39412845c7bc487b6f2648df30fe84", size = 5241043, upload-time = "2025-04-10T19:46:17.768Z" }, - { url = "https://files.pythonhosted.org/packages/67/e8/57fe0c86915671fd6a3d2d8746e40485fd55e8d9e682388fbb3a3d42b86f/debugpy-1.8.14-cp311-cp311-macosx_14_0_universal2.whl", hash = "sha256:1b2ac8c13b2645e0b1eaf30e816404990fbdb168e193322be8f545e8c01644a9", size = 2175064, upload-time = "2025-04-10T19:46:19.486Z" }, - { url = "https://files.pythonhosted.org/packages/3b/97/2b2fd1b1c9569c6764ccdb650a6f752e4ac31be465049563c9eb127a8487/debugpy-1.8.14-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cf431c343a99384ac7eab2f763980724834f933a271e90496944195318c619e2", size = 3132359, upload-time = "2025-04-10T19:46:21.192Z" }, - { url = "https://files.pythonhosted.org/packages/c0/ee/b825c87ed06256ee2a7ed8bab8fb3bb5851293bf9465409fdffc6261c426/debugpy-1.8.14-cp311-cp311-win32.whl", hash = "sha256:c99295c76161ad8d507b413cd33422d7c542889fbb73035889420ac1fad354f2", size = 5133269, upload-time = "2025-04-10T19:46:23.047Z" }, - { url = "https://files.pythonhosted.org/packages/d5/a6/6c70cd15afa43d37839d60f324213843174c1d1e6bb616bd89f7c1341bac/debugpy-1.8.14-cp311-cp311-win_amd64.whl", hash = "sha256:7816acea4a46d7e4e50ad8d09d963a680ecc814ae31cdef3622eb05ccacf7b01", size = 5158156, upload-time = "2025-04-10T19:46:24.521Z" }, - { url = "https://files.pythonhosted.org/packages/d9/2a/ac2df0eda4898f29c46eb6713a5148e6f8b2b389c8ec9e425a4a1d67bf07/debugpy-1.8.14-cp312-cp312-macosx_14_0_universal2.whl", hash = "sha256:8899c17920d089cfa23e6005ad9f22582fd86f144b23acb9feeda59e84405b84", size = 2501268, upload-time = "2025-04-10T19:46:26.044Z" }, - { url = "https://files.pythonhosted.org/packages/10/53/0a0cb5d79dd9f7039169f8bf94a144ad3efa52cc519940b3b7dde23bcb89/debugpy-1.8.14-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f6bb5c0dcf80ad5dbc7b7d6eac484e2af34bdacdf81df09b6a3e62792b722826", size = 4221077, upload-time = "2025-04-10T19:46:27.464Z" }, - { url = "https://files.pythonhosted.org/packages/f8/d5/84e01821f362327bf4828728aa31e907a2eca7c78cd7c6ec062780d249f8/debugpy-1.8.14-cp312-cp312-win32.whl", hash = "sha256:281d44d248a0e1791ad0eafdbbd2912ff0de9eec48022a5bfbc332957487ed3f", size = 5255127, upload-time = "2025-04-10T19:46:29.467Z" }, - { url = "https://files.pythonhosted.org/packages/33/16/1ed929d812c758295cac7f9cf3dab5c73439c83d9091f2d91871e648093e/debugpy-1.8.14-cp312-cp312-win_amd64.whl", hash = "sha256:5aa56ef8538893e4502a7d79047fe39b1dae08d9ae257074c6464a7b290b806f", size = 5297249, upload-time = "2025-04-10T19:46:31.538Z" }, - { url = "https://files.pythonhosted.org/packages/4d/e4/395c792b243f2367d84202dc33689aa3d910fb9826a7491ba20fc9e261f5/debugpy-1.8.14-cp313-cp313-macosx_14_0_universal2.whl", hash = "sha256:329a15d0660ee09fec6786acdb6e0443d595f64f5d096fc3e3ccf09a4259033f", size = 2485676, upload-time = "2025-04-10T19:46:32.96Z" }, - { url = "https://files.pythonhosted.org/packages/ba/f1/6f2ee3f991327ad9e4c2f8b82611a467052a0fb0e247390192580e89f7ff/debugpy-1.8.14-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0f920c7f9af409d90f5fd26e313e119d908b0dd2952c2393cd3247a462331f15", size = 4217514, upload-time = "2025-04-10T19:46:34.336Z" }, - { url = "https://files.pythonhosted.org/packages/79/28/b9d146f8f2dc535c236ee09ad3e5ac899adb39d7a19b49f03ac95d216beb/debugpy-1.8.14-cp313-cp313-win32.whl", hash = "sha256:3784ec6e8600c66cbdd4ca2726c72d8ca781e94bce2f396cc606d458146f8f4e", size = 5254756, upload-time = "2025-04-10T19:46:36.199Z" }, - { url = "https://files.pythonhosted.org/packages/e0/62/a7b4a57013eac4ccaef6977966e6bec5c63906dd25a86e35f155952e29a1/debugpy-1.8.14-cp313-cp313-win_amd64.whl", hash = "sha256:684eaf43c95a3ec39a96f1f5195a7ff3d4144e4a18d69bb66beeb1a6de605d6e", size = 5297119, upload-time = "2025-04-10T19:46:38.141Z" }, - { url = "https://files.pythonhosted.org/packages/97/1a/481f33c37ee3ac8040d3d51fc4c4e4e7e61cb08b8bc8971d6032acc2279f/debugpy-1.8.14-py2.py3-none-any.whl", hash = "sha256:5cd9a579d553b6cb9759a7908a41988ee6280b961f24f63336835d9418216a20", size = 5256230, upload-time = "2025-04-10T19:46:54.077Z" }, +version = "1.8.17" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/15/ad/71e708ff4ca377c4230530d6a7aa7992592648c122a2cd2b321cf8b35a76/debugpy-1.8.17.tar.gz", hash = "sha256:fd723b47a8c08892b1a16b2c6239a8b96637c62a59b94bb5dab4bac592a58a8e", size = 1644129, upload-time = "2025-09-17T16:33:20.633Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d8/53/3af72b5c159278c4a0cf4cffa518675a0e73bdb7d1cac0239b815502d2ce/debugpy-1.8.17-cp311-cp311-macosx_15_0_universal2.whl", hash = "sha256:d3fce3f0e3de262a3b67e69916d001f3e767661c6e1ee42553009d445d1cd840", size = 2207154, upload-time = "2025-09-17T16:33:29.457Z" }, + { url = "https://files.pythonhosted.org/packages/8f/6d/204f407df45600e2245b4a39860ed4ba32552330a0b3f5f160ae4cc30072/debugpy-1.8.17-cp311-cp311-manylinux_2_34_x86_64.whl", hash = "sha256:c6bdf134457ae0cac6fb68205776be635d31174eeac9541e1d0c062165c6461f", size = 3170322, upload-time = "2025-09-17T16:33:30.837Z" }, + { url = "https://files.pythonhosted.org/packages/f2/13/1b8f87d39cf83c6b713de2620c31205299e6065622e7dd37aff4808dd410/debugpy-1.8.17-cp311-cp311-win32.whl", hash = "sha256:e79a195f9e059edfe5d8bf6f3749b2599452d3e9380484cd261f6b7cd2c7c4da", size = 5155078, upload-time = "2025-09-17T16:33:33.331Z" }, + { url = "https://files.pythonhosted.org/packages/c2/c5/c012c60a2922cc91caa9675d0ddfbb14ba59e1e36228355f41cab6483469/debugpy-1.8.17-cp311-cp311-win_amd64.whl", hash = "sha256:b532282ad4eca958b1b2d7dbcb2b7218e02cb934165859b918e3b6ba7772d3f4", size = 5179011, upload-time = "2025-09-17T16:33:35.711Z" }, + { url = "https://files.pythonhosted.org/packages/08/2b/9d8e65beb2751876c82e1aceb32f328c43ec872711fa80257c7674f45650/debugpy-1.8.17-cp312-cp312-macosx_15_0_universal2.whl", hash = "sha256:f14467edef672195c6f6b8e27ce5005313cb5d03c9239059bc7182b60c176e2d", size = 2549522, upload-time = "2025-09-17T16:33:38.466Z" }, + { url = "https://files.pythonhosted.org/packages/b4/78/eb0d77f02971c05fca0eb7465b18058ba84bd957062f5eec82f941ac792a/debugpy-1.8.17-cp312-cp312-manylinux_2_34_x86_64.whl", hash = "sha256:24693179ef9dfa20dca8605905a42b392be56d410c333af82f1c5dff807a64cc", size = 4309417, upload-time = "2025-09-17T16:33:41.299Z" }, + { url = "https://files.pythonhosted.org/packages/37/42/c40f1d8cc1fed1e75ea54298a382395b8b937d923fcf41ab0797a554f555/debugpy-1.8.17-cp312-cp312-win32.whl", hash = "sha256:6a4e9dacf2cbb60d2514ff7b04b4534b0139facbf2abdffe0639ddb6088e59cf", size = 5277130, upload-time = "2025-09-17T16:33:43.554Z" }, + { url = "https://files.pythonhosted.org/packages/72/22/84263b205baad32b81b36eac076de0cdbe09fe2d0637f5b32243dc7c925b/debugpy-1.8.17-cp312-cp312-win_amd64.whl", hash = "sha256:e8f8f61c518952fb15f74a302e068b48d9c4691768ade433e4adeea961993464", size = 5319053, upload-time = "2025-09-17T16:33:53.033Z" }, + { url = "https://files.pythonhosted.org/packages/50/76/597e5cb97d026274ba297af8d89138dfd9e695767ba0e0895edb20963f40/debugpy-1.8.17-cp313-cp313-macosx_15_0_universal2.whl", hash = "sha256:857c1dd5d70042502aef1c6d1c2801211f3ea7e56f75e9c335f434afb403e464", size = 2538386, upload-time = "2025-09-17T16:33:54.594Z" }, + { url = "https://files.pythonhosted.org/packages/5f/60/ce5c34fcdfec493701f9d1532dba95b21b2f6394147234dce21160bd923f/debugpy-1.8.17-cp313-cp313-manylinux_2_34_x86_64.whl", hash = "sha256:3bea3b0b12f3946e098cce9b43c3c46e317b567f79570c3f43f0b96d00788088", size = 4292100, upload-time = "2025-09-17T16:33:56.353Z" }, + { url = "https://files.pythonhosted.org/packages/e8/95/7873cf2146577ef71d2a20bf553f12df865922a6f87b9e8ee1df04f01785/debugpy-1.8.17-cp313-cp313-win32.whl", hash = "sha256:e34ee844c2f17b18556b5bbe59e1e2ff4e86a00282d2a46edab73fd7f18f4a83", size = 5277002, upload-time = "2025-09-17T16:33:58.231Z" }, + { url = "https://files.pythonhosted.org/packages/46/11/18c79a1cee5ff539a94ec4aa290c1c069a5580fd5cfd2fb2e282f8e905da/debugpy-1.8.17-cp313-cp313-win_amd64.whl", hash = "sha256:6c5cd6f009ad4fca8e33e5238210dc1e5f42db07d4b6ab21ac7ffa904a196420", size = 5319047, upload-time = "2025-09-17T16:34:00.586Z" }, + { url = "https://files.pythonhosted.org/packages/de/45/115d55b2a9da6de812696064ceb505c31e952c5d89c4ed1d9bb983deec34/debugpy-1.8.17-cp314-cp314-macosx_15_0_universal2.whl", hash = "sha256:045290c010bcd2d82bc97aa2daf6837443cd52f6328592698809b4549babcee1", size = 2536899, upload-time = "2025-09-17T16:34:02.657Z" }, + { url = "https://files.pythonhosted.org/packages/5a/73/2aa00c7f1f06e997ef57dc9b23d61a92120bec1437a012afb6d176585197/debugpy-1.8.17-cp314-cp314-manylinux_2_34_x86_64.whl", hash = "sha256:b69b6bd9dba6a03632534cdf67c760625760a215ae289f7489a452af1031fe1f", size = 4268254, upload-time = "2025-09-17T16:34:04.486Z" }, + { url = "https://files.pythonhosted.org/packages/86/b5/ed3e65c63c68a6634e3ba04bd10255c8e46ec16ebed7d1c79e4816d8a760/debugpy-1.8.17-cp314-cp314-win32.whl", hash = "sha256:5c59b74aa5630f3a5194467100c3b3d1c77898f9ab27e3f7dc5d40fc2f122670", size = 5277203, upload-time = "2025-09-17T16:34:06.65Z" }, + { url = "https://files.pythonhosted.org/packages/b0/26/394276b71c7538445f29e792f589ab7379ae70fd26ff5577dfde71158e96/debugpy-1.8.17-cp314-cp314-win_amd64.whl", hash = "sha256:893cba7bb0f55161de4365584b025f7064e1f88913551bcd23be3260b231429c", size = 5318493, upload-time = "2025-09-17T16:34:08.483Z" }, + { url = "https://files.pythonhosted.org/packages/b0/d0/89247ec250369fc76db477720a26b2fce7ba079ff1380e4ab4529d2fe233/debugpy-1.8.17-py2.py3-none-any.whl", hash = "sha256:60c7dca6571efe660ccb7a9508d73ca14b8796c4ed484c2002abba714226cfef", size = 5283210, upload-time = "2025-09-17T16:34:25.835Z" }, ] [[package]] @@ -2333,43 +1970,14 @@ wheels = [ [[package]] name = "deprecated" -version = "1.2.18" +version = "1.3.1" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "wrapt" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/98/97/06afe62762c9a8a86af0cfb7bfdab22a43ad17138b07af5b1a58442690a2/deprecated-1.2.18.tar.gz", hash = "sha256:422b6f6d859da6f2ef57857761bfb392480502a64c3028ca9bbe86085d72115d", size = 2928744, upload-time = "2025-01-27T10:46:25.7Z" } +sdist = { url = "https://files.pythonhosted.org/packages/49/85/12f0a49a7c4ffb70572b6c2ef13c90c88fd190debda93b23f026b25f9634/deprecated-1.3.1.tar.gz", hash = "sha256:b1b50e0ff0c1fddaa5708a2c6b0a6588bb09b892825ab2b214ac9ea9d92a5223", size = 2932523, upload-time = "2025-10-30T08:19:02.757Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/6e/c6/ac0b6c1e2d138f1002bcf799d330bd6d85084fece321e662a14223794041/Deprecated-1.2.18-py2.py3-none-any.whl", hash = "sha256:bd5011788200372a32418f888e326a09ff80d0214bd961147cfed01b5c018eec", size = 9998, upload-time = "2025-01-27T10:46:09.186Z" }, -] - -[[package]] -name = "dgl" -version = "2.1.0" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "networkx", version = "3.4.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.11' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform == 'darwin' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (sys_platform == 'darwin' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (sys_platform == 'darwin' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (sys_platform == 'darwin' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (sys_platform == 'darwin' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform == 'darwin' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (sys_platform == 'darwin' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform == 'win32' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (sys_platform == 'win32' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (sys_platform == 'win32' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (sys_platform == 'win32' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (sys_platform == 'win32' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform == 'win32' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (sys_platform == 'win32' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, - { name = "networkx", version = "3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-matpes') or (python_full_version >= '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-matpes') or (python_full_version >= '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform == 'darwin' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform == 'darwin' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (sys_platform == 'darwin' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (sys_platform == 'darwin' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (sys_platform == 'darwin' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (sys_platform == 'darwin' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform == 'darwin' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform == 'win32' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform == 'win32' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (sys_platform == 'win32' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (sys_platform == 'win32' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (sys_platform == 'win32' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (sys_platform == 'win32' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform == 'win32' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'darwin' or sys_platform == 'linux' or sys_platform == 'win32' or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "psutil", marker = "sys_platform == 'darwin' or sys_platform == 'linux' or sys_platform == 'win32' or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "requests", marker = "sys_platform == 'darwin' or sys_platform == 'linux' or sys_platform == 'win32' or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "scipy", marker = "sys_platform == 'darwin' or sys_platform == 'linux' or sys_platform == 'win32' or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "torchdata", marker = "sys_platform == 'darwin' or sys_platform == 'linux' or sys_platform == 'win32' or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "tqdm", marker = "sys_platform == 'darwin' or sys_platform == 'linux' or sys_platform == 'win32' or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn')" }, -] -wheels = [ - { url = "https://files.pythonhosted.org/packages/09/2d/c0a40c0d78a8e9c0c43e7f6e4aebebb39c8bf0f80380db2c1f1ba9f3bdfa/dgl-2.1.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ff74c7119cb1e87c1b06293eba8c22725594517062e74659b1a8636134b16974", size = 6889468, upload-time = "2024-03-05T07:16:21.004Z" }, - { url = "https://files.pythonhosted.org/packages/89/19/08b77e50de7beb9c011905167ab38ecee759a796447ed7ad466484eafb53/dgl-2.1.0-cp310-cp310-macosx_11_0_x86_64.whl", hash = "sha256:1fda987e01987d655e9a2b16281e1f31759bd5088ce08785422055c71abc0298", size = 7464359, upload-time = "2024-03-05T07:16:24.216Z" }, - { url = "https://files.pythonhosted.org/packages/ff/45/44fea6e5228602f5d6ad8b4f5a377f5cf5cb5cb6444d9e7cd99150f13fa2/dgl-2.1.0-cp310-cp310-manylinux1_x86_64.whl", hash = "sha256:336e5aed294b9f2f398be332caa0b256e6386e5a6a3a25dfe0715a161e6c4f94", size = 8548990, upload-time = "2024-03-05T07:16:26.655Z" }, - { url = "https://files.pythonhosted.org/packages/73/72/6bc97419cf8fa1e11420c674fafa3c03e4df9d91bfd8fd802011b5741ce9/dgl-2.1.0-cp310-cp310-manylinux2014_aarch64.whl", hash = "sha256:65f5ae94c4c88433fc4524ab8c431494cfddd8100181d5de6df4ed08aa41d14d", size = 7430720, upload-time = "2024-03-05T07:16:29.505Z" }, - { url = "https://files.pythonhosted.org/packages/bd/15/6571516b8bdd2f8db29e2739bca7afcd6cf75179b156f72f159a0986c9ed/dgl-2.1.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:fc7ea52fa9d42bf507ccf3b43b6d05c5ee3fce4c614033833ef08aa089b89bc6", size = 6872096, upload-time = "2024-03-05T07:16:31.298Z" }, - { url = "https://files.pythonhosted.org/packages/7c/48/c62028815d8f1fadff4dc83bbb9bd2e5aa113835bbe14dad92b716d1fd05/dgl-2.1.0-cp311-cp311-macosx_11_0_x86_64.whl", hash = "sha256:994a7dd11d6da251438762e9fb6657ee2bd9715300aa1f11143a0d61be620ec5", size = 7331725, upload-time = "2024-03-05T07:16:33.862Z" }, - { url = "https://files.pythonhosted.org/packages/15/0b/07c479b28b2b36cbc49f5fa78156fc77f918a4bf5927c9409947d2d3d68d/dgl-2.1.0-cp311-cp311-manylinux1_x86_64.whl", hash = "sha256:050af2b3d54f158be67ae222dbf786b2b35e5d5d6a29fbf2a81b854e99f13adf", size = 8561303, upload-time = "2024-03-05T07:16:36.714Z" }, - { url = "https://files.pythonhosted.org/packages/0d/28/173f36cae067f17ddb45faa4ee91ca5e31efb194edba667761b53b2e1baf/dgl-2.1.0-cp311-cp311-manylinux2014_aarch64.whl", hash = "sha256:3b54764b7fae40d41eb936bbfe9f254b1b11ed4993d8c61be8e81d09d955f72a", size = 7443820, upload-time = "2024-03-05T07:16:40.077Z" }, - { url = "https://files.pythonhosted.org/packages/22/62/6868d769988961d8bb482325c4a6ba3c0007d49ba96d11c79d8c33d016c9/dgl-2.1.0-cp312-cp312-macosx_11_0_x86_64.whl", hash = "sha256:c0abdc0bf4407f67d1df45b9acd5f8017d26ef13aebaaec973a35905cb70e4ef", size = 7331721, upload-time = "2024-03-05T07:16:43.233Z" }, - { url = "https://files.pythonhosted.org/packages/24/5b/40e7802b5bfda663408841e3f4f5ccdb97ceefae8011f47be22b81c40275/dgl-2.1.0-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:ffebbfbbc2278861601fa44b533e3b4a6f21bbfd742542932cb3af0c7621cffc", size = 6872090, upload-time = "2024-03-05T07:16:45.76Z" }, - { url = "https://files.pythonhosted.org/packages/1a/78/84bc05dd88db7a15eb32798d538cb8fd5e4e4c6fa966a650844a43c7beb5/dgl-2.1.0-cp312-cp312-manylinux1_x86_64.whl", hash = "sha256:af9b5974d667d11b9b2dc153981241c248a314c1a54880d4a2af12a00470b78d", size = 8551552, upload-time = "2024-03-05T07:16:47.994Z" }, - { url = "https://files.pythonhosted.org/packages/ae/d7/910035a1501d13b7fd7d90c5333ecc17ff7ebfa43195e2f856a0140d22a4/dgl-2.1.0-cp312-cp312-manylinux2014_aarch64.whl", hash = "sha256:0f8605418e71191f7a4b43a5a6597e655512c7a48171ac042993d77c676f3092", size = 7435020, upload-time = "2024-03-05T07:16:50.847Z" }, + { url = "https://files.pythonhosted.org/packages/84/d0/205d54408c08b13550c733c4b85429e7ead111c7f0014309637425520a9a/deprecated-1.3.1-py2.py3-none-any.whl", hash = "sha256:597bfef186b6f60181535a29fbe44865ce137a5079f295b479886c82729d5f3f", size = 11298, upload-time = "2025-10-30T08:19:00.758Z" }, ] [[package]] @@ -2392,11 +2000,11 @@ wheels = [ [[package]] name = "distlib" -version = "0.3.9" +version = "0.4.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/0d/dd/1bec4c5ddb504ca60fc29472f3d27e8d4da1257a854e1d96742f15c1d02d/distlib-0.3.9.tar.gz", hash = "sha256:a60f20dea646b8a33f3e7772f74dc0b2d0772d2837ee1342a00645c81edf9403", size = 613923, upload-time = "2024-10-09T18:35:47.551Z" } +sdist = { url = "https://files.pythonhosted.org/packages/96/8e/709914eb2b5749865801041647dc7f4e6d00b549cfe88b65ca192995f07c/distlib-0.4.0.tar.gz", hash = "sha256:feec40075be03a04501a973d81f633735b4b69f98b05450592310c0f401a4e0d", size = 614605, upload-time = "2025-07-17T16:52:00.465Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/91/a1/cf2472db20f7ce4a6be1253a81cfdf85ad9c7885ffbed7047fb72c24cf87/distlib-0.3.9-py2.py3-none-any.whl", hash = "sha256:47f8c22fd27c27e25a65601af709b38e4f0a45ea4fc2e710f65755fa8caaaf87", size = 468973, upload-time = "2024-10-09T18:35:44.272Z" }, + { url = "https://files.pythonhosted.org/packages/33/6b/e0547afaf41bf2c42e52430072fa5658766e3d65bd4b03a563d1b6336f57/distlib-0.4.0-py2.py3-none-any.whl", hash = "sha256:9659f7d87e46584a30b5780e43ac7a2143098441670ff0a49d5f9034c54a6c16", size = 469047, upload-time = "2025-07-17T16:51:58.613Z" }, ] [[package]] @@ -2414,14 +2022,6 @@ version = "0.1.8" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/f8/6d/f1997aac42e0f550c1e952a0b920eaa0bfc4d27d0421499881b934b969fc/dm-tree-0.1.8.tar.gz", hash = "sha256:0fcaabbb14e7980377439e7140bd05552739ca5e515ecb3119f234acee4b9430", size = 35384, upload-time = "2022-12-18T09:46:55.953Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/be/3b/d5ef06ee302ecea27351b18c28f2bde7ac982c774967d7bc82f7765fa0cb/dm_tree-0.1.8-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:35cc164a79336bfcfafb47e5f297898359123bbd3330c1967f0c4994f9cf9f60", size = 167626, upload-time = "2022-12-18T09:46:03.126Z" }, - { url = "https://files.pythonhosted.org/packages/63/29/b7c77a2500742ebbc956c2e6c9c215abeb4348040ddda72a61c760999d64/dm_tree-0.1.8-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:39070ba268c0491af9fe7a58644d99e8b4f2cde6e5884ba3380bddc84ed43d5f", size = 115351, upload-time = "2022-12-18T09:46:05.517Z" }, - { url = "https://files.pythonhosted.org/packages/ab/b0/8bf47b99c302a01db55ec43645663a385b8d3dfeb94b5fe6adf03b1121dc/dm_tree-0.1.8-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2869228d9c619074de501a3c10dc7f07c75422f8fab36ecdcb859b6f1b1ec3ef", size = 110653, upload-time = "2022-12-18T09:46:07.869Z" }, - { url = "https://files.pythonhosted.org/packages/4c/4b/046c634913643333b1cf8f0dedd45683278013c0fb187fe36915b233ac7b/dm_tree-0.1.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d20f2faa3672b52e5013f4077117bfb99c4cfc0b445d3bde1584c34032b57436", size = 146732, upload-time = "2023-01-21T08:49:45.871Z" }, - { url = "https://files.pythonhosted.org/packages/ea/79/8f65fee71f3cf8bd993031578425fb10f42840b5d9a7298da0c1d52281f7/dm_tree-0.1.8-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5483dca4d7eb1a0d65fe86d3b6a53ae717face83c1f17e0887b1a4a64ae5c410", size = 174704, upload-time = "2023-01-21T08:49:48.433Z" }, - { url = "https://files.pythonhosted.org/packages/3e/9e/20bdcf1953949d8aa1e614f5c6cc1f9b556d4d72e0731e5aa1d353423bb1/dm_tree-0.1.8-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1d7c26e431fc93cc7e0cba867eb000db6a05f6f2b25af11ac4e9dada88fc5bca", size = 150386, upload-time = "2023-01-21T08:49:50.439Z" }, - { url = "https://files.pythonhosted.org/packages/cc/2b/a13e3a44f9121ecab0057af462baeb64dc50eb269de52648db8823bc12ae/dm_tree-0.1.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e4d714371bb08839e4e5e29024fc95832d9affe129825ef38836b143028bd144", size = 152844, upload-time = "2022-12-18T09:46:10.308Z" }, - { url = "https://files.pythonhosted.org/packages/f0/5d/86eb4e071ff395fed0783076e94c56ad9a97ba7b6e49b5aaf1b651a4fcd3/dm_tree-0.1.8-cp310-cp310-win_amd64.whl", hash = "sha256:d40fa4106ca6edc66760246a08f500ec0c85ef55c762fb4a363f6ee739ba02ee", size = 101319, upload-time = "2022-12-18T09:46:12.352Z" }, { url = "https://files.pythonhosted.org/packages/e2/64/901b324804793743f0fdc9e47db893bf0ded9e074850fab2440af330fe83/dm_tree-0.1.8-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad16ceba90a56ec47cf45b21856d14962ac314787975ef786efb5e6e9ca75ec7", size = 167628, upload-time = "2022-12-18T09:46:14.195Z" }, { url = "https://files.pythonhosted.org/packages/b1/65/4f10a68dde5fa0c91043c9c899e9bc79b1657ba932d39a5f8525c0058e68/dm_tree-0.1.8-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:803bfc53b4659f447ac694dbd04235f94a73ef7c1fd1e0df7c84ac41e0bc963b", size = 115351, upload-time = "2022-12-18T09:46:16.467Z" }, { url = "https://files.pythonhosted.org/packages/08/e2/4c29cb9876456517f21979ddcbb6048f28a3b52c61aa9d14d42adafcdca4/dm_tree-0.1.8-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:378cc8ad93c5fe3590f405a309980721f021c790ca1bdf9b15bb1d59daec57f5", size = 110661, upload-time = "2022-12-18T09:46:18.821Z" }, @@ -2441,11 +2041,11 @@ wheels = [ [[package]] name = "dnspython" -version = "2.7.0" +version = "2.8.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/b5/4a/263763cb2ba3816dd94b08ad3a33d5fdae34ecb856678773cc40a3605829/dnspython-2.7.0.tar.gz", hash = "sha256:ce9c432eda0dc91cf618a5cedf1a4e142651196bbcd2c80e89ed5a907e5cfaf1", size = 345197, upload-time = "2024-10-05T20:14:59.362Z" } +sdist = { url = "https://files.pythonhosted.org/packages/8c/8b/57666417c0f90f08bcafa776861060426765fdb422eb10212086fb811d26/dnspython-2.8.0.tar.gz", hash = "sha256:181d3c6996452cb1189c4046c61599b84a5a86e099562ffde77d26984ff26d0f", size = 368251, upload-time = "2025-09-07T18:58:00.022Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/68/1b/e0a87d256e40e8c888847551b20a017a6b98139178505dc7ffb96f04e954/dnspython-2.7.0-py3-none-any.whl", hash = "sha256:b4c34b7d10b51bcc3a5071e7b8dee77939f1e878477eeecc965e9835f63c6c86", size = 313632, upload-time = "2024-10-05T20:14:57.687Z" }, + { url = "https://files.pythonhosted.org/packages/ba/5a/18ad964b0086c6e62e2e7500f7edc89e3faa45033c71c1893d34eed2b2de/dnspython-2.8.0-py3-none-any.whl", hash = "sha256:01d9bbc4a2d76bf0db7c1f729812ded6d912bd318d3b1cf81d30c0f845dbf3af", size = 331094, upload-time = "2025-09-07T18:57:58.071Z" }, ] [[package]] @@ -2468,53 +2068,39 @@ wheels = [ [[package]] name = "dulwich" -version = "0.22.8" +version = "0.24.10" source = { registry = "https://pypi.org/simple" } dependencies = [ + { name = "typing-extensions", marker = "python_full_version < '3.12' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, { name = "urllib3" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/d4/8b/0f2de00c0c0d5881dc39be147ec2918725fb3628deeeb1f27d1c6cf6d9f4/dulwich-0.22.8.tar.gz", hash = "sha256:701547310415de300269331abe29cb5717aa1ea377af826bf513d0adfb1c209b", size = 466542, upload-time = "2025-03-02T23:08:10.375Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/de/4d/0bfc8a96456d033428875003b5104da2c32407363b5b829da5e27553b403/dulwich-0.22.8-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:546176d18b8cc0a492b0f23f07411e38686024cffa7e9d097ae20512a2e57127", size = 925150, upload-time = "2025-03-02T23:06:45.982Z" }, - { url = "https://files.pythonhosted.org/packages/99/71/0dd97cf5a7a09aee93f8266421898d705eba737ca904720450584f471bd3/dulwich-0.22.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7d2434dd72b2ae09b653c9cfe6764a03c25cfbd99fbbb7c426f0478f6fb1100f", size = 994973, upload-time = "2025-03-02T23:06:48.756Z" }, - { url = "https://files.pythonhosted.org/packages/db/40/831bed622eeacfa21f47d1fd75fc0c33a70a2cf1c091ae955be63e94144c/dulwich-0.22.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fe8318bc0921d42e3e69f03716f983a301b5ee4c8dc23c7f2c5bbb28581257a9", size = 1002875, upload-time = "2025-03-02T23:06:50.835Z" }, - { url = "https://files.pythonhosted.org/packages/7c/9e/5255b3927f355c95f6779debf11d551b7bb427a80a11564a1e1b78f0acf6/dulwich-0.22.8-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c7a0f96a2a87f3b4f7feae79d2ac6b94107d6b7d827ac08f2f331b88c8f597a1", size = 1046048, upload-time = "2025-03-02T23:06:53.173Z" }, - { url = "https://files.pythonhosted.org/packages/0c/f9/d3041cea8cbaaffbd4bf95343c5c16d64608200fc5fa26418bee00ebff23/dulwich-0.22.8-cp310-cp310-win32.whl", hash = "sha256:432a37b25733202897b8d67cdd641688444d980167c356ef4e4dd15a17a39a24", size = 592790, upload-time = "2025-03-02T23:06:55.319Z" }, - { url = "https://files.pythonhosted.org/packages/94/95/e90a292fb00ffae4f3fbb53b199574eedfaf57b72b67a8ddb835536fc66b/dulwich-0.22.8-cp310-cp310-win_amd64.whl", hash = "sha256:f3a15e58dac8b8a76073ddca34e014f66f3672a5540a99d49ef6a9c09ab21285", size = 609197, upload-time = "2025-03-02T23:06:57.439Z" }, - { url = "https://files.pythonhosted.org/packages/c3/6e/de1a1c35960d0e399f71725cfcd4dfdb3c391b22c0e5059d991f7ade3488/dulwich-0.22.8-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:0852edc51cff4f4f62976bdaa1d82f6ef248356c681c764c0feb699bc17d5782", size = 925222, upload-time = "2025-03-02T23:06:59.595Z" }, - { url = "https://files.pythonhosted.org/packages/eb/61/b65953b4e9c39268c67038bb8d88516885b720beb25b0f6a0ae95ea3f6b2/dulwich-0.22.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:826aae8b64ac1a12321d6b272fc13934d8f62804fda2bc6ae46f93f4380798eb", size = 994572, upload-time = "2025-03-02T23:07:00.971Z" }, - { url = "https://files.pythonhosted.org/packages/13/eb/07e3974964bfe05888457f7764cfe53b6b95082313c2be06fbbb72116372/dulwich-0.22.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f7ae726f923057d36cdbb9f4fb7da0d0903751435934648b13f1b851f0e38ea1", size = 1002530, upload-time = "2025-03-02T23:07:02.927Z" }, - { url = "https://files.pythonhosted.org/packages/2d/b3/69aebfda4dd4b05ae11af803e4df2d8d350356a30b3b6b6fc662fa1ff729/dulwich-0.22.8-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6987d753227f55cf75ba29a8dab69d1d83308ce483d7a8c6d223086f7a42e125", size = 1046084, upload-time = "2025-03-02T23:07:04.901Z" }, - { url = "https://files.pythonhosted.org/packages/d4/88/ea0f473d726e117f9fcd7c7a95d97f9ba0e0ee9d9005d745a38809d33352/dulwich-0.22.8-cp311-cp311-win32.whl", hash = "sha256:7757b4a2aad64c6f1920082fc1fccf4da25c3923a0ae7b242c08d06861dae6e1", size = 593130, upload-time = "2025-03-02T23:07:07.336Z" }, - { url = "https://files.pythonhosted.org/packages/f9/a8/ed23a435d6922ba7d9601404f473e49acdcb5768a35d89a5bc5fa51d882b/dulwich-0.22.8-cp311-cp311-win_amd64.whl", hash = "sha256:12b243b7e912011c7225dc67480c313ac8d2990744789b876016fb593f6f3e19", size = 609118, upload-time = "2025-03-02T23:07:11.171Z" }, - { url = "https://files.pythonhosted.org/packages/d5/f2/53c5a22a4a9c0033e10f35c293bc533d64fe3e0c4ff4421128a97d6feda9/dulwich-0.22.8-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:d81697f74f50f008bb221ab5045595f8a3b87c0de2c86aa55be42ba97421f3cd", size = 915677, upload-time = "2025-03-02T23:07:13.292Z" }, - { url = "https://files.pythonhosted.org/packages/02/57/7163ed06a2d9bf1f34d89dcc7c5881119beeed287022c997b0a706edcfbe/dulwich-0.22.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7bff1da8e2e6a607c3cb45f5c2e652739589fe891245e1d5b770330cdecbde41", size = 991955, upload-time = "2025-03-02T23:07:14.633Z" }, - { url = "https://files.pythonhosted.org/packages/fa/73/50ddf1f3ad592c2526cb34287f45b07ee6320b850efddda2917cc81ac651/dulwich-0.22.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9969099e15b939d3936f8bee8459eaef7ef5a86cd6173393a17fe28ca3d38aff", size = 1000045, upload-time = "2025-03-02T23:07:16.807Z" }, - { url = "https://files.pythonhosted.org/packages/70/6b/1153b2793bfc34253589badb5fc22ed476cf741dab7854919e6e51cb0441/dulwich-0.22.8-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:017152c51b9a613f0698db28c67cf3e0a89392d28050dbf4f4ac3f657ea4c0dc", size = 1044291, upload-time = "2025-03-02T23:07:18.912Z" }, - { url = "https://files.pythonhosted.org/packages/8a/e3/6b013b98254d7f508f21456832e757b17a9116752979e8b923f89f8c8989/dulwich-0.22.8-cp312-cp312-win32.whl", hash = "sha256:ee70e8bb8798b503f81b53f7a103cb869c8e89141db9005909f79ab1506e26e9", size = 591258, upload-time = "2025-03-02T23:07:21.038Z" }, - { url = "https://files.pythonhosted.org/packages/81/20/b149f68557d42607b5dcc6f57c1650f2136049be617f3e68092c25861275/dulwich-0.22.8-cp312-cp312-win_amd64.whl", hash = "sha256:dc89c6f14dcdcbfee200b0557c59ae243835e42720be143526d834d0e53ed3af", size = 608693, upload-time = "2025-03-02T23:07:23.087Z" }, - { url = "https://files.pythonhosted.org/packages/dc/b7/78116bfe8860edca277d00ac243749c8b94714dc3b4608f0c23fa7f4b78e/dulwich-0.22.8-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:dbade3342376be1cd2409539fe1b901d2d57a531106bbae204da921ef4456a74", size = 915617, upload-time = "2025-03-02T23:07:25.18Z" }, - { url = "https://files.pythonhosted.org/packages/a1/af/28c317a83d6ae9ca93a8decfaa50f09b25a73134f5087a98f51fa5a2d784/dulwich-0.22.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:71420ffb6deebc59b2ce875e63d814509f9c1dc89c76db962d547aebf15670c7", size = 991271, upload-time = "2025-03-02T23:07:26.554Z" }, - { url = "https://files.pythonhosted.org/packages/84/a0/64a0376f79c7fb87ec6e6d9a0e2157f3196d1f5f75618c402645ac5ccf19/dulwich-0.22.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a626adbfac44646a125618266a24133763bdc992bf8bd0702910d67e6b994443", size = 999791, upload-time = "2025-03-02T23:07:28.068Z" }, - { url = "https://files.pythonhosted.org/packages/63/c3/260f060ededcdf5f13a7e63a36329c95225bf8e8c3f50aeca6820850b56a/dulwich-0.22.8-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0f1476c9c4e4ede95714d06c4831883a26680e37b040b8b6230f506e5ba39f51", size = 1043970, upload-time = "2025-03-02T23:07:29.457Z" }, - { url = "https://files.pythonhosted.org/packages/11/47/2bc02dd1c25eb13cb3cd20cd5a55dd9d7b9fa6af95ed574dd913dd67a0fb/dulwich-0.22.8-cp313-cp313-win32.whl", hash = "sha256:b2b31913932bb5bd41658dd398b33b1a2d4d34825123ad54e40912cfdfe60003", size = 590548, upload-time = "2025-03-02T23:07:31.518Z" }, - { url = "https://files.pythonhosted.org/packages/f3/17/66368fa9d4cffd52663d20354a74aa42d3a6d998f1a462e30aff38c99d25/dulwich-0.22.8-cp313-cp313-win_amd64.whl", hash = "sha256:7a44e5a61a7989aca1e301d39cfb62ad2f8853368682f524d6e878b4115d823d", size = 608200, upload-time = "2025-03-02T23:07:33.017Z" }, - { url = "https://files.pythonhosted.org/packages/0a/a3/7f88ba8ed56eaed6206a7d9b35244964a32eb08635be33f2af60819e6431/dulwich-0.22.8-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:7bb18fa09daa1586c1040b3e2777d38d4212a5cdbe47d384ba66a1ac336fcc4c", size = 947436, upload-time = "2025-03-02T23:07:44.398Z" }, - { url = "https://files.pythonhosted.org/packages/bf/d0/664a38f03cf4264a4ab9112067eb4998d14ffbf3af4cff9fb2d1447f11bc/dulwich-0.22.8-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2b2fda8e87907ed304d4a5962aea0338366144df0df60f950b8f7f125871707f", size = 998380, upload-time = "2025-03-02T23:07:45.935Z" }, - { url = "https://files.pythonhosted.org/packages/5e/e4/3595a23375b797a8602a2ca8f6b8207b4ebdf2e3a1ccba306f7b90d74c3f/dulwich-0.22.8-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1748cd573a0aee4d530bc223a23ccb8bb5b319645931a37bd1cfb68933b720c1", size = 1006758, upload-time = "2025-03-02T23:07:47.503Z" }, - { url = "https://files.pythonhosted.org/packages/20/d1/32d89d37da8e2ae947558db0401940594efdda9fa5bb1c55c2b46c43f244/dulwich-0.22.8-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a631b2309feb9a9631eabd896612ba36532e3ffedccace57f183bb868d7afc06", size = 1050947, upload-time = "2025-03-02T23:07:49.208Z" }, - { url = "https://files.pythonhosted.org/packages/f5/dc/b9448b82de3e244400dc35813f31db9f4952605c7d4e3041fd94878613c9/dulwich-0.22.8-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:00e7d9a3d324f9e0a1b27880eec0e8e276ff76519621b66c1a429ca9eb3f5a8d", size = 612479, upload-time = "2025-03-02T23:07:50.745Z" }, - { url = "https://files.pythonhosted.org/packages/e2/20/d855d603ea49ce437d2a015fad9dbb22409e23520340aef3d3dca8b299bb/dulwich-0.22.8-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:f8aa3de93201f9e3e40198725389aa9554a4ee3318a865f96a8e9bc9080f0b25", size = 947073, upload-time = "2025-03-02T23:07:52.082Z" }, - { url = "https://files.pythonhosted.org/packages/30/06/390a3a9ce2f4d5b20af0e64f0e9bcefb4a87ad30ef53ee122887f5444076/dulwich-0.22.8-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1e8da9dd8135884975f5be0563ede02179240250e11f11942801ae31ac293f37", size = 997873, upload-time = "2025-03-02T23:07:54.399Z" }, - { url = "https://files.pythonhosted.org/packages/d1/cd/3c5731784bac200e41b5e66b1440f9f30f92781d3eeefb9f90147c3d392e/dulwich-0.22.8-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4fc5ce2435fb3abdf76f1acabe48f2e4b3f7428232cadaef9daaf50ea7fa30ee", size = 1006609, upload-time = "2025-03-02T23:07:56.091Z" }, - { url = "https://files.pythonhosted.org/packages/19/cf/01180599b0028e2175da4c0878fbe050d1f197825529be19718f65c5a475/dulwich-0.22.8-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:982b21cc3100d959232cadb3da0a478bd549814dd937104ea50f43694ec27153", size = 1051004, upload-time = "2025-03-02T23:07:58.211Z" }, - { url = "https://files.pythonhosted.org/packages/92/7b/df95faaf8746cce65704f1631a6626e5bb4604a499a0f63fc9103669deba/dulwich-0.22.8-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:6bde2b13a05cc0ec2ecd4597a99896663544c40af1466121f4d046119b874ce3", size = 612529, upload-time = "2025-03-02T23:07:59.731Z" }, - { url = "https://files.pythonhosted.org/packages/37/56/395c6d82d4d9eb7a7ab62939c99db5b746995b0f3ad3b31f43c15e3e07a0/dulwich-0.22.8-py3-none-any.whl", hash = "sha256:ffc7a02e62b72884de58baaa3b898b7f6427893e79b1289ffa075092efe59181", size = 273071, upload-time = "2025-03-02T23:08:09.013Z" }, +sdist = { url = "https://files.pythonhosted.org/packages/3e/7c/cb4a5fb0d3d0f6585894759730ae9052e8dd9d2e5172bff544d369b24243/dulwich-0.24.10.tar.gz", hash = "sha256:30e028979b6fa7220c913da9c786026611c10746c06496149742602b36a11f6b", size = 999843, upload-time = "2025-11-10T17:16:50.359Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ae/bc/494b44ed9f6d850f9f4d5772ab0f063b1b4fce7741e1642f95d74f2983e0/dulwich-0.24.10-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:fbf94fa73211d2f029751a72e1ca3a2fd35c6f5d9bb434acdf10a4a79ca322dd", size = 1241707, upload-time = "2025-11-10T17:16:11.627Z" }, + { url = "https://files.pythonhosted.org/packages/eb/35/b516e3073cab66e0a240acb30e2892b70e636f5512a023edfe28a26e080c/dulwich-0.24.10-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:b715a9f85ed71bef8027275c1bded064e4925071ae8c8a8d9a20c67b31faf3cd", size = 1319726, upload-time = "2025-11-10T17:16:13.265Z" }, + { url = "https://files.pythonhosted.org/packages/d3/94/1b65ffc7e8794b0391112d365f54c9d7da49d6257ea59dcee01ac29dad8d/dulwich-0.24.10-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:858fae0c7121715282a993abb1919385a28e1a9c4f136f568748d283c2ba874f", size = 1349984, upload-time = "2025-11-10T17:16:14.512Z" }, + { url = "https://files.pythonhosted.org/packages/09/ad/93bcd99957f7c287e63a6f9ccd325ba931d2aff781a9c00fe63200323cb5/dulwich-0.24.10-cp311-cp311-win32.whl", hash = "sha256:393e9c3cdd382cff20b5beb66989376d6da69e3b0dfec046a884707ab5d27ac9", size = 906575, upload-time = "2025-11-10T17:16:16.212Z" }, + { url = "https://files.pythonhosted.org/packages/83/c5/c53dd8704f8557798aa7a07a322a34fcc59836c0c6593858396704d7c8c9/dulwich-0.24.10-cp311-cp311-win_amd64.whl", hash = "sha256:470d6cd8207e1a5ff1fb34c4c6fac2ec9a96d618f7062e5fb96c5260927bb9a7", size = 923300, upload-time = "2025-11-10T17:16:17.425Z" }, + { url = "https://files.pythonhosted.org/packages/d0/35/272a60f9e8d490672985d3d8ad708b7d7b81be9bae43f0590cdc9ade1f8a/dulwich-0.24.10-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:5c724e5fc67c45f3c813f2630795ac388e3e6310534212f799a7a6bf230648c8", size = 1236239, upload-time = "2025-11-10T17:16:19.043Z" }, + { url = "https://files.pythonhosted.org/packages/3f/fb/a46d524ccdaeba705b1738b258002ed31d3795be15305fa708a05bbf613a/dulwich-0.24.10-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:6a25ca1605a94090514af408f9df64427281aefbb726f542e97d86d3a7c8ec18", size = 1316569, upload-time = "2025-11-10T17:16:20.8Z" }, + { url = "https://files.pythonhosted.org/packages/a0/00/41ef1ea1bb30559c8c5ddeddda5fd61bee19372bb991c6ba417f8b08df1a/dulwich-0.24.10-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:d9793fc1e42149a650a017dc8ce38485368a41729b9937e1dfcfedd0591ebe9d", size = 1344322, upload-time = "2025-11-10T17:16:22.146Z" }, + { url = "https://files.pythonhosted.org/packages/b5/b4/97183eaed35b087c3522c1296c5f79913221a2781b2b572d55b2f02fc11d/dulwich-0.24.10-cp312-cp312-win32.whl", hash = "sha256:1601bfea3906b52c924fae5b6ba32a0b087fb8fae927607e6b5381e6f7559611", size = 901862, upload-time = "2025-11-10T17:16:23.805Z" }, + { url = "https://files.pythonhosted.org/packages/9d/52/3a191569e38e046fdd594acc3ca5900e1965311b9d848f45ffa5bef5b462/dulwich-0.24.10-cp312-cp312-win_amd64.whl", hash = "sha256:f7bfa9f0bfae57685754b163eef6641609047460939d28052e3beeb63efa6795", size = 919082, upload-time = "2025-11-10T17:16:25.528Z" }, + { url = "https://files.pythonhosted.org/packages/3c/ee/9213bb19a584b4f41cf20874043d6888e2b6087e0cc605975cd6c38e9807/dulwich-0.24.10-cp313-cp313-android_21_arm64_v8a.whl", hash = "sha256:843de5f678436a27b33aea0f2b87fd0453afdd0135f885a3ca44bc3147846dd2", size = 1341609, upload-time = "2025-11-10T17:16:27.677Z" }, + { url = "https://files.pythonhosted.org/packages/0a/71/5ab2bc4ec370a15a88a82341400a58da118129980b2c589484df1097c3a1/dulwich-0.24.10-cp313-cp313-android_21_x86_64.whl", hash = "sha256:4914abb6408a719b7a1f7d9a182d1efd92c326e178b440faf582df50f9f032db", size = 1341603, upload-time = "2025-11-10T17:16:29.25Z" }, + { url = "https://files.pythonhosted.org/packages/21/b4/c0af139f10a95851a104b19af845e2dd235cf3eea2c7513d47d38f1165a4/dulwich-0.24.10-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:ce6e05ec50f258ccd14d83114eb32cc5bb241ae4a8c7199d014fd7568de285b1", size = 1236505, upload-time = "2025-11-10T17:16:30.98Z" }, + { url = "https://files.pythonhosted.org/packages/8e/c5/8bab5086fe202da11bea12b521d93f97f308c99d9f4ac0790b0144f56691/dulwich-0.24.10-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:3581ae0af33f28e6c0834d2f41ca67ca81cd92a589e6a5f985e6c64373232958", size = 1315568, upload-time = "2025-11-10T17:16:32.399Z" }, + { url = "https://files.pythonhosted.org/packages/68/9d/573c9f510caedcbc9feef3ecf96d8828105f4c8f8202939507a1492991e9/dulwich-0.24.10-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:019af16c850ae85254289f9633a29dea02f45351c4182ea20b0c1394c074a13b", size = 1343869, upload-time = "2025-11-10T17:16:33.605Z" }, + { url = "https://files.pythonhosted.org/packages/10/2b/27695ef0bbfb68e6e1f094ae6f38e8634680881a5d35344dd3d4755aaa3c/dulwich-0.24.10-cp313-cp313-win32.whl", hash = "sha256:4b5c225477a529e1d4a2b5e51272a418177e34803938391ce41b7573b2e5b0d0", size = 902557, upload-time = "2025-11-10T17:16:35.366Z" }, + { url = "https://files.pythonhosted.org/packages/fa/7a/85c03bdbdfeb760fb08cc028d54cca14e2f6c4fcc3d4b77e58571efa09d8/dulwich-0.24.10-cp313-cp313-win_amd64.whl", hash = "sha256:752c32d517dc608dbb8414061eaaec8ac8a05591b29531f81a83336b018b26c6", size = 919415, upload-time = "2025-11-10T17:16:36.719Z" }, + { url = "https://files.pythonhosted.org/packages/ed/eb/8fab354b8682a4d22f23ba81efb00cac8cd5fedc58749bb116a06d837e31/dulwich-0.24.10-cp314-cp314-android_24_arm64_v8a.whl", hash = "sha256:44f62e0244531a8c43ca7771e201ec9e7f6a2fb27f8c3c623939bc03c1f50423", size = 1339737, upload-time = "2025-11-10T17:16:38.422Z" }, + { url = "https://files.pythonhosted.org/packages/65/48/425e5f5ae4686e5e1f71b1f8dcea3947648e2c36ab4c1223c0a6d9aa422b/dulwich-0.24.10-cp314-cp314-android_24_x86_64.whl", hash = "sha256:e2eda4a634d6f1ac4c0d4786f8772495c8840dfc2b3e595507376bf5e5b0f9c5", size = 1339730, upload-time = "2025-11-10T17:16:39.841Z" }, + { url = "https://files.pythonhosted.org/packages/74/4d/ca83b98ae966b156fd589a502f757789657a6f6f23926587abd3a3e3dc6f/dulwich-0.24.10-py3-none-any.whl", hash = "sha256:15b32f8c3116a1c0a042dde8da96f65a607e263e860ee42b3d4a98ce2c2f4a06", size = 566684, upload-time = "2025-11-10T17:16:49.12Z" }, ] [[package]] name = "dvc" -version = "3.60.0" +version = "3.64.1" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "attrs" }, @@ -2539,8 +2125,7 @@ dependencies = [ { name = "hydra-core" }, { name = "iterative-telemetry" }, { name = "kombu" }, - { name = "networkx", version = "3.4.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, - { name = "networkx", version = "3.5", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "networkx" }, { name = "omegaconf" }, { name = "packaging" }, { name = "pathspec" }, @@ -2551,7 +2136,7 @@ dependencies = [ { name = "pyparsing" }, { name = "requests" }, { name = "rich", version = "13.9.4", source = { registry = "https://pypi.org/simple" }, marker = "(extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "rich", version = "14.0.0", source = { registry = "https://pypi.org/simple" }, marker = "(extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb')" }, + { name = "rich", version = "14.2.0", source = { registry = "https://pypi.org/simple" }, marker = "(extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb')" }, { name = "ruamel-yaml" }, { name = "scmrepo" }, { name = "shortuuid" }, @@ -2562,14 +2147,14 @@ dependencies = [ { name = "voluptuous" }, { name = "zc-lockfile" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/db/6d/0cf6feca9d2100d470ab8d276961a96eb7fe462a47e46e1a69e8697ccaa0/dvc-3.60.0.tar.gz", hash = "sha256:b334bad4301c69f59dd4ad036df76bc84eff6be63e621ed3cc9b3c6bbf92a2eb", size = 654062, upload-time = "2025-06-06T06:55:26.196Z" } +sdist = { url = "https://files.pythonhosted.org/packages/90/19/f7f4c6273b6f4b7f9ce279874f2f198ab6ee768f3570b182795f2f4bf689/dvc-3.64.1.tar.gz", hash = "sha256:3e75f612cf5d18a3bd3ce22bc3fcd750446dcff7eed9c792fb9586013e140d86", size = 672027, upload-time = "2025-12-02T10:50:35.467Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/58/c7/94bffdd8806982f1a561de3909add81b156b9797b681d9f38337a3321026/dvc-3.60.0-py3-none-any.whl", hash = "sha256:42f5385cbc31916abc59a06e9ce974e2f33fb34a1941a7e817ea279c1c8dd4d5", size = 458476, upload-time = "2025-06-06T06:55:23.562Z" }, + { url = "https://files.pythonhosted.org/packages/cb/cc/f0f4977d23dd16e5e2c41cec659fe74ea0bd3cf4d93beda53c7e59791d3a/dvc-3.64.1-py3-none-any.whl", hash = "sha256:533af3ba2c44b6848c5b6c7c88522df2f2725e288067d3215c053bd44280f1ea", size = 467964, upload-time = "2025-12-02T10:50:33.856Z" }, ] [[package]] name = "dvc-data" -version = "3.16.10" +version = "3.16.12" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "attrs" }, @@ -2583,9 +2168,9 @@ dependencies = [ { name = "sqltrie" }, { name = "tqdm" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/da/64/459483623d867d2161e3aacecc5f9f172e8a57438cfcfc029e00be5fb594/dvc_data-3.16.10.tar.gz", hash = "sha256:abca33f2169eabc70d1966e2ef3cd290127ebdf141fb0e84db3d37fef49205c6", size = 80982, upload-time = "2025-04-29T07:28:14.333Z" } +sdist = { url = "https://files.pythonhosted.org/packages/d6/49/9476147025cbabfa2695700dd0b4564bbeee085729bb2faa221605d85e3c/dvc_data-3.16.12.tar.gz", hash = "sha256:f92cc03ffdddb5bd3a7a7da78d595dec6915311256a4cfefe250967d6ce3d194", size = 81910, upload-time = "2025-08-18T11:27:33.983Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/c0/b9/c1cd278ddd47a92a00fd68e294056defa1340828ba38940c6698d266f909/dvc_data-3.16.10-py3-none-any.whl", hash = "sha256:3e036d286d11a9fb542ab3aa732ffe384e4ebd16836a2022ab0915970ac7f116", size = 77298, upload-time = "2025-04-29T07:28:12.162Z" }, + { url = "https://files.pythonhosted.org/packages/7c/7c/2acac71d2366328ae9da1a0b68292fed07aef28ed6114ce3320f3253c8a2/dvc_data-3.16.12-py3-none-any.whl", hash = "sha256:39c183caecd142cf44bc16186c8e5ef3bb4d739111e41f80682c999db30b8cee", size = 78201, upload-time = "2025-08-18T11:27:32.353Z" }, ] [[package]] @@ -2603,15 +2188,15 @@ wheels = [ [[package]] name = "dvc-objects" -version = "5.1.1" +version = "5.1.2" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "fsspec" }, { name = "funcy", marker = "python_full_version < '3.12' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/b5/36/68d3c92565d5fa7a6302d825965a1fedbc6e784d4d4ccaf6d536fae2124f/dvc_objects-5.1.1.tar.gz", hash = "sha256:9e308f2a33486aa44bd2ea42b6ec4a9bd6da5b69ac8127955e506c31d12fbdaa", size = 43010, upload-time = "2025-06-05T03:09:18.312Z" } +sdist = { url = "https://files.pythonhosted.org/packages/23/d4/61678357b6ce0661249e6f09069859b5b1bcc4eeede6a869bab7cae2b546/dvc_objects-5.1.2.tar.gz", hash = "sha256:3d4ac3ece4addf280dd1e06bda58b3f7864eb877de42d1e1f94c501d89b31440", size = 43215, upload-time = "2025-09-27T13:50:08.861Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/1c/57/224e4f0ab72e6eb35e991659d887d2351d01d1b739416759fe2877806c2b/dvc_objects-5.1.1-py3-none-any.whl", hash = "sha256:fd3bda1d51c6e05f67ded554b30b5b3bc4defaabfc277b2fe48106085b10f2e7", size = 33548, upload-time = "2025-06-05T03:09:15.951Z" }, + { url = "https://files.pythonhosted.org/packages/be/96/b73f8dab522e4116dbcef83fab5e5aa1ada263e246c6f0126c7fd04be6ec/dvc_objects-5.1.2-py3-none-any.whl", hash = "sha256:73f1644fceb65f0908e6de974e0207f3d9daa1ae1b834f78198cd1feca9488d1", size = 33651, upload-time = "2025-09-27T13:50:07.04Z" }, ] [[package]] @@ -2625,7 +2210,7 @@ wheels = [ [[package]] name = "dvc-s3" -version = "3.2.1" +version = "3.2.2" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "aiobotocore", extra = ["boto3"] }, @@ -2633,23 +2218,23 @@ dependencies = [ { name = "flatten-dict" }, { name = "s3fs" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/dc/1a/a372da6a26da7bcf1dee1b50107d7756cebb76e5883d15fdb7d250e93ca7/dvc_s3-3.2.1.tar.gz", hash = "sha256:436df64d02506963b0225d5272d95918595f5f86b0ad5a9beeeb105bb2ac3d24", size = 16552, upload-time = "2025-06-09T02:11:18.476Z" } +sdist = { url = "https://files.pythonhosted.org/packages/24/72/44033cb2e85a7e68ac0bf8d96ece272f6818a28135678090fc8d03ef54b8/dvc_s3-3.2.2.tar.gz", hash = "sha256:0ea72c9b6b000dfea1a834d4106733b6cdc745d0a6ee1d5c0a5b8c8344671716", size = 16534, upload-time = "2025-06-19T07:49:18.168Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/68/75/b390dab38337d88fd922ea4e8733f10637c4129098d0f7fe76dfb6bb4487/dvc_s3-3.2.1-py3-none-any.whl", hash = "sha256:8c0006bd47573570e34c74eaaecb34df947b0f5f4fe212267ccc1ed4906962f0", size = 13887, upload-time = "2025-06-09T02:11:16.808Z" }, + { url = "https://files.pythonhosted.org/packages/bc/23/ea5d39ab965eb588b5cb73e02b78ce269dbadcb9a35fd1f78ec7218186c7/dvc_s3-3.2.2-py3-none-any.whl", hash = "sha256:5e3301b2f758317c5bc680c52f175ecf1701fd30411b226d2d970ca37e376085", size = 13867, upload-time = "2025-06-19T07:49:16.822Z" }, ] [[package]] name = "dvc-studio-client" -version = "0.21.0" +version = "0.22.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "dulwich" }, { name = "requests" }, { name = "voluptuous" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/87/08/13cf5bb8bf0855d47325467a5948848bcea51780e2212349034f5e4701e6/dvc_studio_client-0.21.0.tar.gz", hash = "sha256:db212ff5cf73dce886d0713a5d2bf4bc0bbfb499f3ca8548705ca98aab5addd1", size = 29304, upload-time = "2024-06-27T10:46:46.063Z" } +sdist = { url = "https://files.pythonhosted.org/packages/f4/52/f00bc978bfa313929221df1b6a1d82256b1c2727c55594dbbf9520f0adfd/dvc_studio_client-0.22.0.tar.gz", hash = "sha256:45d554a0386dd18bdfe17968e93f9b075563c888088b51bfa58713f64ed58ac8", size = 29432, upload-time = "2025-07-28T16:23:52.699Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/e1/dd/2618a5dfbfdd9d74fd69e9913c9b431b6e78bc0a251cfbe9b5808e4db122/dvc_studio_client-0.21.0-py3-none-any.whl", hash = "sha256:93006e3812c830b42ff79746e6c6163e97a3c3ead6722ec2f1dec1d7dbf0b071", size = 16363, upload-time = "2024-06-27T10:46:43.405Z" }, + { url = "https://files.pythonhosted.org/packages/72/8b/42cb2c96555cf63b5c57c3b21f3901bb30a9ae963ecba86a8265b61eee7d/dvc_studio_client-0.22.0-py3-none-any.whl", hash = "sha256:99cb8874a1e5fc05de126a36a82b421f7af5c36d23c22024284733fc4d98029b", size = 16432, upload-time = "2025-07-28T16:23:51.256Z" }, ] [[package]] @@ -2673,93 +2258,96 @@ name = "e3nn" version = "0.4.4" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", ] dependencies = [ { name = "opt-einsum-fx" }, { name = "scipy" }, { name = "sympy", version = "1.14.0", source = { registry = "https://pypi.org/simple" } }, - { name = "torch", version = "2.2.0", source = { registry = "https://pypi.org/simple" }, marker = "(extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, - { name = "torch", version = "2.7.1", source = { registry = "https://pypi.org/simple" }, marker = "(extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, + { name = "torch", version = "2.7.0", source = { registry = "https://pypi.org/simple" } }, ] sdist = { url = "https://files.pythonhosted.org/packages/aa/98/8e7102dea93106603383fda23bf96649c397a37b910e7c76086e584cd92d/e3nn-0.4.4.tar.gz", hash = "sha256:51c91a84c1fb72e7e3600000958fa8caad48f8270937090fb8d0f8bfffbb3525", size = 361661, upload-time = "2021-12-16T08:49:23.382Z" } wheels = [ @@ -2768,419 +2356,376 @@ wheels = [ [[package]] name = "e3nn" -version = "0.5.6" +version = "0.5.8" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", ] dependencies = [ - { name = "opt-einsum-fx" }, - { name = "scipy" }, + { name = "opt-einsum-fx", marker = "extra == 'extra-5-mlipx-fairchem' or extra == 'extra-5-mlipx-mattersim' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, + { name = "scipy", marker = "extra == 'extra-5-mlipx-fairchem' or extra == 'extra-5-mlipx-mattersim' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, { name = "sympy", version = "1.13.1", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-5-mlipx-fairchem' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, { name = "sympy", version = "1.14.0", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-5-mlipx-mattersim' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "torch", version = "2.2.0", source = { registry = "https://pypi.org/simple" }, marker = "(extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, { name = "torch", version = "2.6.0", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-5-mlipx-fairchem' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "torch", version = "2.7.1", source = { registry = "https://pypi.org/simple" }, marker = "(extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, + { name = "torch", version = "2.7.0", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-5-mlipx-mattersim' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-sevenn')" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/97/ac/ac6120e6e001677b6bbaeee3f7c40af784a1758568ae3246df7b5c3b9552/e3nn-0.5.6.tar.gz", hash = "sha256:e28aa6f67d9c090300d390f9e08fb57211d60562971ae3237e30023ff17093b1", size = 435651, upload-time = "2025-03-22T20:33:49.876Z" } +sdist = { url = "https://files.pythonhosted.org/packages/bc/9d/1fac1462adfa3923b8c104645f4af471a20539f35d8cb03bee013c6013df/e3nn-0.5.8.tar.gz", hash = "sha256:8329ab7477c6a124a8785c80adc2a2c26931cf0aa471e5728f97149bb80816f2", size = 437930, upload-time = "2025-10-07T02:05:15.293Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/60/b4/c5101bb2a6417506241a9b1beb39ce7bce18c652bcf3ecd84d9158a4d53c/e3nn-0.5.6-py3-none-any.whl", hash = "sha256:172b450cf9c9cab0f341826e963a331675c085c502412ac9ab9d804107913c4c", size = 448027, upload-time = "2025-03-22T20:33:48.618Z" }, + { url = "https://files.pythonhosted.org/packages/36/f0/a1434263789e035df7f18d663cf869ee02949574dd04de01b3fb88fb8501/e3nn-0.5.8-py3-none-any.whl", hash = "sha256:551b886a0761bce8022df242271c0397bcf5ee689834ddcb402c99ab985cbc58", size = 450056, upload-time = "2025-10-07T02:05:13.792Z" }, ] [[package]] name = "emmet-core" -version = "0.84.6" +version = "0.86.1" source = { registry = "https://pypi.org/simple" } dependencies = [ + { name = "blake3" }, { name = "monty" }, { name = "pybtex" }, { name = "pydantic" }, { name = "pydantic-settings" }, { name = "pymatgen" }, + { name = "pymatgen-io-validation" }, { name = "typing-extensions" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/90/71/a6f8060904c1a1604ae9779b05ca3370a5ce462dbaae3d1f20483b50f8a4/emmet_core-0.84.6.tar.gz", hash = "sha256:58e7b5d4eea8f6fa82209128c426f230c20364a49dd07ce5a766fab28e8548b3", size = 214338, upload-time = "2025-04-01T00:13:00.839Z" } +sdist = { url = "https://files.pythonhosted.org/packages/af/ab/ec00dd77972b601072ae90d781dc6689dbd33f535627f0554a17537b53d6/emmet_core-0.86.1.tar.gz", hash = "sha256:d81cbce8726225a9a859f3004af0df59001a05d3e81d7c81d8207ff6b9c0c92c", size = 308009, upload-time = "2025-11-26T21:22:19.109Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/b9/21/cfc847ef471204dbc9867c81408034aed8aa1c99a855f468c23bfad968b4/emmet_core-0.84.6-py3-none-any.whl", hash = "sha256:f053bf2c8553c6f4cb9316a08e6ff5dfb61f776246c7ad776d3f524a76b4d160", size = 212812, upload-time = "2025-04-01T00:12:58.7Z" }, + { url = "https://files.pythonhosted.org/packages/c4/94/c1203d938e53c9f216297340561fb87ee48209894610e888508698a8a914/emmet_core-0.86.1-py3-none-any.whl", hash = "sha256:11bc9d8e092e78186ddcfc39c67895dc40afed67d6ae7f8b9723bf9b562933a8", size = 308482, upload-time = "2025-11-26T21:22:17.488Z" }, ] [[package]] @@ -3194,83 +2739,84 @@ wheels = [ [[package]] name = "eventlet" -version = "0.40.0" +version = "0.40.4" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "dnspython" }, { name = "greenlet" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/30/d6/eeb879535400221c2ec3da72affd60d386709ed4d931680c44094a129610/eventlet-0.40.0.tar.gz", hash = "sha256:f659d735e06795a26167b666008798c7a203fcd8119b08b84036e41076432ff1", size = 562849, upload-time = "2025-05-13T15:59:48.685Z" } +sdist = { url = "https://files.pythonhosted.org/packages/d1/d8/f72d8583db7c559445e0e9500a9b9787332370c16980802204a403634585/eventlet-0.40.4.tar.gz", hash = "sha256:69bef712b1be18b4930df6f0c495d2a882bf7b63aa111e7b6eeff461cfcaf26f", size = 565920, upload-time = "2025-11-26T13:57:31.126Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/36/04/9f6669273eee4cd79a11bc2713e0f7bcf13c01e4b673be11fbbf1b223d0b/eventlet-0.40.0-py3-none-any.whl", hash = "sha256:496915bc92d054236bad872d5143112a13b0216a7bbeeb832e1a858ae131fe8a", size = 363419, upload-time = "2025-05-13T15:59:46.796Z" }, + { url = "https://files.pythonhosted.org/packages/22/6d/8e1fa901f6a8307f90e7bd932064e27a0062a4a7a16af38966a9c3293c52/eventlet-0.40.4-py3-none-any.whl", hash = "sha256:6326c6d0bf55810bece151f7a5750207c610f389ba110ffd1541ed6e5215485b", size = 364588, upload-time = "2025-11-26T13:57:29.09Z" }, ] [[package]] name = "exceptiongroup" -version = "1.3.0" +version = "1.3.1" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "typing-extensions", marker = "python_full_version < '3.11' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "typing-extensions", marker = "python_full_version < '3.13' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/0b/9f/a65090624ecf468cdca03533906e7c69ed7588582240cfe7cc9e770b50eb/exceptiongroup-1.3.0.tar.gz", hash = "sha256:b241f5885f560bc56a59ee63ca4c6a8bfa46ae4ad651af316d4e81817bb9fd88", size = 29749, upload-time = "2025-05-10T17:42:51.123Z" } +sdist = { url = "https://files.pythonhosted.org/packages/50/79/66800aadf48771f6b62f7eb014e352e5d06856655206165d775e675a02c9/exceptiongroup-1.3.1.tar.gz", hash = "sha256:8b412432c6055b0b7d14c310000ae93352ed6754f70fa8f7c34141f91c4e3219", size = 30371, upload-time = "2025-11-21T23:01:54.787Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/36/f4/c6e662dade71f56cd2f3735141b265c3c79293c109549c1e6933b0651ffc/exceptiongroup-1.3.0-py3-none-any.whl", hash = "sha256:4d111e6e0c13d0644cad6ddaa7ed0261a0b36971f6d23e7ec9b4b9097da78a10", size = 16674, upload-time = "2025-05-10T17:42:49.33Z" }, + { url = "https://files.pythonhosted.org/packages/8a/0e/97c33bf5009bdbac74fd2beace167cab3f978feb69cc36f1ef79360d6c4e/exceptiongroup-1.3.1-py3-none-any.whl", hash = "sha256:a7a39a3bd276781e98394987d3a5701d0c4edffb633bb7a5144577f82c773598", size = 16740, upload-time = "2025-11-21T23:01:53.443Z" }, ] [[package]] name = "executing" -version = "2.2.0" +version = "2.2.1" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/91/50/a9d80c47ff289c611ff12e63f7c5d13942c65d68125160cefd768c73e6e4/executing-2.2.0.tar.gz", hash = "sha256:5d108c028108fe2551d1a7b2e8b713341e2cb4fc0aa7dcf966fa4327a5226755", size = 978693, upload-time = "2025-01-22T15:41:29.403Z" } +sdist = { url = "https://files.pythonhosted.org/packages/cc/28/c14e053b6762b1044f34a13aab6859bbf40456d37d23aa286ac24cfd9a5d/executing-2.2.1.tar.gz", hash = "sha256:3632cc370565f6648cc328b32435bd120a1e4ebb20c77e3fdde9a13cd1e533c4", size = 1129488, upload-time = "2025-09-01T09:48:10.866Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/7b/8f/c4d9bafc34ad7ad5d8dc16dd1347ee0e507a52c3adb6bfa8887e1c6a26ba/executing-2.2.0-py2.py3-none-any.whl", hash = "sha256:11387150cad388d62750327a53d3339fad4888b39a6fe233c3afbb54ecffd3aa", size = 26702, upload-time = "2025-01-22T15:41:25.929Z" }, + { url = "https://files.pythonhosted.org/packages/c1/ea/53f2148663b321f21b5a606bd5f191517cf40b7072c0497d3c92c4a13b1e/executing-2.2.1-py2.py3-none-any.whl", hash = "sha256:760643d3452b4d777d295bb167ccc74c64a81df23fb5e08eff250c425a4b2017", size = 28317, upload-time = "2025-09-01T09:48:08.5Z" }, ] [[package]] name = "fairchem-core" -version = "2.2.0" +version = "2.7.1" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "ase" }, { name = "ase-db-backends" }, - { name = "e3nn", version = "0.5.6", source = { registry = "https://pypi.org/simple" } }, + { name = "clusterscope" }, + { name = "e3nn", version = "0.5.8", source = { registry = "https://pypi.org/simple" } }, { name = "huggingface-hub" }, { name = "hydra-core" }, { name = "lmdb" }, + { name = "monty" }, { name = "numba" }, - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" } }, + { name = "numpy", version = "2.1.3", source = { registry = "https://pypi.org/simple" } }, { name = "orjson" }, - { name = "pymatgen" }, { name = "pyyaml" }, { name = "requests" }, { name = "submitit" }, - { name = "tensorboard" }, { name = "torch", version = "2.6.0", source = { registry = "https://pypi.org/simple" } }, { name = "torchtnt" }, { name = "tqdm" }, { name = "wandb" }, + { name = "websockets" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/bc/d1/8c7029faa8f08194fb5c66729b93fbacc3419055d8553abdd10764b2b6fb/fairchem_core-2.2.0.tar.gz", hash = "sha256:1303ab8b6fea265060788f55e80fa5f22118c5e6826b2a45122c0b7dc8197506", size = 198332, upload-time = "2025-06-03T19:25:06.233Z" } +sdist = { url = "https://files.pythonhosted.org/packages/06/29/8279b26abdfd36b676ba2b41b3bff0f9db9cc3ab79018cf2bbc482dd866b/fairchem_core-2.7.1.tar.gz", hash = "sha256:63f6940878de777771f323331704ed7edadbcb9233e4a975298bb9097c8802ab", size = 234887, upload-time = "2025-09-24T23:38:42.68Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/16/95/2db3a75f321f3fa307e39a1df5623f349f0e53636c35cc44ed90fde3b0b6/fairchem_core-2.2.0-py3-none-any.whl", hash = "sha256:8edf3fcfc0743cd2ca6df317261b57169c3702ac604b1fa5909e5bff35c52606", size = 284874, upload-time = "2025-06-03T19:25:04.644Z" }, + { url = "https://files.pythonhosted.org/packages/69/34/985db070f1948f03a0ace9cc63a9f1d59cba683ccc976fb250c3df170a1b/fairchem_core-2.7.1-py3-none-any.whl", hash = "sha256:8efdfbec8d54dabf94fc1f4bbac5c90e55be37fc4685592919235742e097fd65", size = 337061, upload-time = "2025-09-24T23:38:40.461Z" }, ] [[package]] name = "fastjsonschema" -version = "2.21.1" +version = "2.21.2" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/8b/50/4b769ce1ac4071a1ef6d86b1a3fb56cdc3a37615e8c5519e1af96cdac366/fastjsonschema-2.21.1.tar.gz", hash = "sha256:794d4f0a58f848961ba16af7b9c85a3e88cd360df008c59aac6fc5ae9323b5d4", size = 373939, upload-time = "2024-12-02T10:55:15.133Z" } +sdist = { url = "https://files.pythonhosted.org/packages/20/b5/23b216d9d985a956623b6bd12d4086b60f0059b27799f23016af04a74ea1/fastjsonschema-2.21.2.tar.gz", hash = "sha256:b1eb43748041c880796cd077f1a07c3d94e93ae84bba5ed36800a33554ae05de", size = 374130, upload-time = "2025-08-14T18:49:36.666Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/90/2b/0817a2b257fe88725c25589d89aec060581aabf668707a8d03b2e9e0cb2a/fastjsonschema-2.21.1-py3-none-any.whl", hash = "sha256:c9e5b7e908310918cf494a434eeb31384dd84a98b57a30bcb1f535015b554667", size = 23924, upload-time = "2024-12-02T10:55:07.599Z" }, + { url = "https://files.pythonhosted.org/packages/cb/a8/20d0723294217e47de6d9e2e40fd4a9d2f7c4b6ef974babd482a59743694/fastjsonschema-2.21.2-py3-none-any.whl", hash = "sha256:1c797122d0a86c5cace2e54bf4e819c36223b552017172f32c5c024a6b77e463", size = 24024, upload-time = "2025-08-14T18:49:34.776Z" }, ] [[package]] name = "filelock" -version = "3.18.0" +version = "3.20.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/0a/10/c23352565a6544bdc5353e0b15fc1c563352101f30e24bf500207a54df9a/filelock-3.18.0.tar.gz", hash = "sha256:adbc88eabb99d2fec8c9c1b229b171f18afa655400173ddc653d5d01501fb9f2", size = 18075, upload-time = "2025-03-14T07:11:40.47Z" } +sdist = { url = "https://files.pythonhosted.org/packages/58/46/0028a82567109b5ef6e4d2a1f04a583fb513e6cf9527fcdd09afd817deeb/filelock-3.20.0.tar.gz", hash = "sha256:711e943b4ec6be42e1d4e6690b48dc175c822967466bb31c0c293f34334c13f4", size = 18922, upload-time = "2025-10-08T18:03:50.056Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/4d/36/2a115987e2d8c300a974597416d9de88f2444426de9571f4b59b2cca3acc/filelock-3.18.0-py3-none-any.whl", hash = "sha256:c401f4f8377c4464e6db25fff06205fd89bdd83b65eb0488ed1b160f780e21de", size = 16215, upload-time = "2025-03-14T07:11:39.145Z" }, + { url = "https://files.pythonhosted.org/packages/76/91/7216b27286936c16f5b4d0c530087e4a54eead683e6b0b73dd0c64844af6/filelock-3.20.0-py3-none-any.whl", hash = "sha256:339b4732ffda5cd79b13f4e2711a31b0365ce445d95d243bb996273d072546a2", size = 16054, upload-time = "2025-10-08T18:03:48.35Z" }, ] [[package]] @@ -3284,7 +2830,7 @@ wheels = [ [[package]] name = "flask" -version = "3.1.1" +version = "3.1.2" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "blinker" }, @@ -3294,9 +2840,9 @@ dependencies = [ { name = "markupsafe" }, { name = "werkzeug" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/c0/de/e47735752347f4128bcf354e0da07ef311a78244eba9e3dc1d4a5ab21a98/flask-3.1.1.tar.gz", hash = "sha256:284c7b8f2f58cb737f0cf1c30fd7eaf0ccfcde196099d24ecede3fc2005aa59e", size = 753440, upload-time = "2025-05-13T15:01:17.447Z" } +sdist = { url = "https://files.pythonhosted.org/packages/dc/6d/cfe3c0fcc5e477df242b98bfe186a4c34357b4847e87ecaef04507332dab/flask-3.1.2.tar.gz", hash = "sha256:bf656c15c80190ed628ad08cdfd3aaa35beb087855e2f494910aa3774cc4fd87", size = 720160, upload-time = "2025-08-19T21:03:21.205Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/3d/68/9d4508e893976286d2ead7f8f571314af6c2037af34853a30fd769c02e9d/flask-3.1.1-py3-none-any.whl", hash = "sha256:07aae2bb5eaf77993ef57e357491839f5fd9f4dc281593a81a9e4d79a24f295c", size = 103305, upload-time = "2025-05-13T15:01:15.591Z" }, + { url = "https://files.pythonhosted.org/packages/ec/f9/7f9263c5695f4bd0023734af91bedb2ff8209e8de6ead162f35d8dc762fd/flask-3.1.2-py3-none-any.whl", hash = "sha256:ca1d8112ec8a6158cc29ea4858963350011b5c846a414cdb7a954aa9e967d03c", size = 103308, upload-time = "2025-08-19T21:03:19.499Z" }, ] [[package]] @@ -3314,11 +2860,11 @@ wheels = [ [[package]] name = "flatbuffers" -version = "25.2.10" +version = "25.9.23" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/e4/30/eb5dce7994fc71a2f685d98ec33cc660c0a5887db5610137e60d8cbc4489/flatbuffers-25.2.10.tar.gz", hash = "sha256:97e451377a41262f8d9bd4295cc836133415cc03d8cb966410a4af92eb00d26e", size = 22170, upload-time = "2025-02-11T04:26:46.257Z" } +sdist = { url = "https://files.pythonhosted.org/packages/9d/1f/3ee70b0a55137442038f2a33469cc5fddd7e0ad2abf83d7497c18a2b6923/flatbuffers-25.9.23.tar.gz", hash = "sha256:676f9fa62750bb50cf531b42a0a2a118ad8f7f797a511eda12881c016f093b12", size = 22067, upload-time = "2025-09-24T05:25:30.106Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/b8/25/155f9f080d5e4bc0082edfda032ea2bc2b8fab3f4d25d46c1e9dd22a1a89/flatbuffers-25.2.10-py2.py3-none-any.whl", hash = "sha256:ebba5f4d5ea615af3f7fd70fc310636fbb2bbd1f566ac0a23d98dd412de50051", size = 30953, upload-time = "2025-02-11T04:26:44.484Z" }, + { url = "https://files.pythonhosted.org/packages/ee/1b/00a78aa2e8fbd63f9af08c9c19e6deb3d5d66b4dda677a0f61654680ee89/flatbuffers-25.9.23-py2.py3-none-any.whl", hash = "sha256:255538574d6cb6d0a79a17ec8bc0d30985913b87513a01cce8bcdb6b4c44d0e2", size = 30869, upload-time = "2025-09-24T05:25:28.912Z" }, ] [[package]] @@ -3372,43 +2918,51 @@ wheels = [ [[package]] name = "fonttools" -version = "4.58.2" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/b6/a9/3319c6ae07fd9dde51064ddc6d82a2b707efad8ed407d700a01091121bbc/fonttools-4.58.2.tar.gz", hash = "sha256:4b491ddbfd50b856e84b0648b5f7941af918f6d32f938f18e62b58426a8d50e2", size = 3524285, upload-time = "2025-06-06T14:50:58.643Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/d3/6f/1f0158cd9d6168258362369fa003c58fc36f2b141a66bc805c76f28f57cc/fonttools-4.58.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:4baaf34f07013ba9c2c3d7a95d0c391fcbb30748cb86c36c094fab8f168e49bb", size = 2735491, upload-time = "2025-06-06T14:49:33.45Z" }, - { url = "https://files.pythonhosted.org/packages/3d/94/d9a36a4ae1ed257ed5117c0905635e89327428cbf3521387c13bd85e6de1/fonttools-4.58.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:2e26e4a4920d57f04bb2c3b6e9a68b099c7ef2d70881d4fee527896fa4f7b5aa", size = 2307732, upload-time = "2025-06-06T14:49:36.612Z" }, - { url = "https://files.pythonhosted.org/packages/37/57/0f72a9fe7c051ce316779b8721c707413c53ae75ab00f970d74c7876388f/fonttools-4.58.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c0bb956d9d01ea51368415515f664f58abf96557ba3c1aae4e26948ae7c86f29", size = 4718769, upload-time = "2025-06-06T14:49:39.597Z" }, - { url = "https://files.pythonhosted.org/packages/35/dd/8be06b93e24214d7dc52fd8183dbb9e75ab9638940d84d92ced25669f4d8/fonttools-4.58.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d40af8493c80ec17a1133ef429d42f1a97258dd9213b917daae9d8cafa6e0e6c", size = 4751963, upload-time = "2025-06-06T14:49:41.391Z" }, - { url = "https://files.pythonhosted.org/packages/9e/d3/85d60be364cea1b61f47bc8ea82d3e24cd6fb08640ad783fd2494bcaf4e0/fonttools-4.58.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:60b5cde1c76f6ded198da5608dddb1ee197faad7d2f0f6d3348ca0cda0c756c4", size = 4801368, upload-time = "2025-06-06T14:49:44.663Z" }, - { url = "https://files.pythonhosted.org/packages/9f/b9/98abf9c9c1ed67eed263f091fa1bbf0ea32ef65bb8f707c2ee106b877496/fonttools-4.58.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:f8df6dc80ecc9033ca25a944ee5db7564fecca28e96383043fd92d9df861a159", size = 4909670, upload-time = "2025-06-06T14:49:46.751Z" }, - { url = "https://files.pythonhosted.org/packages/32/23/d8676da27a1a27cca89549f50b4a22c98e305d9ee4c67357515d9cb25ec4/fonttools-4.58.2-cp310-cp310-win32.whl", hash = "sha256:25728e980f5fbb67f52c5311b90fae4aaec08c3d3b78dce78ab564784df1129c", size = 2191921, upload-time = "2025-06-06T14:49:48.523Z" }, - { url = "https://files.pythonhosted.org/packages/0b/ff/ed6452dde8fd04299ec840a4fb112597a40468106039aed9abc8e35ba7eb/fonttools-4.58.2-cp310-cp310-win_amd64.whl", hash = "sha256:d6997ee7c2909a904802faf44b0d0208797c4d751f7611836011ace165308165", size = 2236374, upload-time = "2025-06-06T14:49:50.759Z" }, - { url = "https://files.pythonhosted.org/packages/63/d0/335d12ee943b8d67847864bba98478fedf3503d8b168eeeefadd8660256a/fonttools-4.58.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:024faaf20811296fd2f83ebdac7682276362e726ed5fea4062480dd36aff2fd9", size = 2755885, upload-time = "2025-06-06T14:49:52.459Z" }, - { url = "https://files.pythonhosted.org/packages/66/c2/d8ceb8b91e3847786a19d4b93749b1d804833482b5f79bee35b68327609e/fonttools-4.58.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:2faec6e7f2abd80cd9f2392dfa28c02cfd5b1125be966ea6eddd6ca684deaa40", size = 2317804, upload-time = "2025-06-06T14:49:54.581Z" }, - { url = "https://files.pythonhosted.org/packages/7c/93/865c8d50b3a1f50ebdc02227f28bb81817df88cee75bc6f2652469e754b1/fonttools-4.58.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:520792629a938c14dd7fe185794b156cfc159c609d07b31bbb5f51af8dc7918a", size = 4916900, upload-time = "2025-06-06T14:49:56.366Z" }, - { url = "https://files.pythonhosted.org/packages/60/d1/301aec4f02995958b7af6728f838b2e5cc9296bec7eae350722dec31f685/fonttools-4.58.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:12fbc6e0bf0c75ce475ef170f2c065be6abc9e06ad19a13b56b02ec2acf02427", size = 4937358, upload-time = "2025-06-06T14:49:58.392Z" }, - { url = "https://files.pythonhosted.org/packages/15/22/75dc23a4c7200b8feb90baa82c518684a601a3a03be25f7cc3dde1525e37/fonttools-4.58.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:44a39cf856d52109127d55576c7ec010206a8ba510161a7705021f70d1649831", size = 4980151, upload-time = "2025-06-06T14:50:00.778Z" }, - { url = "https://files.pythonhosted.org/packages/14/51/5d402f65c4b0c89ce0cdbffe86646f3996da209f7bc93f1f4a13a7211ee0/fonttools-4.58.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:5390a67c55a835ad5a420da15b3d88b75412cbbd74450cb78c4916b0bd7f0a34", size = 5091255, upload-time = "2025-06-06T14:50:02.588Z" }, - { url = "https://files.pythonhosted.org/packages/c7/5e/dee28700276129db1a0ee8ab0d5574d255a1d72df7f6df58a9d26ddef687/fonttools-4.58.2-cp311-cp311-win32.whl", hash = "sha256:f7e10f4e7160bcf6a240d7560e9e299e8cb585baed96f6a616cef51180bf56cb", size = 2190095, upload-time = "2025-06-06T14:50:04.932Z" }, - { url = "https://files.pythonhosted.org/packages/bd/60/b90fda549942808b68c1c5bada4b369f4f55d4c28a7012f7537670438f82/fonttools-4.58.2-cp311-cp311-win_amd64.whl", hash = "sha256:29bdf52bfafdae362570d3f0d3119a3b10982e1ef8cb3a9d3ebb72da81cb8d5e", size = 2238013, upload-time = "2025-06-06T14:50:06.605Z" }, - { url = "https://files.pythonhosted.org/packages/eb/68/7ec64584dc592faf944d540307c3562cd893256c48bb028c90de489e4750/fonttools-4.58.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:c6eeaed9c54c1d33c1db928eb92b4e180c7cb93b50b1ee3e79b2395cb01f25e9", size = 2741645, upload-time = "2025-06-06T14:50:08.706Z" }, - { url = "https://files.pythonhosted.org/packages/8f/0c/b327838f63baa7ebdd6db3ffdf5aff638e883f9236d928be4f32c692e1bd/fonttools-4.58.2-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:bbe1d9c72b7f981bed5c2a61443d5e3127c1b3aca28ca76386d1ad93268a803f", size = 2311100, upload-time = "2025-06-06T14:50:10.401Z" }, - { url = "https://files.pythonhosted.org/packages/ae/c7/dec024a1c873c79a4db98fe0104755fa62ec2b4518e09d6fda28246c3c9b/fonttools-4.58.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:85babe5b3ce2cbe57fc0d09c0ee92bbd4d594fd7ea46a65eb43510a74a4ce773", size = 4815841, upload-time = "2025-06-06T14:50:12.496Z" }, - { url = "https://files.pythonhosted.org/packages/94/33/57c81abad641d6ec9c8b06c99cd28d687cb4849efb6168625b5c6b8f9fa4/fonttools-4.58.2-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:918a2854537fcdc662938057ad58b633bc9e0698f04a2f4894258213283a7932", size = 4882659, upload-time = "2025-06-06T14:50:14.361Z" }, - { url = "https://files.pythonhosted.org/packages/a5/37/2f8faa2bf8bd1ba016ea86a94c72a5e8ef8ea1c52ec64dada617191f0515/fonttools-4.58.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:3b379cf05bf776c336a0205632596b1c7d7ab5f7135e3935f2ca2a0596d2d092", size = 4876128, upload-time = "2025-06-06T14:50:16.653Z" }, - { url = "https://files.pythonhosted.org/packages/a0/ca/f1caac24ae7028a33f2a95e66c640571ff0ce5cb06c4c9ca1f632e98e22c/fonttools-4.58.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:99ab3547a15a5d168c265e139e21756bbae1de04782ac9445c9ef61b8c0a32ce", size = 5027843, upload-time = "2025-06-06T14:50:18.582Z" }, - { url = "https://files.pythonhosted.org/packages/52/6e/3200fa2bafeed748a3017e4e6594751fd50cce544270919265451b21b75c/fonttools-4.58.2-cp312-cp312-win32.whl", hash = "sha256:6764e7a3188ce36eea37b477cdeca602ae62e63ae9fc768ebc176518072deb04", size = 2177374, upload-time = "2025-06-06T14:50:20.454Z" }, - { url = "https://files.pythonhosted.org/packages/55/ab/8f3e726f3f3ef3062ce9bbb615727c55beb11eea96d1f443f79cafca93ee/fonttools-4.58.2-cp312-cp312-win_amd64.whl", hash = "sha256:41f02182a1d41b79bae93c1551855146868b04ec3e7f9c57d6fef41a124e6b29", size = 2226685, upload-time = "2025-06-06T14:50:22.087Z" }, - { url = "https://files.pythonhosted.org/packages/ac/01/29f81970a508408af20b434ff5136cd1c7ef92198957eb8ddadfbb9ef177/fonttools-4.58.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:829048ef29dbefec35d95cc6811014720371c95bdc6ceb0afd2f8e407c41697c", size = 2732398, upload-time = "2025-06-06T14:50:23.821Z" }, - { url = "https://files.pythonhosted.org/packages/0c/f1/095f2338359333adb2f1c51b8b2ad94bf9a2fa17e5fcbdf8a7b8e3672d2d/fonttools-4.58.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:64998c5993431e45b474ed5f579f18555f45309dd1cf8008b594d2fe0a94be59", size = 2306390, upload-time = "2025-06-06T14:50:25.942Z" }, - { url = "https://files.pythonhosted.org/packages/bf/d4/9eba134c7666a26668c28945355cd86e5d57828b6b8d952a5489fe45d7e2/fonttools-4.58.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b887a1cf9fbcb920980460ee4a489c8aba7e81341f6cdaeefa08c0ab6529591c", size = 4795100, upload-time = "2025-06-06T14:50:27.653Z" }, - { url = "https://files.pythonhosted.org/packages/2a/34/345f153a24c1340daa62340c3be2d1e5ee6c1ee57e13f6d15613209e688b/fonttools-4.58.2-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:27d74b9f6970cefbcda33609a3bee1618e5e57176c8b972134c4e22461b9c791", size = 4864585, upload-time = "2025-06-06T14:50:29.915Z" }, - { url = "https://files.pythonhosted.org/packages/01/5f/091979a25c9a6c4ba064716cfdfe9431f78ed6ffba4bd05ae01eee3532e9/fonttools-4.58.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:ec26784610056a770e15a60f9920cee26ae10d44d1e43271ea652dadf4e7a236", size = 4866191, upload-time = "2025-06-06T14:50:32.188Z" }, - { url = "https://files.pythonhosted.org/packages/9d/09/3944d0ece4a39560918cba37c2e0453a5f826b665a6db0b43abbd9dbe7e1/fonttools-4.58.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:ed0a71d57dd427c0fb89febd08cac9b925284d2a8888e982a6c04714b82698d7", size = 5003867, upload-time = "2025-06-06T14:50:34.323Z" }, - { url = "https://files.pythonhosted.org/packages/68/97/190b8f9ba22f8b7d07df2faa9fd7087b453776d0705d3cb5b0cbd89b8ef0/fonttools-4.58.2-cp313-cp313-win32.whl", hash = "sha256:994e362b01460aa863ef0cb41a29880bc1a498c546952df465deff7abf75587a", size = 2175688, upload-time = "2025-06-06T14:50:36.211Z" }, - { url = "https://files.pythonhosted.org/packages/94/ea/0e6d4a39528dbb6e0f908c2ad219975be0a506ed440fddf5453b90f76981/fonttools-4.58.2-cp313-cp313-win_amd64.whl", hash = "sha256:f95dec862d7c395f2d4efe0535d9bdaf1e3811e51b86432fa2a77e73f8195756", size = 2226464, upload-time = "2025-06-06T14:50:38.862Z" }, - { url = "https://files.pythonhosted.org/packages/e8/e5/c1cb8ebabb80be76d4d28995da9416816653f8f572920ab5e3d2e3ac8285/fonttools-4.58.2-py3-none-any.whl", hash = "sha256:84f4b0bcfa046254a65ee7117094b4907e22dc98097a220ef108030eb3c15596", size = 1114597, upload-time = "2025-06-06T14:50:56.619Z" }, +version = "4.61.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/33/f9/0e84d593c0e12244150280a630999835a64f2852276161b62a0f98318de0/fonttools-4.61.0.tar.gz", hash = "sha256:ec520a1f0c7758d7a858a00f090c1745f6cde6a7c5e76fb70ea4044a15f712e7", size = 3561884, upload-time = "2025-11-28T17:05:49.491Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/fd/be/5aa89cdddf2863d8afbdc19eb8ec5d8d35d40eeeb8e6cf52c5ff1c2dbd33/fonttools-4.61.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:a32a16951cbf113d38f1dd8551b277b6e06e0f6f776fece0f99f746d739e1be3", size = 2847553, upload-time = "2025-11-28T17:04:30.539Z" }, + { url = "https://files.pythonhosted.org/packages/0d/3e/6ff643b07cead1236a534f51291ae2981721cf419135af5b740c002a66dd/fonttools-4.61.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:328a9c227984bebaf69f3ac9062265f8f6acc7ddf2e4e344c63358579af0aa3d", size = 2388298, upload-time = "2025-11-28T17:04:32.161Z" }, + { url = "https://files.pythonhosted.org/packages/c3/15/fca8dfbe7b482e6f240b1aad0ed7c6e2e75e7a28efa3d3a03b570617b5e5/fonttools-4.61.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:2f0bafc8a3b3749c69cc610e5aa3da832d39c2a37a68f03d18ec9a02ecaac04a", size = 5054133, upload-time = "2025-11-28T17:04:34.035Z" }, + { url = "https://files.pythonhosted.org/packages/6a/a2/821c61c691b21fd09e07528a9a499cc2b075ac83ddb644aa16c9875a64bc/fonttools-4.61.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:b5ca59b7417d149cf24e4c1933c9f44b2957424fc03536f132346d5242e0ebe5", size = 5031410, upload-time = "2025-11-28T17:04:36.141Z" }, + { url = "https://files.pythonhosted.org/packages/e8/f6/8b16339e93d03c732c8a23edefe3061b17a5f9107ddc47a3215ecd054cac/fonttools-4.61.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:df8cbce85cf482eb01f4551edca978c719f099c623277bda8332e5dbe7dba09d", size = 5030005, upload-time = "2025-11-28T17:04:38.314Z" }, + { url = "https://files.pythonhosted.org/packages/ac/eb/d4e150427bdaa147755239c931bbce829a88149ade5bfd8a327afe565567/fonttools-4.61.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:7fb5b84f48a6a733ca3d7f41aa9551908ccabe8669ffe79586560abcc00a9cfd", size = 5154026, upload-time = "2025-11-28T17:04:40.34Z" }, + { url = "https://files.pythonhosted.org/packages/7f/5f/3dd00ce0dba6759943c707b1830af8c0bcf6f8f1a9fe46cb82e7ac2aaa74/fonttools-4.61.0-cp311-cp311-win32.whl", hash = "sha256:787ef9dfd1ea9fe49573c272412ae5f479d78e671981819538143bec65863865", size = 2276035, upload-time = "2025-11-28T17:04:42.59Z" }, + { url = "https://files.pythonhosted.org/packages/4e/44/798c472f096ddf12955eddb98f4f7c906e7497695d04ce073ddf7161d134/fonttools-4.61.0-cp311-cp311-win_amd64.whl", hash = "sha256:14fafda386377b6131d9e448af42d0926bad47e038de0e5ba1d58c25d621f028", size = 2327290, upload-time = "2025-11-28T17:04:44.57Z" }, + { url = "https://files.pythonhosted.org/packages/00/5d/19e5939f773c7cb05480fe2e881d63870b63ee2b4bdb9a77d55b1d36c7b9/fonttools-4.61.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:e24a1565c4e57111ec7f4915f8981ecbb61adf66a55f378fdc00e206059fcfef", size = 2846930, upload-time = "2025-11-28T17:04:46.639Z" }, + { url = "https://files.pythonhosted.org/packages/25/b2/0658faf66f705293bd7e739a4f038302d188d424926be9c59bdad945664b/fonttools-4.61.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:e2bfacb5351303cae9f072ccf3fc6ecb437a6f359c0606bae4b1ab6715201d87", size = 2383016, upload-time = "2025-11-28T17:04:48.525Z" }, + { url = "https://files.pythonhosted.org/packages/29/a3/1fa90b95b690f0d7541f48850adc40e9019374d896c1b8148d15012b2458/fonttools-4.61.0-cp312-cp312-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:0bdcf2e29d65c26299cc3d502f4612365e8b90a939f46cd92d037b6cb7bb544a", size = 4949425, upload-time = "2025-11-28T17:04:50.482Z" }, + { url = "https://files.pythonhosted.org/packages/af/00/acf18c00f6c501bd6e05ee930f926186f8a8e268265407065688820f1c94/fonttools-4.61.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e6cd0d9051b8ddaf7385f99dd82ec2a058e2b46cf1f1961e68e1ff20fcbb61af", size = 4999632, upload-time = "2025-11-28T17:04:52.508Z" }, + { url = "https://files.pythonhosted.org/packages/5f/e0/19a2b86e54109b1d2ee8743c96a1d297238ae03243897bc5345c0365f34d/fonttools-4.61.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:e074bc07c31406f45c418e17c1722e83560f181d122c412fa9e815df0ff74810", size = 4939438, upload-time = "2025-11-28T17:04:54.437Z" }, + { url = "https://files.pythonhosted.org/packages/04/35/7b57a5f57d46286360355eff8d6b88c64ab6331107f37a273a71c803798d/fonttools-4.61.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:5a9b78da5d5faa17e63b2404b77feeae105c1b7e75f26020ab7a27b76e02039f", size = 5088960, upload-time = "2025-11-28T17:04:56.348Z" }, + { url = "https://files.pythonhosted.org/packages/3e/0e/6c5023eb2e0fe5d1ababc7e221e44acd3ff668781489cc1937a6f83d620a/fonttools-4.61.0-cp312-cp312-win32.whl", hash = "sha256:9821ed77bb676736b88fa87a737c97b6af06e8109667e625a4f00158540ce044", size = 2264404, upload-time = "2025-11-28T17:04:58.149Z" }, + { url = "https://files.pythonhosted.org/packages/36/0b/63273128c7c5df19b1e4cd92e0a1e6ea5bb74a400c4905054c96ad60a675/fonttools-4.61.0-cp312-cp312-win_amd64.whl", hash = "sha256:0011d640afa61053bc6590f9a3394bd222de7cfde19346588beabac374e9d8ac", size = 2314427, upload-time = "2025-11-28T17:04:59.812Z" }, + { url = "https://files.pythonhosted.org/packages/17/45/334f0d7f181e5473cfb757e1b60f4e60e7fc64f28d406e5d364a952718c0/fonttools-4.61.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba774b8cbd8754f54b8eb58124e8bd45f736b2743325ab1a5229698942b9b433", size = 2841801, upload-time = "2025-11-28T17:05:01.621Z" }, + { url = "https://files.pythonhosted.org/packages/cc/63/97b9c78e1f79bc741d4efe6e51f13872d8edb2b36e1b9fb2bab0d4491bb7/fonttools-4.61.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:c84b430616ed73ce46e9cafd0bf0800e366a3e02fb7e1ad7c1e214dbe3862b1f", size = 2379024, upload-time = "2025-11-28T17:05:03.668Z" }, + { url = "https://files.pythonhosted.org/packages/4e/80/c87bc524a90dbeb2a390eea23eae448286983da59b7e02c67fa0ca96a8c5/fonttools-4.61.0-cp313-cp313-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:b2b734d8391afe3c682320840c8191de9bd24e7eb85768dd4dc06ed1b63dbb1b", size = 4923706, upload-time = "2025-11-28T17:05:05.494Z" }, + { url = "https://files.pythonhosted.org/packages/6d/f6/a3b0374811a1de8c3f9207ec88f61ad1bb96f938ed89babae26c065c2e46/fonttools-4.61.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:a5c5fff72bf31b0e558ed085e4fd7ed96eb85881404ecc39ed2a779e7cf724eb", size = 4979751, upload-time = "2025-11-28T17:05:07.665Z" }, + { url = "https://files.pythonhosted.org/packages/a5/3b/30f63b4308b449091573285f9d27619563a84f399946bca3eadc9554afbe/fonttools-4.61.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:14a290c5c93fcab76b7f451e6a4b7721b712d90b3b5ed6908f1abcf794e90d6d", size = 4921113, upload-time = "2025-11-28T17:05:09.551Z" }, + { url = "https://files.pythonhosted.org/packages/41/6c/58e6e9b7d9d8bf2d7010bd7bb493060b39b02a12d1cda64a8bfb116ce760/fonttools-4.61.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:13e3e20a5463bfeb77b3557d04b30bd6a96a6bb5c15c7b2e7908903e69d437a0", size = 5063183, upload-time = "2025-11-28T17:05:11.677Z" }, + { url = "https://files.pythonhosted.org/packages/3f/e3/52c790ab2b07492df059947a1fd7778e105aac5848c0473029a4d20481a2/fonttools-4.61.0-cp313-cp313-win32.whl", hash = "sha256:6781e7a4bb010be1cd69a29927b0305c86b843395f2613bdabe115f7d6ea7f34", size = 2263159, upload-time = "2025-11-28T17:05:13.292Z" }, + { url = "https://files.pythonhosted.org/packages/e9/1f/116013b200fbeba871046554d5d2a45fefa69a05c40e9cdfd0d4fff53edc/fonttools-4.61.0-cp313-cp313-win_amd64.whl", hash = "sha256:c53b47834ae41e8e4829171cc44fec0fdf125545a15f6da41776b926b9645a9a", size = 2313530, upload-time = "2025-11-28T17:05:14.848Z" }, + { url = "https://files.pythonhosted.org/packages/d3/99/59b1e25987787cb714aa9457cee4c9301b7c2153f0b673e2b8679d37669d/fonttools-4.61.0-cp314-cp314-macosx_10_15_universal2.whl", hash = "sha256:96dfc9bc1f2302224e48e6ee37e656eddbab810b724b52e9d9c13a57a6abad01", size = 2841429, upload-time = "2025-11-28T17:05:16.671Z" }, + { url = "https://files.pythonhosted.org/packages/2b/b2/4c1911d4332c8a144bb3b44416e274ccca0e297157c971ea1b3fbb855590/fonttools-4.61.0-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:3b2065d94e5d63aafc2591c8b6ccbdb511001d9619f1bca8ad39b745ebeb5efa", size = 2378987, upload-time = "2025-11-28T17:05:18.69Z" }, + { url = "https://files.pythonhosted.org/packages/24/b0/f442e90fde5d2af2ae0cb54008ab6411edc557ee33b824e13e1d04925ac9/fonttools-4.61.0-cp314-cp314-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:e0d87e81e4d869549585ba0beb3f033718501c1095004f5e6aef598d13ebc216", size = 4873270, upload-time = "2025-11-28T17:05:20.625Z" }, + { url = "https://files.pythonhosted.org/packages/bb/04/f5d5990e33053c8a59b90b1d7e10ad9b97a73f42c745304da0e709635fab/fonttools-4.61.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1cfa2eb9bae650e58f0e8ad53c49d19a844d6034d6b259f30f197238abc1ccee", size = 4968270, upload-time = "2025-11-28T17:05:22.515Z" }, + { url = "https://files.pythonhosted.org/packages/94/9f/2091402e0d27c9c8c4bab5de0e5cd146d9609a2d7d1c666bbb75c0011c1a/fonttools-4.61.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:4238120002e68296d55e091411c09eab94e111c8ce64716d17df53fd0eb3bb3d", size = 4919799, upload-time = "2025-11-28T17:05:24.437Z" }, + { url = "https://files.pythonhosted.org/packages/a8/72/86adab22fde710b829f8ffbc8f264df01928e5b7a8f6177fa29979ebf256/fonttools-4.61.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:b6ceac262cc62bec01b3bb59abccf41b24ef6580869e306a4e88b7e56bb4bdda", size = 5030966, upload-time = "2025-11-28T17:05:26.115Z" }, + { url = "https://files.pythonhosted.org/packages/e8/a7/7c8e31b003349e845b853f5e0a67b95ff6b052fa4f5224f8b72624f5ac69/fonttools-4.61.0-cp314-cp314-win32.whl", hash = "sha256:adbb4ecee1a779469a77377bbe490565effe8fce6fb2e6f95f064de58f8bac85", size = 2267243, upload-time = "2025-11-28T17:05:27.807Z" }, + { url = "https://files.pythonhosted.org/packages/20/ee/f434fe7749360497c52b7dcbcfdbccdaab0a71c59f19d572576066717122/fonttools-4.61.0-cp314-cp314-win_amd64.whl", hash = "sha256:02bdf8e04d1a70476564b8640380f04bb4ac74edc1fc71f1bacb840b3e398ee9", size = 2318822, upload-time = "2025-11-28T17:05:29.882Z" }, + { url = "https://files.pythonhosted.org/packages/33/b3/c16255320255e5c1863ca2b2599bb61a46e2f566db0bbb9948615a8fe692/fonttools-4.61.0-cp314-cp314t-macosx_10_15_universal2.whl", hash = "sha256:627216062d90ab0d98215176d8b9562c4dd5b61271d35f130bcd30f6a8aaa33a", size = 2924917, upload-time = "2025-11-28T17:05:31.46Z" }, + { url = "https://files.pythonhosted.org/packages/e2/b8/08067ae21de705a817777c02ef36ab0b953cbe91d8adf134f9c2da75ed6d/fonttools-4.61.0-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:7b446623c9cd5f14a59493818eaa80255eec2468c27d2c01b56e05357c263195", size = 2413576, upload-time = "2025-11-28T17:05:33.343Z" }, + { url = "https://files.pythonhosted.org/packages/42/f1/96ff43f92addce2356780fdc203f2966206f3d22ea20e242c27826fd7442/fonttools-4.61.0-cp314-cp314t-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:70e2a0c0182ee75e493ef33061bfebf140ea57e035481d2f95aa03b66c7a0e05", size = 4877447, upload-time = "2025-11-28T17:05:35.278Z" }, + { url = "https://files.pythonhosted.org/packages/d0/1e/a3d8e51ed9ccfd7385e239ae374b78d258a0fb82d82cab99160a014a45d1/fonttools-4.61.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:9064b0f55b947e929ac669af5311ab1f26f750214db6dd9a0c97e091e918f486", size = 5095681, upload-time = "2025-11-28T17:05:37.142Z" }, + { url = "https://files.pythonhosted.org/packages/eb/f6/d256bd6c1065c146a0bdddf1c62f542e08ae5b3405dbf3fcc52be272f674/fonttools-4.61.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:2cb5e45a824ce14b90510024d0d39dae51bd4fbb54c42a9334ea8c8cf4d95cbe", size = 4974140, upload-time = "2025-11-28T17:05:39.5Z" }, + { url = "https://files.pythonhosted.org/packages/5d/0c/96633eb4b26f138cc48561c6e0c44b4ea48acea56b20b507d6b14f8e80ce/fonttools-4.61.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:6e5ca8c62efdec7972dfdfd454415c4db49b89aeaefaaacada432f3b7eea9866", size = 5001741, upload-time = "2025-11-28T17:05:41.424Z" }, + { url = "https://files.pythonhosted.org/packages/6f/9a/3b536bad3be4f26186f296e749ff17bad3e6d57232c104d752d24b2e265b/fonttools-4.61.0-cp314-cp314t-win32.whl", hash = "sha256:63c7125d31abe3e61d7bb917329b5543c5b3448db95f24081a13aaf064360fc8", size = 2330707, upload-time = "2025-11-28T17:05:43.548Z" }, + { url = "https://files.pythonhosted.org/packages/18/ea/e6b9ac610451ee9f04477c311ad126de971f6112cb579fa391d2a8edb00b/fonttools-4.61.0-cp314-cp314t-win_amd64.whl", hash = "sha256:67d841aa272be5500de7f447c40d1d8452783af33b4c3599899319f6ef9ad3c1", size = 2395950, upload-time = "2025-11-28T17:05:45.638Z" }, + { url = "https://files.pythonhosted.org/packages/0c/14/634f7daea5ffe6a5f7a0322ba8e1a0e23c9257b80aa91458107896d1dfc7/fonttools-4.61.0-py3-none-any.whl", hash = "sha256:276f14c560e6f98d24ef7f5f44438e55ff5a67f78fa85236b218462c9f5d0635", size = 1144485, upload-time = "2025-11-28T17:05:47.573Z" }, ] [[package]] @@ -3422,105 +2976,116 @@ wheels = [ [[package]] name = "frozenlist" -version = "1.7.0" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/79/b1/b64018016eeb087db503b038296fd782586432b9c077fc5c7839e9cb6ef6/frozenlist-1.7.0.tar.gz", hash = "sha256:2e310d81923c2437ea8670467121cc3e9b0f76d3043cc1d2331d56c7fb7a3a8f", size = 45078, upload-time = "2025-06-09T23:02:35.538Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/af/36/0da0a49409f6b47cc2d060dc8c9040b897b5902a8a4e37d9bc1deb11f680/frozenlist-1.7.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cc4df77d638aa2ed703b878dd093725b72a824c3c546c076e8fdf276f78ee84a", size = 81304, upload-time = "2025-06-09T22:59:46.226Z" }, - { url = "https://files.pythonhosted.org/packages/77/f0/77c11d13d39513b298e267b22eb6cb559c103d56f155aa9a49097221f0b6/frozenlist-1.7.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:716a9973a2cc963160394f701964fe25012600f3d311f60c790400b00e568b61", size = 47735, upload-time = "2025-06-09T22:59:48.133Z" }, - { url = "https://files.pythonhosted.org/packages/37/12/9d07fa18971a44150593de56b2f2947c46604819976784bcf6ea0d5db43b/frozenlist-1.7.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a0fd1bad056a3600047fb9462cff4c5322cebc59ebf5d0a3725e0ee78955001d", size = 46775, upload-time = "2025-06-09T22:59:49.564Z" }, - { url = "https://files.pythonhosted.org/packages/70/34/f73539227e06288fcd1f8a76853e755b2b48bca6747e99e283111c18bcd4/frozenlist-1.7.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3789ebc19cb811163e70fe2bd354cea097254ce6e707ae42e56f45e31e96cb8e", size = 224644, upload-time = "2025-06-09T22:59:51.35Z" }, - { url = "https://files.pythonhosted.org/packages/fb/68/c1d9c2f4a6e438e14613bad0f2973567586610cc22dcb1e1241da71de9d3/frozenlist-1.7.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:af369aa35ee34f132fcfad5be45fbfcde0e3a5f6a1ec0712857f286b7d20cca9", size = 222125, upload-time = "2025-06-09T22:59:52.884Z" }, - { url = "https://files.pythonhosted.org/packages/b9/d0/98e8f9a515228d708344d7c6986752be3e3192d1795f748c24bcf154ad99/frozenlist-1.7.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac64b6478722eeb7a3313d494f8342ef3478dff539d17002f849101b212ef97c", size = 233455, upload-time = "2025-06-09T22:59:54.74Z" }, - { url = "https://files.pythonhosted.org/packages/79/df/8a11bcec5600557f40338407d3e5bea80376ed1c01a6c0910fcfdc4b8993/frozenlist-1.7.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f89f65d85774f1797239693cef07ad4c97fdd0639544bad9ac4b869782eb1981", size = 227339, upload-time = "2025-06-09T22:59:56.187Z" }, - { url = "https://files.pythonhosted.org/packages/50/82/41cb97d9c9a5ff94438c63cc343eb7980dac4187eb625a51bdfdb7707314/frozenlist-1.7.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1073557c941395fdfcfac13eb2456cb8aad89f9de27bae29fabca8e563b12615", size = 212969, upload-time = "2025-06-09T22:59:57.604Z" }, - { url = "https://files.pythonhosted.org/packages/13/47/f9179ee5ee4f55629e4f28c660b3fdf2775c8bfde8f9c53f2de2d93f52a9/frozenlist-1.7.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1ed8d2fa095aae4bdc7fdd80351009a48d286635edffee66bf865e37a9125c50", size = 222862, upload-time = "2025-06-09T22:59:59.498Z" }, - { url = "https://files.pythonhosted.org/packages/1a/52/df81e41ec6b953902c8b7e3a83bee48b195cb0e5ec2eabae5d8330c78038/frozenlist-1.7.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:24c34bea555fe42d9f928ba0a740c553088500377448febecaa82cc3e88aa1fa", size = 222492, upload-time = "2025-06-09T23:00:01.026Z" }, - { url = "https://files.pythonhosted.org/packages/84/17/30d6ea87fa95a9408245a948604b82c1a4b8b3e153cea596421a2aef2754/frozenlist-1.7.0-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:69cac419ac6a6baad202c85aaf467b65ac860ac2e7f2ac1686dc40dbb52f6577", size = 238250, upload-time = "2025-06-09T23:00:03.401Z" }, - { url = "https://files.pythonhosted.org/packages/8f/00/ecbeb51669e3c3df76cf2ddd66ae3e48345ec213a55e3887d216eb4fbab3/frozenlist-1.7.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:960d67d0611f4c87da7e2ae2eacf7ea81a5be967861e0c63cf205215afbfac59", size = 218720, upload-time = "2025-06-09T23:00:05.282Z" }, - { url = "https://files.pythonhosted.org/packages/1a/c0/c224ce0e0eb31cc57f67742071bb470ba8246623c1823a7530be0e76164c/frozenlist-1.7.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:41be2964bd4b15bf575e5daee5a5ce7ed3115320fb3c2b71fca05582ffa4dc9e", size = 232585, upload-time = "2025-06-09T23:00:07.962Z" }, - { url = "https://files.pythonhosted.org/packages/55/3c/34cb694abf532f31f365106deebdeac9e45c19304d83cf7d51ebbb4ca4d1/frozenlist-1.7.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:46d84d49e00c9429238a7ce02dc0be8f6d7cd0cd405abd1bebdc991bf27c15bd", size = 234248, upload-time = "2025-06-09T23:00:09.428Z" }, - { url = "https://files.pythonhosted.org/packages/98/c0/2052d8b6cecda2e70bd81299e3512fa332abb6dcd2969b9c80dfcdddbf75/frozenlist-1.7.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:15900082e886edb37480335d9d518cec978afc69ccbc30bd18610b7c1b22a718", size = 221621, upload-time = "2025-06-09T23:00:11.32Z" }, - { url = "https://files.pythonhosted.org/packages/c5/bf/7dcebae315436903b1d98ffb791a09d674c88480c158aa171958a3ac07f0/frozenlist-1.7.0-cp310-cp310-win32.whl", hash = "sha256:400ddd24ab4e55014bba442d917203c73b2846391dd42ca5e38ff52bb18c3c5e", size = 39578, upload-time = "2025-06-09T23:00:13.526Z" }, - { url = "https://files.pythonhosted.org/packages/8f/5f/f69818f017fa9a3d24d1ae39763e29b7f60a59e46d5f91b9c6b21622f4cd/frozenlist-1.7.0-cp310-cp310-win_amd64.whl", hash = "sha256:6eb93efb8101ef39d32d50bce242c84bcbddb4f7e9febfa7b524532a239b4464", size = 43830, upload-time = "2025-06-09T23:00:14.98Z" }, - { url = "https://files.pythonhosted.org/packages/34/7e/803dde33760128acd393a27eb002f2020ddb8d99d30a44bfbaab31c5f08a/frozenlist-1.7.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:aa51e147a66b2d74de1e6e2cf5921890de6b0f4820b257465101d7f37b49fb5a", size = 82251, upload-time = "2025-06-09T23:00:16.279Z" }, - { url = "https://files.pythonhosted.org/packages/75/a9/9c2c5760b6ba45eae11334db454c189d43d34a4c0b489feb2175e5e64277/frozenlist-1.7.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:9b35db7ce1cd71d36ba24f80f0c9e7cff73a28d7a74e91fe83e23d27c7828750", size = 48183, upload-time = "2025-06-09T23:00:17.698Z" }, - { url = "https://files.pythonhosted.org/packages/47/be/4038e2d869f8a2da165f35a6befb9158c259819be22eeaf9c9a8f6a87771/frozenlist-1.7.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:34a69a85e34ff37791e94542065c8416c1afbf820b68f720452f636d5fb990cd", size = 47107, upload-time = "2025-06-09T23:00:18.952Z" }, - { url = "https://files.pythonhosted.org/packages/79/26/85314b8a83187c76a37183ceed886381a5f992975786f883472fcb6dc5f2/frozenlist-1.7.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4a646531fa8d82c87fe4bb2e596f23173caec9185bfbca5d583b4ccfb95183e2", size = 237333, upload-time = "2025-06-09T23:00:20.275Z" }, - { url = "https://files.pythonhosted.org/packages/1f/fd/e5b64f7d2c92a41639ffb2ad44a6a82f347787abc0c7df5f49057cf11770/frozenlist-1.7.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:79b2ffbba483f4ed36a0f236ccb85fbb16e670c9238313709638167670ba235f", size = 231724, upload-time = "2025-06-09T23:00:21.705Z" }, - { url = "https://files.pythonhosted.org/packages/20/fb/03395c0a43a5976af4bf7534759d214405fbbb4c114683f434dfdd3128ef/frozenlist-1.7.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a26f205c9ca5829cbf82bb2a84b5c36f7184c4316617d7ef1b271a56720d6b30", size = 245842, upload-time = "2025-06-09T23:00:23.148Z" }, - { url = "https://files.pythonhosted.org/packages/d0/15/c01c8e1dffdac5d9803507d824f27aed2ba76b6ed0026fab4d9866e82f1f/frozenlist-1.7.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:bcacfad3185a623fa11ea0e0634aac7b691aa925d50a440f39b458e41c561d98", size = 239767, upload-time = "2025-06-09T23:00:25.103Z" }, - { url = "https://files.pythonhosted.org/packages/14/99/3f4c6fe882c1f5514b6848aa0a69b20cb5e5d8e8f51a339d48c0e9305ed0/frozenlist-1.7.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:72c1b0fe8fe451b34f12dce46445ddf14bd2a5bcad7e324987194dc8e3a74c86", size = 224130, upload-time = "2025-06-09T23:00:27.061Z" }, - { url = "https://files.pythonhosted.org/packages/4d/83/220a374bd7b2aeba9d0725130665afe11de347d95c3620b9b82cc2fcab97/frozenlist-1.7.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:61d1a5baeaac6c0798ff6edfaeaa00e0e412d49946c53fae8d4b8e8b3566c4ae", size = 235301, upload-time = "2025-06-09T23:00:29.02Z" }, - { url = "https://files.pythonhosted.org/packages/03/3c/3e3390d75334a063181625343e8daab61b77e1b8214802cc4e8a1bb678fc/frozenlist-1.7.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:7edf5c043c062462f09b6820de9854bf28cc6cc5b6714b383149745e287181a8", size = 234606, upload-time = "2025-06-09T23:00:30.514Z" }, - { url = "https://files.pythonhosted.org/packages/23/1e/58232c19608b7a549d72d9903005e2d82488f12554a32de2d5fb59b9b1ba/frozenlist-1.7.0-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:d50ac7627b3a1bd2dcef6f9da89a772694ec04d9a61b66cf87f7d9446b4a0c31", size = 248372, upload-time = "2025-06-09T23:00:31.966Z" }, - { url = "https://files.pythonhosted.org/packages/c0/a4/e4a567e01702a88a74ce8a324691e62a629bf47d4f8607f24bf1c7216e7f/frozenlist-1.7.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:ce48b2fece5aeb45265bb7a58259f45027db0abff478e3077e12b05b17fb9da7", size = 229860, upload-time = "2025-06-09T23:00:33.375Z" }, - { url = "https://files.pythonhosted.org/packages/73/a6/63b3374f7d22268b41a9db73d68a8233afa30ed164c46107b33c4d18ecdd/frozenlist-1.7.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:fe2365ae915a1fafd982c146754e1de6ab3478def8a59c86e1f7242d794f97d5", size = 245893, upload-time = "2025-06-09T23:00:35.002Z" }, - { url = "https://files.pythonhosted.org/packages/6d/eb/d18b3f6e64799a79673c4ba0b45e4cfbe49c240edfd03a68be20002eaeaa/frozenlist-1.7.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:45a6f2fdbd10e074e8814eb98b05292f27bad7d1883afbe009d96abdcf3bc898", size = 246323, upload-time = "2025-06-09T23:00:36.468Z" }, - { url = "https://files.pythonhosted.org/packages/5a/f5/720f3812e3d06cd89a1d5db9ff6450088b8f5c449dae8ffb2971a44da506/frozenlist-1.7.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:21884e23cffabb157a9dd7e353779077bf5b8f9a58e9b262c6caad2ef5f80a56", size = 233149, upload-time = "2025-06-09T23:00:37.963Z" }, - { url = "https://files.pythonhosted.org/packages/69/68/03efbf545e217d5db8446acfd4c447c15b7c8cf4dbd4a58403111df9322d/frozenlist-1.7.0-cp311-cp311-win32.whl", hash = "sha256:284d233a8953d7b24f9159b8a3496fc1ddc00f4db99c324bd5fb5f22d8698ea7", size = 39565, upload-time = "2025-06-09T23:00:39.753Z" }, - { url = "https://files.pythonhosted.org/packages/58/17/fe61124c5c333ae87f09bb67186d65038834a47d974fc10a5fadb4cc5ae1/frozenlist-1.7.0-cp311-cp311-win_amd64.whl", hash = "sha256:387cbfdcde2f2353f19c2f66bbb52406d06ed77519ac7ee21be0232147c2592d", size = 44019, upload-time = "2025-06-09T23:00:40.988Z" }, - { url = "https://files.pythonhosted.org/packages/ef/a2/c8131383f1e66adad5f6ecfcce383d584ca94055a34d683bbb24ac5f2f1c/frozenlist-1.7.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:3dbf9952c4bb0e90e98aec1bd992b3318685005702656bc6f67c1a32b76787f2", size = 81424, upload-time = "2025-06-09T23:00:42.24Z" }, - { url = "https://files.pythonhosted.org/packages/4c/9d/02754159955088cb52567337d1113f945b9e444c4960771ea90eb73de8db/frozenlist-1.7.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:1f5906d3359300b8a9bb194239491122e6cf1444c2efb88865426f170c262cdb", size = 47952, upload-time = "2025-06-09T23:00:43.481Z" }, - { url = "https://files.pythonhosted.org/packages/01/7a/0046ef1bd6699b40acd2067ed6d6670b4db2f425c56980fa21c982c2a9db/frozenlist-1.7.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:3dabd5a8f84573c8d10d8859a50ea2dec01eea372031929871368c09fa103478", size = 46688, upload-time = "2025-06-09T23:00:44.793Z" }, - { url = "https://files.pythonhosted.org/packages/d6/a2/a910bafe29c86997363fb4c02069df4ff0b5bc39d33c5198b4e9dd42d8f8/frozenlist-1.7.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:aa57daa5917f1738064f302bf2626281a1cb01920c32f711fbc7bc36111058a8", size = 243084, upload-time = "2025-06-09T23:00:46.125Z" }, - { url = "https://files.pythonhosted.org/packages/64/3e/5036af9d5031374c64c387469bfcc3af537fc0f5b1187d83a1cf6fab1639/frozenlist-1.7.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:c193dda2b6d49f4c4398962810fa7d7c78f032bf45572b3e04dd5249dff27e08", size = 233524, upload-time = "2025-06-09T23:00:47.73Z" }, - { url = "https://files.pythonhosted.org/packages/06/39/6a17b7c107a2887e781a48ecf20ad20f1c39d94b2a548c83615b5b879f28/frozenlist-1.7.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:bfe2b675cf0aaa6d61bf8fbffd3c274b3c9b7b1623beb3809df8a81399a4a9c4", size = 248493, upload-time = "2025-06-09T23:00:49.742Z" }, - { url = "https://files.pythonhosted.org/packages/be/00/711d1337c7327d88c44d91dd0f556a1c47fb99afc060ae0ef66b4d24793d/frozenlist-1.7.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8fc5d5cda37f62b262405cf9652cf0856839c4be8ee41be0afe8858f17f4c94b", size = 244116, upload-time = "2025-06-09T23:00:51.352Z" }, - { url = "https://files.pythonhosted.org/packages/24/fe/74e6ec0639c115df13d5850e75722750adabdc7de24e37e05a40527ca539/frozenlist-1.7.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b0d5ce521d1dd7d620198829b87ea002956e4319002ef0bc8d3e6d045cb4646e", size = 224557, upload-time = "2025-06-09T23:00:52.855Z" }, - { url = "https://files.pythonhosted.org/packages/8d/db/48421f62a6f77c553575201e89048e97198046b793f4a089c79a6e3268bd/frozenlist-1.7.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:488d0a7d6a0008ca0db273c542098a0fa9e7dfaa7e57f70acef43f32b3f69dca", size = 241820, upload-time = "2025-06-09T23:00:54.43Z" }, - { url = "https://files.pythonhosted.org/packages/1d/fa/cb4a76bea23047c8462976ea7b7a2bf53997a0ca171302deae9d6dd12096/frozenlist-1.7.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:15a7eaba63983d22c54d255b854e8108e7e5f3e89f647fc854bd77a237e767df", size = 236542, upload-time = "2025-06-09T23:00:56.409Z" }, - { url = "https://files.pythonhosted.org/packages/5d/32/476a4b5cfaa0ec94d3f808f193301debff2ea42288a099afe60757ef6282/frozenlist-1.7.0-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:1eaa7e9c6d15df825bf255649e05bd8a74b04a4d2baa1ae46d9c2d00b2ca2cb5", size = 249350, upload-time = "2025-06-09T23:00:58.468Z" }, - { url = "https://files.pythonhosted.org/packages/8d/ba/9a28042f84a6bf8ea5dbc81cfff8eaef18d78b2a1ad9d51c7bc5b029ad16/frozenlist-1.7.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:e4389e06714cfa9d47ab87f784a7c5be91d3934cd6e9a7b85beef808297cc025", size = 225093, upload-time = "2025-06-09T23:01:00.015Z" }, - { url = "https://files.pythonhosted.org/packages/bc/29/3a32959e68f9cf000b04e79ba574527c17e8842e38c91d68214a37455786/frozenlist-1.7.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:73bd45e1488c40b63fe5a7df892baf9e2a4d4bb6409a2b3b78ac1c6236178e01", size = 245482, upload-time = "2025-06-09T23:01:01.474Z" }, - { url = "https://files.pythonhosted.org/packages/80/e8/edf2f9e00da553f07f5fa165325cfc302dead715cab6ac8336a5f3d0adc2/frozenlist-1.7.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:99886d98e1643269760e5fe0df31e5ae7050788dd288947f7f007209b8c33f08", size = 249590, upload-time = "2025-06-09T23:01:02.961Z" }, - { url = "https://files.pythonhosted.org/packages/1c/80/9a0eb48b944050f94cc51ee1c413eb14a39543cc4f760ed12657a5a3c45a/frozenlist-1.7.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:290a172aae5a4c278c6da8a96222e6337744cd9c77313efe33d5670b9f65fc43", size = 237785, upload-time = "2025-06-09T23:01:05.095Z" }, - { url = "https://files.pythonhosted.org/packages/f3/74/87601e0fb0369b7a2baf404ea921769c53b7ae00dee7dcfe5162c8c6dbf0/frozenlist-1.7.0-cp312-cp312-win32.whl", hash = "sha256:426c7bc70e07cfebc178bc4c2bf2d861d720c4fff172181eeb4a4c41d4ca2ad3", size = 39487, upload-time = "2025-06-09T23:01:06.54Z" }, - { url = "https://files.pythonhosted.org/packages/0b/15/c026e9a9fc17585a9d461f65d8593d281fedf55fbf7eb53f16c6df2392f9/frozenlist-1.7.0-cp312-cp312-win_amd64.whl", hash = "sha256:563b72efe5da92e02eb68c59cb37205457c977aa7a449ed1b37e6939e5c47c6a", size = 43874, upload-time = "2025-06-09T23:01:07.752Z" }, - { url = "https://files.pythonhosted.org/packages/24/90/6b2cebdabdbd50367273c20ff6b57a3dfa89bd0762de02c3a1eb42cb6462/frozenlist-1.7.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ee80eeda5e2a4e660651370ebffd1286542b67e268aa1ac8d6dbe973120ef7ee", size = 79791, upload-time = "2025-06-09T23:01:09.368Z" }, - { url = "https://files.pythonhosted.org/packages/83/2e/5b70b6a3325363293fe5fc3ae74cdcbc3e996c2a11dde2fd9f1fb0776d19/frozenlist-1.7.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:d1a81c85417b914139e3a9b995d4a1c84559afc839a93cf2cb7f15e6e5f6ed2d", size = 47165, upload-time = "2025-06-09T23:01:10.653Z" }, - { url = "https://files.pythonhosted.org/packages/f4/25/a0895c99270ca6966110f4ad98e87e5662eab416a17e7fd53c364bf8b954/frozenlist-1.7.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:cbb65198a9132ebc334f237d7b0df163e4de83fb4f2bdfe46c1e654bdb0c5d43", size = 45881, upload-time = "2025-06-09T23:01:12.296Z" }, - { url = "https://files.pythonhosted.org/packages/19/7c/71bb0bbe0832793c601fff68cd0cf6143753d0c667f9aec93d3c323f4b55/frozenlist-1.7.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dab46c723eeb2c255a64f9dc05b8dd601fde66d6b19cdb82b2e09cc6ff8d8b5d", size = 232409, upload-time = "2025-06-09T23:01:13.641Z" }, - { url = "https://files.pythonhosted.org/packages/c0/45/ed2798718910fe6eb3ba574082aaceff4528e6323f9a8570be0f7028d8e9/frozenlist-1.7.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:6aeac207a759d0dedd2e40745575ae32ab30926ff4fa49b1635def65806fddee", size = 225132, upload-time = "2025-06-09T23:01:15.264Z" }, - { url = "https://files.pythonhosted.org/packages/ba/e2/8417ae0f8eacb1d071d4950f32f229aa6bf68ab69aab797b72a07ea68d4f/frozenlist-1.7.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:bd8c4e58ad14b4fa7802b8be49d47993182fdd4023393899632c88fd8cd994eb", size = 237638, upload-time = "2025-06-09T23:01:16.752Z" }, - { url = "https://files.pythonhosted.org/packages/f8/b7/2ace5450ce85f2af05a871b8c8719b341294775a0a6c5585d5e6170f2ce7/frozenlist-1.7.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:04fb24d104f425da3540ed83cbfc31388a586a7696142004c577fa61c6298c3f", size = 233539, upload-time = "2025-06-09T23:01:18.202Z" }, - { url = "https://files.pythonhosted.org/packages/46/b9/6989292c5539553dba63f3c83dc4598186ab2888f67c0dc1d917e6887db6/frozenlist-1.7.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6a5c505156368e4ea6b53b5ac23c92d7edc864537ff911d2fb24c140bb175e60", size = 215646, upload-time = "2025-06-09T23:01:19.649Z" }, - { url = "https://files.pythonhosted.org/packages/72/31/bc8c5c99c7818293458fe745dab4fd5730ff49697ccc82b554eb69f16a24/frozenlist-1.7.0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8bd7eb96a675f18aa5c553eb7ddc24a43c8c18f22e1f9925528128c052cdbe00", size = 232233, upload-time = "2025-06-09T23:01:21.175Z" }, - { url = "https://files.pythonhosted.org/packages/59/52/460db4d7ba0811b9ccb85af996019f5d70831f2f5f255f7cc61f86199795/frozenlist-1.7.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:05579bf020096fe05a764f1f84cd104a12f78eaab68842d036772dc6d4870b4b", size = 227996, upload-time = "2025-06-09T23:01:23.098Z" }, - { url = "https://files.pythonhosted.org/packages/ba/c9/f4b39e904c03927b7ecf891804fd3b4df3db29b9e487c6418e37988d6e9d/frozenlist-1.7.0-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:376b6222d114e97eeec13d46c486facd41d4f43bab626b7c3f6a8b4e81a5192c", size = 242280, upload-time = "2025-06-09T23:01:24.808Z" }, - { url = "https://files.pythonhosted.org/packages/b8/33/3f8d6ced42f162d743e3517781566b8481322be321b486d9d262adf70bfb/frozenlist-1.7.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:0aa7e176ebe115379b5b1c95b4096fb1c17cce0847402e227e712c27bdb5a949", size = 217717, upload-time = "2025-06-09T23:01:26.28Z" }, - { url = "https://files.pythonhosted.org/packages/3e/e8/ad683e75da6ccef50d0ab0c2b2324b32f84fc88ceee778ed79b8e2d2fe2e/frozenlist-1.7.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:3fbba20e662b9c2130dc771e332a99eff5da078b2b2648153a40669a6d0e36ca", size = 236644, upload-time = "2025-06-09T23:01:27.887Z" }, - { url = "https://files.pythonhosted.org/packages/b2/14/8d19ccdd3799310722195a72ac94ddc677541fb4bef4091d8e7775752360/frozenlist-1.7.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:f3f4410a0a601d349dd406b5713fec59b4cee7e71678d5b17edda7f4655a940b", size = 238879, upload-time = "2025-06-09T23:01:29.524Z" }, - { url = "https://files.pythonhosted.org/packages/ce/13/c12bf657494c2fd1079a48b2db49fa4196325909249a52d8f09bc9123fd7/frozenlist-1.7.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:e2cdfaaec6a2f9327bf43c933c0319a7c429058e8537c508964a133dffee412e", size = 232502, upload-time = "2025-06-09T23:01:31.287Z" }, - { url = "https://files.pythonhosted.org/packages/d7/8b/e7f9dfde869825489382bc0d512c15e96d3964180c9499efcec72e85db7e/frozenlist-1.7.0-cp313-cp313-win32.whl", hash = "sha256:5fc4df05a6591c7768459caba1b342d9ec23fa16195e744939ba5914596ae3e1", size = 39169, upload-time = "2025-06-09T23:01:35.503Z" }, - { url = "https://files.pythonhosted.org/packages/35/89/a487a98d94205d85745080a37860ff5744b9820a2c9acbcdd9440bfddf98/frozenlist-1.7.0-cp313-cp313-win_amd64.whl", hash = "sha256:52109052b9791a3e6b5d1b65f4b909703984b770694d3eb64fad124c835d7cba", size = 43219, upload-time = "2025-06-09T23:01:36.784Z" }, - { url = "https://files.pythonhosted.org/packages/56/d5/5c4cf2319a49eddd9dd7145e66c4866bdc6f3dbc67ca3d59685149c11e0d/frozenlist-1.7.0-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:a6f86e4193bb0e235ef6ce3dde5cbabed887e0b11f516ce8a0f4d3b33078ec2d", size = 84345, upload-time = "2025-06-09T23:01:38.295Z" }, - { url = "https://files.pythonhosted.org/packages/a4/7d/ec2c1e1dc16b85bc9d526009961953df9cec8481b6886debb36ec9107799/frozenlist-1.7.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:82d664628865abeb32d90ae497fb93df398a69bb3434463d172b80fc25b0dd7d", size = 48880, upload-time = "2025-06-09T23:01:39.887Z" }, - { url = "https://files.pythonhosted.org/packages/69/86/f9596807b03de126e11e7d42ac91e3d0b19a6599c714a1989a4e85eeefc4/frozenlist-1.7.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:912a7e8375a1c9a68325a902f3953191b7b292aa3c3fb0d71a216221deca460b", size = 48498, upload-time = "2025-06-09T23:01:41.318Z" }, - { url = "https://files.pythonhosted.org/packages/5e/cb/df6de220f5036001005f2d726b789b2c0b65f2363b104bbc16f5be8084f8/frozenlist-1.7.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9537c2777167488d539bc5de2ad262efc44388230e5118868e172dd4a552b146", size = 292296, upload-time = "2025-06-09T23:01:42.685Z" }, - { url = "https://files.pythonhosted.org/packages/83/1f/de84c642f17c8f851a2905cee2dae401e5e0daca9b5ef121e120e19aa825/frozenlist-1.7.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:f34560fb1b4c3e30ba35fa9a13894ba39e5acfc5f60f57d8accde65f46cc5e74", size = 273103, upload-time = "2025-06-09T23:01:44.166Z" }, - { url = "https://files.pythonhosted.org/packages/88/3c/c840bfa474ba3fa13c772b93070893c6e9d5c0350885760376cbe3b6c1b3/frozenlist-1.7.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:acd03d224b0175f5a850edc104ac19040d35419eddad04e7cf2d5986d98427f1", size = 292869, upload-time = "2025-06-09T23:01:45.681Z" }, - { url = "https://files.pythonhosted.org/packages/a6/1c/3efa6e7d5a39a1d5ef0abeb51c48fb657765794a46cf124e5aca2c7a592c/frozenlist-1.7.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f2038310bc582f3d6a09b3816ab01737d60bf7b1ec70f5356b09e84fb7408ab1", size = 291467, upload-time = "2025-06-09T23:01:47.234Z" }, - { url = "https://files.pythonhosted.org/packages/4f/00/d5c5e09d4922c395e2f2f6b79b9a20dab4b67daaf78ab92e7729341f61f6/frozenlist-1.7.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b8c05e4c8e5f36e5e088caa1bf78a687528f83c043706640a92cb76cd6999384", size = 266028, upload-time = "2025-06-09T23:01:48.819Z" }, - { url = "https://files.pythonhosted.org/packages/4e/27/72765be905619dfde25a7f33813ac0341eb6b076abede17a2e3fbfade0cb/frozenlist-1.7.0-cp313-cp313t-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:765bb588c86e47d0b68f23c1bee323d4b703218037765dcf3f25c838c6fecceb", size = 284294, upload-time = "2025-06-09T23:01:50.394Z" }, - { url = "https://files.pythonhosted.org/packages/88/67/c94103a23001b17808eb7dd1200c156bb69fb68e63fcf0693dde4cd6228c/frozenlist-1.7.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:32dc2e08c67d86d0969714dd484fd60ff08ff81d1a1e40a77dd34a387e6ebc0c", size = 281898, upload-time = "2025-06-09T23:01:52.234Z" }, - { url = "https://files.pythonhosted.org/packages/42/34/a3e2c00c00f9e2a9db5653bca3fec306349e71aff14ae45ecc6d0951dd24/frozenlist-1.7.0-cp313-cp313t-musllinux_1_2_armv7l.whl", hash = "sha256:c0303e597eb5a5321b4de9c68e9845ac8f290d2ab3f3e2c864437d3c5a30cd65", size = 290465, upload-time = "2025-06-09T23:01:53.788Z" }, - { url = "https://files.pythonhosted.org/packages/bb/73/f89b7fbce8b0b0c095d82b008afd0590f71ccb3dee6eee41791cf8cd25fd/frozenlist-1.7.0-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:a47f2abb4e29b3a8d0b530f7c3598badc6b134562b1a5caee867f7c62fee51e3", size = 266385, upload-time = "2025-06-09T23:01:55.769Z" }, - { url = "https://files.pythonhosted.org/packages/cd/45/e365fdb554159462ca12df54bc59bfa7a9a273ecc21e99e72e597564d1ae/frozenlist-1.7.0-cp313-cp313t-musllinux_1_2_ppc64le.whl", hash = "sha256:3d688126c242a6fabbd92e02633414d40f50bb6002fa4cf995a1d18051525657", size = 288771, upload-time = "2025-06-09T23:01:57.4Z" }, - { url = "https://files.pythonhosted.org/packages/00/11/47b6117002a0e904f004d70ec5194fe9144f117c33c851e3d51c765962d0/frozenlist-1.7.0-cp313-cp313t-musllinux_1_2_s390x.whl", hash = "sha256:4e7e9652b3d367c7bd449a727dc79d5043f48b88d0cbfd4f9f1060cf2b414104", size = 288206, upload-time = "2025-06-09T23:01:58.936Z" }, - { url = "https://files.pythonhosted.org/packages/40/37/5f9f3c3fd7f7746082ec67bcdc204db72dad081f4f83a503d33220a92973/frozenlist-1.7.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:1a85e345b4c43db8b842cab1feb41be5cc0b10a1830e6295b69d7310f99becaf", size = 282620, upload-time = "2025-06-09T23:02:00.493Z" }, - { url = "https://files.pythonhosted.org/packages/0b/31/8fbc5af2d183bff20f21aa743b4088eac4445d2bb1cdece449ae80e4e2d1/frozenlist-1.7.0-cp313-cp313t-win32.whl", hash = "sha256:3a14027124ddb70dfcee5148979998066897e79f89f64b13328595c4bdf77c81", size = 43059, upload-time = "2025-06-09T23:02:02.072Z" }, - { url = "https://files.pythonhosted.org/packages/bb/ed/41956f52105b8dbc26e457c5705340c67c8cc2b79f394b79bffc09d0e938/frozenlist-1.7.0-cp313-cp313t-win_amd64.whl", hash = "sha256:3bf8010d71d4507775f658e9823210b7427be36625b387221642725b515dcf3e", size = 47516, upload-time = "2025-06-09T23:02:03.779Z" }, - { url = "https://files.pythonhosted.org/packages/ee/45/b82e3c16be2182bff01179db177fe144d58b5dc787a7d4492c6ed8b9317f/frozenlist-1.7.0-py3-none-any.whl", hash = "sha256:9a5af342e34f7e97caf8c995864c7a396418ae2859cc6fdf1b1073020d516a7e", size = 13106, upload-time = "2025-06-09T23:02:34.204Z" }, +version = "1.8.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/2d/f5/c831fac6cc817d26fd54c7eaccd04ef7e0288806943f7cc5bbf69f3ac1f0/frozenlist-1.8.0.tar.gz", hash = "sha256:3ede829ed8d842f6cd48fc7081d7a41001a56f1f38603f9d49bf3020d59a31ad", size = 45875, upload-time = "2025-10-06T05:38:17.865Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/bc/03/077f869d540370db12165c0aa51640a873fb661d8b315d1d4d67b284d7ac/frozenlist-1.8.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:09474e9831bc2b2199fad6da3c14c7b0fbdd377cce9d3d77131be28906cb7d84", size = 86912, upload-time = "2025-10-06T05:35:45.98Z" }, + { url = "https://files.pythonhosted.org/packages/df/b5/7610b6bd13e4ae77b96ba85abea1c8cb249683217ef09ac9e0ae93f25a91/frozenlist-1.8.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:17c883ab0ab67200b5f964d2b9ed6b00971917d5d8a92df149dc2c9779208ee9", size = 50046, upload-time = "2025-10-06T05:35:47.009Z" }, + { url = "https://files.pythonhosted.org/packages/6e/ef/0e8f1fe32f8a53dd26bdd1f9347efe0778b0fddf62789ea683f4cc7d787d/frozenlist-1.8.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:fa47e444b8ba08fffd1c18e8cdb9a75db1b6a27f17507522834ad13ed5922b93", size = 50119, upload-time = "2025-10-06T05:35:48.38Z" }, + { url = "https://files.pythonhosted.org/packages/11/b1/71a477adc7c36e5fb628245dfbdea2166feae310757dea848d02bd0689fd/frozenlist-1.8.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:2552f44204b744fba866e573be4c1f9048d6a324dfe14475103fd51613eb1d1f", size = 231067, upload-time = "2025-10-06T05:35:49.97Z" }, + { url = "https://files.pythonhosted.org/packages/45/7e/afe40eca3a2dc19b9904c0f5d7edfe82b5304cb831391edec0ac04af94c2/frozenlist-1.8.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:957e7c38f250991e48a9a73e6423db1bb9dd14e722a10f6b8bb8e16a0f55f695", size = 233160, upload-time = "2025-10-06T05:35:51.729Z" }, + { url = "https://files.pythonhosted.org/packages/a6/aa/7416eac95603ce428679d273255ffc7c998d4132cfae200103f164b108aa/frozenlist-1.8.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:8585e3bb2cdea02fc88ffa245069c36555557ad3609e83be0ec71f54fd4abb52", size = 228544, upload-time = "2025-10-06T05:35:53.246Z" }, + { url = "https://files.pythonhosted.org/packages/8b/3d/2a2d1f683d55ac7e3875e4263d28410063e738384d3adc294f5ff3d7105e/frozenlist-1.8.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:edee74874ce20a373d62dc28b0b18b93f645633c2943fd90ee9d898550770581", size = 243797, upload-time = "2025-10-06T05:35:54.497Z" }, + { url = "https://files.pythonhosted.org/packages/78/1e/2d5565b589e580c296d3bb54da08d206e797d941a83a6fdea42af23be79c/frozenlist-1.8.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:c9a63152fe95756b85f31186bddf42e4c02c6321207fd6601a1c89ebac4fe567", size = 247923, upload-time = "2025-10-06T05:35:55.861Z" }, + { url = "https://files.pythonhosted.org/packages/aa/c3/65872fcf1d326a7f101ad4d86285c403c87be7d832b7470b77f6d2ed5ddc/frozenlist-1.8.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:b6db2185db9be0a04fecf2f241c70b63b1a242e2805be291855078f2b404dd6b", size = 230886, upload-time = "2025-10-06T05:35:57.399Z" }, + { url = "https://files.pythonhosted.org/packages/a0/76/ac9ced601d62f6956f03cc794f9e04c81719509f85255abf96e2510f4265/frozenlist-1.8.0-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:f4be2e3d8bc8aabd566f8d5b8ba7ecc09249d74ba3c9ed52e54dc23a293f0b92", size = 245731, upload-time = "2025-10-06T05:35:58.563Z" }, + { url = "https://files.pythonhosted.org/packages/b9/49/ecccb5f2598daf0b4a1415497eba4c33c1e8ce07495eb07d2860c731b8d5/frozenlist-1.8.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:c8d1634419f39ea6f5c427ea2f90ca85126b54b50837f31497f3bf38266e853d", size = 241544, upload-time = "2025-10-06T05:35:59.719Z" }, + { url = "https://files.pythonhosted.org/packages/53/4b/ddf24113323c0bbcc54cb38c8b8916f1da7165e07b8e24a717b4a12cbf10/frozenlist-1.8.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:1a7fa382a4a223773ed64242dbe1c9c326ec09457e6b8428efb4118c685c3dfd", size = 241806, upload-time = "2025-10-06T05:36:00.959Z" }, + { url = "https://files.pythonhosted.org/packages/a7/fb/9b9a084d73c67175484ba2789a59f8eebebd0827d186a8102005ce41e1ba/frozenlist-1.8.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:11847b53d722050808926e785df837353bd4d75f1d494377e59b23594d834967", size = 229382, upload-time = "2025-10-06T05:36:02.22Z" }, + { url = "https://files.pythonhosted.org/packages/95/a3/c8fb25aac55bf5e12dae5c5aa6a98f85d436c1dc658f21c3ac73f9fa95e5/frozenlist-1.8.0-cp311-cp311-win32.whl", hash = "sha256:27c6e8077956cf73eadd514be8fb04d77fc946a7fe9f7fe167648b0b9085cc25", size = 39647, upload-time = "2025-10-06T05:36:03.409Z" }, + { url = "https://files.pythonhosted.org/packages/0a/f5/603d0d6a02cfd4c8f2a095a54672b3cf967ad688a60fb9faf04fc4887f65/frozenlist-1.8.0-cp311-cp311-win_amd64.whl", hash = "sha256:ac913f8403b36a2c8610bbfd25b8013488533e71e62b4b4adce9c86c8cea905b", size = 44064, upload-time = "2025-10-06T05:36:04.368Z" }, + { url = "https://files.pythonhosted.org/packages/5d/16/c2c9ab44e181f043a86f9a8f84d5124b62dbcb3a02c0977ec72b9ac1d3e0/frozenlist-1.8.0-cp311-cp311-win_arm64.whl", hash = "sha256:d4d3214a0f8394edfa3e303136d0575eece0745ff2b47bd2cb2e66dd92d4351a", size = 39937, upload-time = "2025-10-06T05:36:05.669Z" }, + { url = "https://files.pythonhosted.org/packages/69/29/948b9aa87e75820a38650af445d2ef2b6b8a6fab1a23b6bb9e4ef0be2d59/frozenlist-1.8.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:78f7b9e5d6f2fdb88cdde9440dc147259b62b9d3b019924def9f6478be254ac1", size = 87782, upload-time = "2025-10-06T05:36:06.649Z" }, + { url = "https://files.pythonhosted.org/packages/64/80/4f6e318ee2a7c0750ed724fa33a4bdf1eacdc5a39a7a24e818a773cd91af/frozenlist-1.8.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:229bf37d2e4acdaf808fd3f06e854a4a7a3661e871b10dc1f8f1896a3b05f18b", size = 50594, upload-time = "2025-10-06T05:36:07.69Z" }, + { url = "https://files.pythonhosted.org/packages/2b/94/5c8a2b50a496b11dd519f4a24cb5496cf125681dd99e94c604ccdea9419a/frozenlist-1.8.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:f833670942247a14eafbb675458b4e61c82e002a148f49e68257b79296e865c4", size = 50448, upload-time = "2025-10-06T05:36:08.78Z" }, + { url = "https://files.pythonhosted.org/packages/6a/bd/d91c5e39f490a49df14320f4e8c80161cfcce09f1e2cde1edd16a551abb3/frozenlist-1.8.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:494a5952b1c597ba44e0e78113a7266e656b9794eec897b19ead706bd7074383", size = 242411, upload-time = "2025-10-06T05:36:09.801Z" }, + { url = "https://files.pythonhosted.org/packages/8f/83/f61505a05109ef3293dfb1ff594d13d64a2324ac3482be2cedc2be818256/frozenlist-1.8.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:96f423a119f4777a4a056b66ce11527366a8bb92f54e541ade21f2374433f6d4", size = 243014, upload-time = "2025-10-06T05:36:11.394Z" }, + { url = "https://files.pythonhosted.org/packages/d8/cb/cb6c7b0f7d4023ddda30cf56b8b17494eb3a79e3fda666bf735f63118b35/frozenlist-1.8.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:3462dd9475af2025c31cc61be6652dfa25cbfb56cbbf52f4ccfe029f38decaf8", size = 234909, upload-time = "2025-10-06T05:36:12.598Z" }, + { url = "https://files.pythonhosted.org/packages/31/c5/cd7a1f3b8b34af009fb17d4123c5a778b44ae2804e3ad6b86204255f9ec5/frozenlist-1.8.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:c4c800524c9cd9bac5166cd6f55285957fcfc907db323e193f2afcd4d9abd69b", size = 250049, upload-time = "2025-10-06T05:36:14.065Z" }, + { url = "https://files.pythonhosted.org/packages/c0/01/2f95d3b416c584a1e7f0e1d6d31998c4a795f7544069ee2e0962a4b60740/frozenlist-1.8.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:d6a5df73acd3399d893dafc71663ad22534b5aa4f94e8a2fabfe856c3c1b6a52", size = 256485, upload-time = "2025-10-06T05:36:15.39Z" }, + { url = "https://files.pythonhosted.org/packages/ce/03/024bf7720b3abaebcff6d0793d73c154237b85bdf67b7ed55e5e9596dc9a/frozenlist-1.8.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:405e8fe955c2280ce66428b3ca55e12b3c4e9c336fb2103a4937e891c69a4a29", size = 237619, upload-time = "2025-10-06T05:36:16.558Z" }, + { url = "https://files.pythonhosted.org/packages/69/fa/f8abdfe7d76b731f5d8bd217827cf6764d4f1d9763407e42717b4bed50a0/frozenlist-1.8.0-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:908bd3f6439f2fef9e85031b59fd4f1297af54415fb60e4254a95f75b3cab3f3", size = 250320, upload-time = "2025-10-06T05:36:17.821Z" }, + { url = "https://files.pythonhosted.org/packages/f5/3c/b051329f718b463b22613e269ad72138cc256c540f78a6de89452803a47d/frozenlist-1.8.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:294e487f9ec720bd8ffcebc99d575f7eff3568a08a253d1ee1a0378754b74143", size = 246820, upload-time = "2025-10-06T05:36:19.046Z" }, + { url = "https://files.pythonhosted.org/packages/0f/ae/58282e8f98e444b3f4dd42448ff36fa38bef29e40d40f330b22e7108f565/frozenlist-1.8.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:74c51543498289c0c43656701be6b077f4b265868fa7f8a8859c197006efb608", size = 250518, upload-time = "2025-10-06T05:36:20.763Z" }, + { url = "https://files.pythonhosted.org/packages/8f/96/007e5944694d66123183845a106547a15944fbbb7154788cbf7272789536/frozenlist-1.8.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:776f352e8329135506a1d6bf16ac3f87bc25b28e765949282dcc627af36123aa", size = 239096, upload-time = "2025-10-06T05:36:22.129Z" }, + { url = "https://files.pythonhosted.org/packages/66/bb/852b9d6db2fa40be96f29c0d1205c306288f0684df8fd26ca1951d461a56/frozenlist-1.8.0-cp312-cp312-win32.whl", hash = "sha256:433403ae80709741ce34038da08511d4a77062aa924baf411ef73d1146e74faf", size = 39985, upload-time = "2025-10-06T05:36:23.661Z" }, + { url = "https://files.pythonhosted.org/packages/b8/af/38e51a553dd66eb064cdf193841f16f077585d4d28394c2fa6235cb41765/frozenlist-1.8.0-cp312-cp312-win_amd64.whl", hash = "sha256:34187385b08f866104f0c0617404c8eb08165ab1272e884abc89c112e9c00746", size = 44591, upload-time = "2025-10-06T05:36:24.958Z" }, + { url = "https://files.pythonhosted.org/packages/a7/06/1dc65480ab147339fecc70797e9c2f69d9cea9cf38934ce08df070fdb9cb/frozenlist-1.8.0-cp312-cp312-win_arm64.whl", hash = "sha256:fe3c58d2f5db5fbd18c2987cba06d51b0529f52bc3a6cdc33d3f4eab725104bd", size = 40102, upload-time = "2025-10-06T05:36:26.333Z" }, + { url = "https://files.pythonhosted.org/packages/2d/40/0832c31a37d60f60ed79e9dfb5a92e1e2af4f40a16a29abcc7992af9edff/frozenlist-1.8.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:8d92f1a84bb12d9e56f818b3a746f3efba93c1b63c8387a73dde655e1e42282a", size = 85717, upload-time = "2025-10-06T05:36:27.341Z" }, + { url = "https://files.pythonhosted.org/packages/30/ba/b0b3de23f40bc55a7057bd38434e25c34fa48e17f20ee273bbde5e0650f3/frozenlist-1.8.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:96153e77a591c8adc2ee805756c61f59fef4cf4073a9275ee86fe8cba41241f7", size = 49651, upload-time = "2025-10-06T05:36:28.855Z" }, + { url = "https://files.pythonhosted.org/packages/0c/ab/6e5080ee374f875296c4243c381bbdef97a9ac39c6e3ce1d5f7d42cb78d6/frozenlist-1.8.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f21f00a91358803399890ab167098c131ec2ddd5f8f5fd5fe9c9f2c6fcd91e40", size = 49417, upload-time = "2025-10-06T05:36:29.877Z" }, + { url = "https://files.pythonhosted.org/packages/d5/4e/e4691508f9477ce67da2015d8c00acd751e6287739123113a9fca6f1604e/frozenlist-1.8.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:fb30f9626572a76dfe4293c7194a09fb1fe93ba94c7d4f720dfae3b646b45027", size = 234391, upload-time = "2025-10-06T05:36:31.301Z" }, + { url = "https://files.pythonhosted.org/packages/40/76/c202df58e3acdf12969a7895fd6f3bc016c642e6726aa63bd3025e0fc71c/frozenlist-1.8.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:eaa352d7047a31d87dafcacbabe89df0aa506abb5b1b85a2fb91bc3faa02d822", size = 233048, upload-time = "2025-10-06T05:36:32.531Z" }, + { url = "https://files.pythonhosted.org/packages/f9/c0/8746afb90f17b73ca5979c7a3958116e105ff796e718575175319b5bb4ce/frozenlist-1.8.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:03ae967b4e297f58f8c774c7eabcce57fe3c2434817d4385c50661845a058121", size = 226549, upload-time = "2025-10-06T05:36:33.706Z" }, + { url = "https://files.pythonhosted.org/packages/7e/eb/4c7eefc718ff72f9b6c4893291abaae5fbc0c82226a32dcd8ef4f7a5dbef/frozenlist-1.8.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:f6292f1de555ffcc675941d65fffffb0a5bcd992905015f85d0592201793e0e5", size = 239833, upload-time = "2025-10-06T05:36:34.947Z" }, + { url = "https://files.pythonhosted.org/packages/c2/4e/e5c02187cf704224f8b21bee886f3d713ca379535f16893233b9d672ea71/frozenlist-1.8.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:29548f9b5b5e3460ce7378144c3010363d8035cea44bc0bf02d57f5a685e084e", size = 245363, upload-time = "2025-10-06T05:36:36.534Z" }, + { url = "https://files.pythonhosted.org/packages/1f/96/cb85ec608464472e82ad37a17f844889c36100eed57bea094518bf270692/frozenlist-1.8.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:ec3cc8c5d4084591b4237c0a272cc4f50a5b03396a47d9caaf76f5d7b38a4f11", size = 229314, upload-time = "2025-10-06T05:36:38.582Z" }, + { url = "https://files.pythonhosted.org/packages/5d/6f/4ae69c550e4cee66b57887daeebe006fe985917c01d0fff9caab9883f6d0/frozenlist-1.8.0-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:517279f58009d0b1f2e7c1b130b377a349405da3f7621ed6bfae50b10adf20c1", size = 243365, upload-time = "2025-10-06T05:36:40.152Z" }, + { url = "https://files.pythonhosted.org/packages/7a/58/afd56de246cf11780a40a2c28dc7cbabbf06337cc8ddb1c780a2d97e88d8/frozenlist-1.8.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:db1e72ede2d0d7ccb213f218df6a078a9c09a7de257c2fe8fcef16d5925230b1", size = 237763, upload-time = "2025-10-06T05:36:41.355Z" }, + { url = "https://files.pythonhosted.org/packages/cb/36/cdfaf6ed42e2644740d4a10452d8e97fa1c062e2a8006e4b09f1b5fd7d63/frozenlist-1.8.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:b4dec9482a65c54a5044486847b8a66bf10c9cb4926d42927ec4e8fd5db7fed8", size = 240110, upload-time = "2025-10-06T05:36:42.716Z" }, + { url = "https://files.pythonhosted.org/packages/03/a8/9ea226fbefad669f11b52e864c55f0bd57d3c8d7eb07e9f2e9a0b39502e1/frozenlist-1.8.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:21900c48ae04d13d416f0e1e0c4d81f7931f73a9dfa0b7a8746fb2fe7dd970ed", size = 233717, upload-time = "2025-10-06T05:36:44.251Z" }, + { url = "https://files.pythonhosted.org/packages/1e/0b/1b5531611e83ba7d13ccc9988967ea1b51186af64c42b7a7af465dcc9568/frozenlist-1.8.0-cp313-cp313-win32.whl", hash = "sha256:8b7b94a067d1c504ee0b16def57ad5738701e4ba10cec90529f13fa03c833496", size = 39628, upload-time = "2025-10-06T05:36:45.423Z" }, + { url = "https://files.pythonhosted.org/packages/d8/cf/174c91dbc9cc49bc7b7aab74d8b734e974d1faa8f191c74af9b7e80848e6/frozenlist-1.8.0-cp313-cp313-win_amd64.whl", hash = "sha256:878be833caa6a3821caf85eb39c5ba92d28e85df26d57afb06b35b2efd937231", size = 43882, upload-time = "2025-10-06T05:36:46.796Z" }, + { url = "https://files.pythonhosted.org/packages/c1/17/502cd212cbfa96eb1388614fe39a3fc9ab87dbbe042b66f97acb57474834/frozenlist-1.8.0-cp313-cp313-win_arm64.whl", hash = "sha256:44389d135b3ff43ba8cc89ff7f51f5a0bb6b63d829c8300f79a2fe4fe61bcc62", size = 39676, upload-time = "2025-10-06T05:36:47.8Z" }, + { url = "https://files.pythonhosted.org/packages/d2/5c/3bbfaa920dfab09e76946a5d2833a7cbdf7b9b4a91c714666ac4855b88b4/frozenlist-1.8.0-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:e25ac20a2ef37e91c1b39938b591457666a0fa835c7783c3a8f33ea42870db94", size = 89235, upload-time = "2025-10-06T05:36:48.78Z" }, + { url = "https://files.pythonhosted.org/packages/d2/d6/f03961ef72166cec1687e84e8925838442b615bd0b8854b54923ce5b7b8a/frozenlist-1.8.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:07cdca25a91a4386d2e76ad992916a85038a9b97561bf7a3fd12d5d9ce31870c", size = 50742, upload-time = "2025-10-06T05:36:49.837Z" }, + { url = "https://files.pythonhosted.org/packages/1e/bb/a6d12b7ba4c3337667d0e421f7181c82dda448ce4e7ad7ecd249a16fa806/frozenlist-1.8.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:4e0c11f2cc6717e0a741f84a527c52616140741cd812a50422f83dc31749fb52", size = 51725, upload-time = "2025-10-06T05:36:50.851Z" }, + { url = "https://files.pythonhosted.org/packages/bc/71/d1fed0ffe2c2ccd70b43714c6cab0f4188f09f8a67a7914a6b46ee30f274/frozenlist-1.8.0-cp313-cp313t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:b3210649ee28062ea6099cfda39e147fa1bc039583c8ee4481cb7811e2448c51", size = 284533, upload-time = "2025-10-06T05:36:51.898Z" }, + { url = "https://files.pythonhosted.org/packages/c9/1f/fb1685a7b009d89f9bf78a42d94461bc06581f6e718c39344754a5d9bada/frozenlist-1.8.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:581ef5194c48035a7de2aefc72ac6539823bb71508189e5de01d60c9dcd5fa65", size = 292506, upload-time = "2025-10-06T05:36:53.101Z" }, + { url = "https://files.pythonhosted.org/packages/e6/3b/b991fe1612703f7e0d05c0cf734c1b77aaf7c7d321df4572e8d36e7048c8/frozenlist-1.8.0-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:3ef2d026f16a2b1866e1d86fc4e1291e1ed8a387b2c333809419a2f8b3a77b82", size = 274161, upload-time = "2025-10-06T05:36:54.309Z" }, + { url = "https://files.pythonhosted.org/packages/ca/ec/c5c618767bcdf66e88945ec0157d7f6c4a1322f1473392319b7a2501ded7/frozenlist-1.8.0-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:5500ef82073f599ac84d888e3a8c1f77ac831183244bfd7f11eaa0289fb30714", size = 294676, upload-time = "2025-10-06T05:36:55.566Z" }, + { url = "https://files.pythonhosted.org/packages/7c/ce/3934758637d8f8a88d11f0585d6495ef54b2044ed6ec84492a91fa3b27aa/frozenlist-1.8.0-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:50066c3997d0091c411a66e710f4e11752251e6d2d73d70d8d5d4c76442a199d", size = 300638, upload-time = "2025-10-06T05:36:56.758Z" }, + { url = "https://files.pythonhosted.org/packages/fc/4f/a7e4d0d467298f42de4b41cbc7ddaf19d3cfeabaf9ff97c20c6c7ee409f9/frozenlist-1.8.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:5c1c8e78426e59b3f8005e9b19f6ff46e5845895adbde20ece9218319eca6506", size = 283067, upload-time = "2025-10-06T05:36:57.965Z" }, + { url = "https://files.pythonhosted.org/packages/dc/48/c7b163063d55a83772b268e6d1affb960771b0e203b632cfe09522d67ea5/frozenlist-1.8.0-cp313-cp313t-musllinux_1_2_armv7l.whl", hash = "sha256:eefdba20de0d938cec6a89bd4d70f346a03108a19b9df4248d3cf0d88f1b0f51", size = 292101, upload-time = "2025-10-06T05:36:59.237Z" }, + { url = "https://files.pythonhosted.org/packages/9f/d0/2366d3c4ecdc2fd391e0afa6e11500bfba0ea772764d631bbf82f0136c9d/frozenlist-1.8.0-cp313-cp313t-musllinux_1_2_ppc64le.whl", hash = "sha256:cf253e0e1c3ceb4aaff6df637ce033ff6535fb8c70a764a8f46aafd3d6ab798e", size = 289901, upload-time = "2025-10-06T05:37:00.811Z" }, + { url = "https://files.pythonhosted.org/packages/b8/94/daff920e82c1b70e3618a2ac39fbc01ae3e2ff6124e80739ce5d71c9b920/frozenlist-1.8.0-cp313-cp313t-musllinux_1_2_s390x.whl", hash = "sha256:032efa2674356903cd0261c4317a561a6850f3ac864a63fc1583147fb05a79b0", size = 289395, upload-time = "2025-10-06T05:37:02.115Z" }, + { url = "https://files.pythonhosted.org/packages/e3/20/bba307ab4235a09fdcd3cc5508dbabd17c4634a1af4b96e0f69bfe551ebd/frozenlist-1.8.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:6da155091429aeba16851ecb10a9104a108bcd32f6c1642867eadaee401c1c41", size = 283659, upload-time = "2025-10-06T05:37:03.711Z" }, + { url = "https://files.pythonhosted.org/packages/fd/00/04ca1c3a7a124b6de4f8a9a17cc2fcad138b4608e7a3fc5877804b8715d7/frozenlist-1.8.0-cp313-cp313t-win32.whl", hash = "sha256:0f96534f8bfebc1a394209427d0f8a63d343c9779cda6fc25e8e121b5fd8555b", size = 43492, upload-time = "2025-10-06T05:37:04.915Z" }, + { url = "https://files.pythonhosted.org/packages/59/5e/c69f733a86a94ab10f68e496dc6b7e8bc078ebb415281d5698313e3af3a1/frozenlist-1.8.0-cp313-cp313t-win_amd64.whl", hash = "sha256:5d63a068f978fc69421fb0e6eb91a9603187527c86b7cd3f534a5b77a592b888", size = 48034, upload-time = "2025-10-06T05:37:06.343Z" }, + { url = "https://files.pythonhosted.org/packages/16/6c/be9d79775d8abe79b05fa6d23da99ad6e7763a1d080fbae7290b286093fd/frozenlist-1.8.0-cp313-cp313t-win_arm64.whl", hash = "sha256:bf0a7e10b077bf5fb9380ad3ae8ce20ef919a6ad93b4552896419ac7e1d8e042", size = 41749, upload-time = "2025-10-06T05:37:07.431Z" }, + { url = "https://files.pythonhosted.org/packages/f1/c8/85da824b7e7b9b6e7f7705b2ecaf9591ba6f79c1177f324c2735e41d36a2/frozenlist-1.8.0-cp314-cp314-macosx_10_13_universal2.whl", hash = "sha256:cee686f1f4cadeb2136007ddedd0aaf928ab95216e7691c63e50a8ec066336d0", size = 86127, upload-time = "2025-10-06T05:37:08.438Z" }, + { url = "https://files.pythonhosted.org/packages/8e/e8/a1185e236ec66c20afd72399522f142c3724c785789255202d27ae992818/frozenlist-1.8.0-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:119fb2a1bd47307e899c2fac7f28e85b9a543864df47aa7ec9d3c1b4545f096f", size = 49698, upload-time = "2025-10-06T05:37:09.48Z" }, + { url = "https://files.pythonhosted.org/packages/a1/93/72b1736d68f03fda5fdf0f2180fb6caaae3894f1b854d006ac61ecc727ee/frozenlist-1.8.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:4970ece02dbc8c3a92fcc5228e36a3e933a01a999f7094ff7c23fbd2beeaa67c", size = 49749, upload-time = "2025-10-06T05:37:10.569Z" }, + { url = "https://files.pythonhosted.org/packages/a7/b2/fabede9fafd976b991e9f1b9c8c873ed86f202889b864756f240ce6dd855/frozenlist-1.8.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:cba69cb73723c3f329622e34bdbf5ce1f80c21c290ff04256cff1cd3c2036ed2", size = 231298, upload-time = "2025-10-06T05:37:11.993Z" }, + { url = "https://files.pythonhosted.org/packages/3a/3b/d9b1e0b0eed36e70477ffb8360c49c85c8ca8ef9700a4e6711f39a6e8b45/frozenlist-1.8.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:778a11b15673f6f1df23d9586f83c4846c471a8af693a22e066508b77d201ec8", size = 232015, upload-time = "2025-10-06T05:37:13.194Z" }, + { url = "https://files.pythonhosted.org/packages/dc/94/be719d2766c1138148564a3960fc2c06eb688da592bdc25adcf856101be7/frozenlist-1.8.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:0325024fe97f94c41c08872db482cf8ac4800d80e79222c6b0b7b162d5b13686", size = 225038, upload-time = "2025-10-06T05:37:14.577Z" }, + { url = "https://files.pythonhosted.org/packages/e4/09/6712b6c5465f083f52f50cf74167b92d4ea2f50e46a9eea0523d658454ae/frozenlist-1.8.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:97260ff46b207a82a7567b581ab4190bd4dfa09f4db8a8b49d1a958f6aa4940e", size = 240130, upload-time = "2025-10-06T05:37:15.781Z" }, + { url = "https://files.pythonhosted.org/packages/f8/d4/cd065cdcf21550b54f3ce6a22e143ac9e4836ca42a0de1022da8498eac89/frozenlist-1.8.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:54b2077180eb7f83dd52c40b2750d0a9f175e06a42e3213ce047219de902717a", size = 242845, upload-time = "2025-10-06T05:37:17.037Z" }, + { url = "https://files.pythonhosted.org/packages/62/c3/f57a5c8c70cd1ead3d5d5f776f89d33110b1addae0ab010ad774d9a44fb9/frozenlist-1.8.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:2f05983daecab868a31e1da44462873306d3cbfd76d1f0b5b69c473d21dbb128", size = 229131, upload-time = "2025-10-06T05:37:18.221Z" }, + { url = "https://files.pythonhosted.org/packages/6c/52/232476fe9cb64f0742f3fde2b7d26c1dac18b6d62071c74d4ded55e0ef94/frozenlist-1.8.0-cp314-cp314-musllinux_1_2_armv7l.whl", hash = "sha256:33f48f51a446114bc5d251fb2954ab0164d5be02ad3382abcbfe07e2531d650f", size = 240542, upload-time = "2025-10-06T05:37:19.771Z" }, + { url = "https://files.pythonhosted.org/packages/5f/85/07bf3f5d0fb5414aee5f47d33c6f5c77bfe49aac680bfece33d4fdf6a246/frozenlist-1.8.0-cp314-cp314-musllinux_1_2_ppc64le.whl", hash = "sha256:154e55ec0655291b5dd1b8731c637ecdb50975a2ae70c606d100750a540082f7", size = 237308, upload-time = "2025-10-06T05:37:20.969Z" }, + { url = "https://files.pythonhosted.org/packages/11/99/ae3a33d5befd41ac0ca2cc7fd3aa707c9c324de2e89db0e0f45db9a64c26/frozenlist-1.8.0-cp314-cp314-musllinux_1_2_s390x.whl", hash = "sha256:4314debad13beb564b708b4a496020e5306c7333fa9a3ab90374169a20ffab30", size = 238210, upload-time = "2025-10-06T05:37:22.252Z" }, + { url = "https://files.pythonhosted.org/packages/b2/60/b1d2da22f4970e7a155f0adde9b1435712ece01b3cd45ba63702aea33938/frozenlist-1.8.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:073f8bf8becba60aa931eb3bc420b217bb7d5b8f4750e6f8b3be7f3da85d38b7", size = 231972, upload-time = "2025-10-06T05:37:23.5Z" }, + { url = "https://files.pythonhosted.org/packages/3f/ab/945b2f32de889993b9c9133216c068b7fcf257d8595a0ac420ac8677cab0/frozenlist-1.8.0-cp314-cp314-win32.whl", hash = "sha256:bac9c42ba2ac65ddc115d930c78d24ab8d4f465fd3fc473cdedfccadb9429806", size = 40536, upload-time = "2025-10-06T05:37:25.581Z" }, + { url = "https://files.pythonhosted.org/packages/59/ad/9caa9b9c836d9ad6f067157a531ac48b7d36499f5036d4141ce78c230b1b/frozenlist-1.8.0-cp314-cp314-win_amd64.whl", hash = "sha256:3e0761f4d1a44f1d1a47996511752cf3dcec5bbdd9cc2b4fe595caf97754b7a0", size = 44330, upload-time = "2025-10-06T05:37:26.928Z" }, + { url = "https://files.pythonhosted.org/packages/82/13/e6950121764f2676f43534c555249f57030150260aee9dcf7d64efda11dd/frozenlist-1.8.0-cp314-cp314-win_arm64.whl", hash = "sha256:d1eaff1d00c7751b7c6662e9c5ba6eb2c17a2306ba5e2a37f24ddf3cc953402b", size = 40627, upload-time = "2025-10-06T05:37:28.075Z" }, + { url = "https://files.pythonhosted.org/packages/c0/c7/43200656ecc4e02d3f8bc248df68256cd9572b3f0017f0a0c4e93440ae23/frozenlist-1.8.0-cp314-cp314t-macosx_10_13_universal2.whl", hash = "sha256:d3bb933317c52d7ea5004a1c442eef86f426886fba134ef8cf4226ea6ee1821d", size = 89238, upload-time = "2025-10-06T05:37:29.373Z" }, + { url = "https://files.pythonhosted.org/packages/d1/29/55c5f0689b9c0fb765055629f472c0de484dcaf0acee2f7707266ae3583c/frozenlist-1.8.0-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:8009897cdef112072f93a0efdce29cd819e717fd2f649ee3016efd3cd885a7ed", size = 50738, upload-time = "2025-10-06T05:37:30.792Z" }, + { url = "https://files.pythonhosted.org/packages/ba/7d/b7282a445956506fa11da8c2db7d276adcbf2b17d8bb8407a47685263f90/frozenlist-1.8.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:2c5dcbbc55383e5883246d11fd179782a9d07a986c40f49abe89ddf865913930", size = 51739, upload-time = "2025-10-06T05:37:32.127Z" }, + { url = "https://files.pythonhosted.org/packages/62/1c/3d8622e60d0b767a5510d1d3cf21065b9db874696a51ea6d7a43180a259c/frozenlist-1.8.0-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:39ecbc32f1390387d2aa4f5a995e465e9e2f79ba3adcac92d68e3e0afae6657c", size = 284186, upload-time = "2025-10-06T05:37:33.21Z" }, + { url = "https://files.pythonhosted.org/packages/2d/14/aa36d5f85a89679a85a1d44cd7a6657e0b1c75f61e7cad987b203d2daca8/frozenlist-1.8.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:92db2bf818d5cc8d9c1f1fc56b897662e24ea5adb36ad1f1d82875bd64e03c24", size = 292196, upload-time = "2025-10-06T05:37:36.107Z" }, + { url = "https://files.pythonhosted.org/packages/05/23/6bde59eb55abd407d34f77d39a5126fb7b4f109a3f611d3929f14b700c66/frozenlist-1.8.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:2dc43a022e555de94c3b68a4ef0b11c4f747d12c024a520c7101709a2144fb37", size = 273830, upload-time = "2025-10-06T05:37:37.663Z" }, + { url = "https://files.pythonhosted.org/packages/d2/3f/22cff331bfad7a8afa616289000ba793347fcd7bc275f3b28ecea2a27909/frozenlist-1.8.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:cb89a7f2de3602cfed448095bab3f178399646ab7c61454315089787df07733a", size = 294289, upload-time = "2025-10-06T05:37:39.261Z" }, + { url = "https://files.pythonhosted.org/packages/a4/89/5b057c799de4838b6c69aa82b79705f2027615e01be996d2486a69ca99c4/frozenlist-1.8.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:33139dc858c580ea50e7e60a1b0ea003efa1fd42e6ec7fdbad78fff65fad2fd2", size = 300318, upload-time = "2025-10-06T05:37:43.213Z" }, + { url = "https://files.pythonhosted.org/packages/30/de/2c22ab3eb2a8af6d69dc799e48455813bab3690c760de58e1bf43b36da3e/frozenlist-1.8.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:168c0969a329b416119507ba30b9ea13688fafffac1b7822802537569a1cb0ef", size = 282814, upload-time = "2025-10-06T05:37:45.337Z" }, + { url = "https://files.pythonhosted.org/packages/59/f7/970141a6a8dbd7f556d94977858cfb36fa9b66e0892c6dd780d2219d8cd8/frozenlist-1.8.0-cp314-cp314t-musllinux_1_2_armv7l.whl", hash = "sha256:28bd570e8e189d7f7b001966435f9dac6718324b5be2990ac496cf1ea9ddb7fe", size = 291762, upload-time = "2025-10-06T05:37:46.657Z" }, + { url = "https://files.pythonhosted.org/packages/c1/15/ca1adae83a719f82df9116d66f5bb28bb95557b3951903d39135620ef157/frozenlist-1.8.0-cp314-cp314t-musllinux_1_2_ppc64le.whl", hash = "sha256:b2a095d45c5d46e5e79ba1e5b9cb787f541a8dee0433836cea4b96a2c439dcd8", size = 289470, upload-time = "2025-10-06T05:37:47.946Z" }, + { url = "https://files.pythonhosted.org/packages/ac/83/dca6dc53bf657d371fbc88ddeb21b79891e747189c5de990b9dfff2ccba1/frozenlist-1.8.0-cp314-cp314t-musllinux_1_2_s390x.whl", hash = "sha256:eab8145831a0d56ec9c4139b6c3e594c7a83c2c8be25d5bcf2d86136a532287a", size = 289042, upload-time = "2025-10-06T05:37:49.499Z" }, + { url = "https://files.pythonhosted.org/packages/96/52/abddd34ca99be142f354398700536c5bd315880ed0a213812bc491cff5e4/frozenlist-1.8.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:974b28cf63cc99dfb2188d8d222bc6843656188164848c4f679e63dae4b0708e", size = 283148, upload-time = "2025-10-06T05:37:50.745Z" }, + { url = "https://files.pythonhosted.org/packages/af/d3/76bd4ed4317e7119c2b7f57c3f6934aba26d277acc6309f873341640e21f/frozenlist-1.8.0-cp314-cp314t-win32.whl", hash = "sha256:342c97bf697ac5480c0a7ec73cd700ecfa5a8a40ac923bd035484616efecc2df", size = 44676, upload-time = "2025-10-06T05:37:52.222Z" }, + { url = "https://files.pythonhosted.org/packages/89/76/c615883b7b521ead2944bb3480398cbb07e12b7b4e4d073d3752eb721558/frozenlist-1.8.0-cp314-cp314t-win_amd64.whl", hash = "sha256:06be8f67f39c8b1dc671f5d83aaefd3358ae5cdcf8314552c57e7ed3e6475bdd", size = 49451, upload-time = "2025-10-06T05:37:53.425Z" }, + { url = "https://files.pythonhosted.org/packages/e0/a3/5982da14e113d07b325230f95060e2169f5311b1017ea8af2a29b374c289/frozenlist-1.8.0-cp314-cp314t-win_arm64.whl", hash = "sha256:102e6314ca4da683dca92e3b1355490fed5f313b768500084fbe6371fddfdb79", size = 42507, upload-time = "2025-10-06T05:37:54.513Z" }, + { url = "https://files.pythonhosted.org/packages/9a/9a/e35b4a917281c0b8419d4207f4334c8e8c5dbf4f3f5f9ada73958d937dcc/frozenlist-1.8.0-py3-none-any.whl", hash = "sha256:0c18a16eab41e82c295618a77502e17b195883241c563b00f0aa5106fc4eaa0d", size = 13409, upload-time = "2025-10-06T05:38:16.721Z" }, ] [[package]] name = "fsspec" -version = "2025.5.1" +version = "2025.12.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/00/f7/27f15d41f0ed38e8fcc488584b57e902b331da7f7c6dcda53721b15838fc/fsspec-2025.5.1.tar.gz", hash = "sha256:2e55e47a540b91843b755e83ded97c6e897fa0942b11490113f09e9c443c2475", size = 303033, upload-time = "2025-05-24T12:03:23.792Z" } +sdist = { url = "https://files.pythonhosted.org/packages/b6/27/954057b0d1f53f086f681755207dda6de6c660ce133c829158e8e8fe7895/fsspec-2025.12.0.tar.gz", hash = "sha256:c505de011584597b1060ff778bb664c1bc022e87921b0e4f10cc9c44f9635973", size = 309748, upload-time = "2025-12-03T15:23:42.687Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/bb/61/78c7b3851add1481b048b5fdc29067397a1784e2910592bc81bb3f608635/fsspec-2025.5.1-py3-none-any.whl", hash = "sha256:24d3a2e663d5fc735ab256263c4075f374a174c3410c0b25e5bd1970bceaa462", size = 199052, upload-time = "2025-05-24T12:03:21.66Z" }, + { url = "https://files.pythonhosted.org/packages/51/c7/b64cae5dba3a1b138d7123ec36bb5ccd39d39939f18454407e5468f4763f/fsspec-2025.12.0-py3-none-any.whl", hash = "sha256:8bf1fe301b7d8acfa6e8571e3b1c3d158f909666642431cc78a1b7b4dbc5ec5b", size = 201422, upload-time = "2025-12-03T15:23:41.434Z" }, ] [package.optional-dependencies] @@ -3542,26 +3107,27 @@ wheels = [ [[package]] name = "furo" -version = "2024.8.6" +version = "2025.9.25" source = { registry = "https://pypi.org/simple" } dependencies = [ + { name = "accessible-pygments" }, { name = "beautifulsoup4" }, { name = "pygments" }, { name = "sphinx" }, { name = "sphinx-basic-ng" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/a0/e2/d351d69a9a9e4badb4a5be062c2d0e87bd9e6c23b5e57337fef14bef34c8/furo-2024.8.6.tar.gz", hash = "sha256:b63e4cee8abfc3136d3bc03a3d45a76a850bada4d6374d24c1716b0e01394a01", size = 1661506, upload-time = "2024-08-06T08:07:57.567Z" } +sdist = { url = "https://files.pythonhosted.org/packages/4e/29/ff3b83a1ffce74676043ab3e7540d398e0b1ce7660917a00d7c4958b93da/furo-2025.9.25.tar.gz", hash = "sha256:3eac05582768fdbbc2bdfa1cdbcdd5d33cfc8b4bd2051729ff4e026a1d7e0a98", size = 1662007, upload-time = "2025-09-25T21:37:19.221Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/27/48/e791a7ed487dbb9729ef32bb5d1af16693d8925f4366befef54119b2e576/furo-2024.8.6-py3-none-any.whl", hash = "sha256:6cd97c58b47813d3619e63e9081169880fbe331f0ca883c871ff1f3f11814f5c", size = 341333, upload-time = "2024-08-06T08:07:54.44Z" }, + { url = "https://files.pythonhosted.org/packages/ba/69/964b55f389c289e16ba2a5dfe587c3c462aac09e24123f09ddf703889584/furo-2025.9.25-py3-none-any.whl", hash = "sha256:2937f68e823b8e37b410c972c371bc2b1d88026709534927158e0cb3fac95afe", size = 340409, upload-time = "2025-09-25T21:37:17.244Z" }, ] [[package]] name = "gast" -version = "0.6.0" +version = "0.7.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/3c/14/c566f5ca00c115db7725263408ff952b8ae6d6a4e792ef9c84e77d9af7a1/gast-0.6.0.tar.gz", hash = "sha256:88fc5300d32c7ac6ca7b515310862f71e6fdf2c029bbec7c66c0f5dd47b6b1fb", size = 27708, upload-time = "2024-06-27T20:31:49.527Z" } +sdist = { url = "https://files.pythonhosted.org/packages/91/f6/e73969782a2ecec280f8a176f2476149dd9dba69d5f8779ec6108a7721e6/gast-0.7.0.tar.gz", hash = "sha256:0bb14cd1b806722e91ddbab6fb86bba148c22b40e7ff11e248974e04c8adfdae", size = 33630, upload-time = "2025-11-29T15:30:05.266Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/a3/61/8001b38461d751cd1a0c3a6ae84346796a5758123f3ed97a1b121dfbf4f3/gast-0.6.0-py3-none-any.whl", hash = "sha256:52b182313f7330389f72b069ba00f174cfe2a06411099547288839c6cbafbd54", size = 21173, upload-time = "2024-07-09T13:15:15.615Z" }, + { url = "https://files.pythonhosted.org/packages/1d/33/f1c6a276de27b7d7339a34749cc33fa87f077f921969c47185d34a887ae2/gast-0.7.0-py3-none-any.whl", hash = "sha256:99cbf1365633a74099f69c59bd650476b96baa5ef196fec88032b00b31ba36f7", size = 22966, upload-time = "2025-11-29T15:30:03.983Z" }, ] [[package]] @@ -3578,57 +3144,58 @@ wheels = [ [[package]] name = "gitpython" -version = "3.1.44" +version = "3.1.45" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "gitdb" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/c0/89/37df0b71473153574a5cdef8f242de422a0f5d26d7a9e231e6f169b4ad14/gitpython-3.1.44.tar.gz", hash = "sha256:c87e30b26253bf5418b01b0660f818967f3c503193838337fe5e573331249269", size = 214196, upload-time = "2025-01-02T07:32:43.59Z" } +sdist = { url = "https://files.pythonhosted.org/packages/9a/c8/dd58967d119baab745caec2f9d853297cec1989ec1d63f677d3880632b88/gitpython-3.1.45.tar.gz", hash = "sha256:85b0ee964ceddf211c41b9f27a49086010a190fd8132a24e21f362a4b36a791c", size = 215076, upload-time = "2025-07-24T03:45:54.871Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/1d/9a/4114a9057db2f1462d5c8f8390ab7383925fe1ac012eaa42402ad65c2963/GitPython-3.1.44-py3-none-any.whl", hash = "sha256:9e0e10cda9bed1ee64bc9a6de50e7e38a9c9943241cd7f585f6df3ed28011110", size = 207599, upload-time = "2025-01-02T07:32:40.731Z" }, + { url = "https://files.pythonhosted.org/packages/01/61/d4b89fec821f72385526e1b9d9a3a0385dda4a72b206d28049e2c7cd39b8/gitpython-3.1.45-py3-none-any.whl", hash = "sha256:8908cb2e02fb3b93b7eb0f2827125cb699869470432cc885f019b8fd0fccff77", size = 208168, upload-time = "2025-07-24T03:45:52.517Z" }, ] [[package]] name = "google-api-core" -version = "2.25.0" +version = "2.28.1" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "google-auth" }, { name = "googleapis-common-protos" }, { name = "proto-plus" }, - { name = "protobuf" }, + { name = "protobuf", version = "4.25.8", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-orb') or (sys_platform == 'linux' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, + { name = "protobuf", version = "5.29.5", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (sys_platform != 'linux' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb')" }, { name = "requests" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/98/a2/8176b416ca08106b2ae30cd4a006c8176945f682c3a5b42f141c9173f505/google_api_core-2.25.0.tar.gz", hash = "sha256:9b548e688702f82a34ed8409fb8a6961166f0b7795032f0be8f48308dff4333a", size = 164914, upload-time = "2025-06-02T14:45:34.789Z" } +sdist = { url = "https://files.pythonhosted.org/packages/61/da/83d7043169ac2c8c7469f0e375610d78ae2160134bf1b80634c482fa079c/google_api_core-2.28.1.tar.gz", hash = "sha256:2b405df02d68e68ce0fbc138559e6036559e685159d148ae5861013dc201baf8", size = 176759, upload-time = "2025-10-28T21:34:51.529Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/ac/ca/149e41a277bb0855e8ded85fd7579d7747c1223e253d82c5c0f1be236875/google_api_core-2.25.0-py3-none-any.whl", hash = "sha256:1db79d1281dcf9f3d10023283299ba38f3dc9f639ec41085968fd23e5bcf512e", size = 160668, upload-time = "2025-06-02T14:45:33.272Z" }, + { url = "https://files.pythonhosted.org/packages/ed/d4/90197b416cb61cefd316964fd9e7bd8324bcbafabf40eef14a9f20b81974/google_api_core-2.28.1-py3-none-any.whl", hash = "sha256:4021b0f8ceb77a6fb4de6fde4502cecab45062e66ff4f2895169e0b35bc9466c", size = 173706, upload-time = "2025-10-28T21:34:50.151Z" }, ] [[package]] name = "google-auth" -version = "2.40.3" +version = "2.43.0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "cachetools", version = "5.5.2", source = { registry = "https://pypi.org/simple" } }, + { name = "cachetools" }, { name = "pyasn1-modules" }, { name = "rsa" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/9e/9b/e92ef23b84fa10a64ce4831390b7a4c2e53c0132568d99d4ae61d04c8855/google_auth-2.40.3.tar.gz", hash = "sha256:500c3a29adedeb36ea9cf24b8d10858e152f2412e3ca37829b3fa18e33d63b77", size = 281029, upload-time = "2025-06-04T18:04:57.577Z" } +sdist = { url = "https://files.pythonhosted.org/packages/ff/ef/66d14cf0e01b08d2d51ffc3c20410c4e134a1548fc246a6081eae585a4fe/google_auth-2.43.0.tar.gz", hash = "sha256:88228eee5fc21b62a1b5fe773ca15e67778cb07dc8363adcb4a8827b52d81483", size = 296359, upload-time = "2025-11-06T00:13:36.587Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/17/63/b19553b658a1692443c62bd07e5868adaa0ad746a0751ba62c59568cd45b/google_auth-2.40.3-py2.py3-none-any.whl", hash = "sha256:1370d4593e86213563547f97a92752fc658456fe4514c809544f330fed45a7ca", size = 216137, upload-time = "2025-06-04T18:04:55.573Z" }, + { url = "https://files.pythonhosted.org/packages/6f/d1/385110a9ae86d91cc14c5282c61fe9f4dc41c0b9f7d423c6ad77038c4448/google_auth-2.43.0-py2.py3-none-any.whl", hash = "sha256:af628ba6fa493f75c7e9dbe9373d148ca9f4399b5ea29976519e0a3848eddd16", size = 223114, upload-time = "2025-11-06T00:13:35.209Z" }, ] [[package]] name = "google-cloud-core" -version = "2.4.3" +version = "2.5.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "google-api-core" }, { name = "google-auth" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/d6/b8/2b53838d2acd6ec6168fd284a990c76695e84c65deee79c9f3a4276f6b4f/google_cloud_core-2.4.3.tar.gz", hash = "sha256:1fab62d7102844b278fe6dead3af32408b1df3eb06f5c7e8634cbd40edc4da53", size = 35861, upload-time = "2025-03-10T21:05:38.948Z" } +sdist = { url = "https://files.pythonhosted.org/packages/a6/03/ef0bc99d0e0faf4fdbe67ac445e18cdaa74824fd93cd069e7bb6548cb52d/google_cloud_core-2.5.0.tar.gz", hash = "sha256:7c1b7ef5c92311717bd05301aa1a91ffbc565673d3b0b4163a52d8413a186963", size = 36027, upload-time = "2025-10-29T23:17:39.513Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/40/86/bda7241a8da2d28a754aad2ba0f6776e35b67e37c36ae0c45d49370f1014/google_cloud_core-2.4.3-py2.py3-none-any.whl", hash = "sha256:5130f9f4c14b4fafdff75c79448f9495cfade0d8775facf1b09c3bf67e027f6e", size = 29348, upload-time = "2025-03-10T21:05:37.785Z" }, + { url = "https://files.pythonhosted.org/packages/89/20/bfa472e327c8edee00f04beecc80baeddd2ab33ee0e86fd7654da49d45e9/google_cloud_core-2.5.0-py3-none-any.whl", hash = "sha256:67d977b41ae6c7211ee830c7912e41003ea8194bff15ae7d72fd6f51e57acabc", size = 29469, upload-time = "2025-10-29T23:17:38.548Z" }, ] [[package]] @@ -3654,12 +3221,6 @@ version = "1.7.1" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/19/ae/87802e6d9f9d69adfaedfcfd599266bf386a54d0be058b532d04c794f76d/google_crc32c-1.7.1.tar.gz", hash = "sha256:2bff2305f98846f3e825dbeec9ee406f89da7962accdb29356e4eadc251bd472", size = 14495, upload-time = "2025-03-26T14:29:13.32Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/eb/69/b1b05cf415df0d86691d6a8b4b7e60ab3a6fb6efb783ee5cd3ed1382bfd3/google_crc32c-1.7.1-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:b07d48faf8292b4db7c3d64ab86f950c2e94e93a11fd47271c28ba458e4a0d76", size = 30467, upload-time = "2025-03-26T14:31:11.92Z" }, - { url = "https://files.pythonhosted.org/packages/44/3d/92f8928ecd671bd5b071756596971c79d252d09b835cdca5a44177fa87aa/google_crc32c-1.7.1-cp310-cp310-macosx_12_0_x86_64.whl", hash = "sha256:7cc81b3a2fbd932a4313eb53cc7d9dde424088ca3a0337160f35d91826880c1d", size = 30311, upload-time = "2025-03-26T14:53:14.161Z" }, - { url = "https://files.pythonhosted.org/packages/33/42/c2d15a73df79d45ed6b430b9e801d0bd8e28ac139a9012d7d58af50a385d/google_crc32c-1.7.1-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:1c67ca0a1f5b56162951a9dae987988679a7db682d6f97ce0f6381ebf0fbea4c", size = 37889, upload-time = "2025-03-26T14:41:27.83Z" }, - { url = "https://files.pythonhosted.org/packages/57/ea/ac59c86a3c694afd117bb669bde32aaf17d0de4305d01d706495f09cbf19/google_crc32c-1.7.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fc5319db92daa516b653600794d5b9f9439a9a121f3e162f94b0e1891c7933cb", size = 33028, upload-time = "2025-03-26T14:41:29.141Z" }, - { url = "https://files.pythonhosted.org/packages/60/44/87e77e8476767a4a93f6cf271157c6d948eacec63688c093580af13b04be/google_crc32c-1.7.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dcdf5a64adb747610140572ed18d011896e3b9ae5195f2514b7ff678c80f1603", size = 38026, upload-time = "2025-03-26T14:41:29.921Z" }, - { url = "https://files.pythonhosted.org/packages/c8/bf/21ac7bb305cd7c1a6de9c52f71db0868e104a5b573a4977cd9d0ff830f82/google_crc32c-1.7.1-cp310-cp310-win_amd64.whl", hash = "sha256:754561c6c66e89d55754106739e22fdaa93fafa8da7221b29c8b8e8270c6ec8a", size = 33476, upload-time = "2025-03-26T14:29:09.086Z" }, { url = "https://files.pythonhosted.org/packages/f7/94/220139ea87822b6fdfdab4fb9ba81b3fff7ea2c82e2af34adc726085bffc/google_crc32c-1.7.1-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:6fbab4b935989e2c3610371963ba1b86afb09537fd0c633049be82afe153ac06", size = 30468, upload-time = "2025-03-26T14:32:52.215Z" }, { url = "https://files.pythonhosted.org/packages/94/97/789b23bdeeb9d15dc2904660463ad539d0318286d7633fe2760c10ed0c1c/google_crc32c-1.7.1-cp311-cp311-macosx_12_0_x86_64.whl", hash = "sha256:ed66cbe1ed9cbaaad9392b5259b3eba4a9e565420d734e6238813c428c3336c9", size = 30313, upload-time = "2025-03-26T14:57:38.758Z" }, { url = "https://files.pythonhosted.org/packages/81/b8/976a2b843610c211e7ccb3e248996a61e87dbb2c09b1499847e295080aec/google_crc32c-1.7.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ee6547b657621b6cbed3562ea7826c3e11cab01cd33b74e1f677690652883e77", size = 33048, upload-time = "2025-03-26T14:41:30.679Z" }, @@ -3677,8 +3238,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/89/32/a22a281806e3ef21b72db16f948cad22ec68e4bdd384139291e00ff82fe2/google_crc32c-1.7.1-cp313-cp313-win_amd64.whl", hash = "sha256:0f99eaa09a9a7e642a61e06742856eec8b19fc0037832e03f941fe7cf0c8e4db", size = 33475, upload-time = "2025-03-26T14:29:11.771Z" }, { url = "https://files.pythonhosted.org/packages/b8/c5/002975aff514e57fc084ba155697a049b3f9b52225ec3bc0f542871dd524/google_crc32c-1.7.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:32d1da0d74ec5634a05f53ef7df18fc646666a25efaaca9fc7dcfd4caf1d98c3", size = 33243, upload-time = "2025-03-26T14:41:35.975Z" }, { url = "https://files.pythonhosted.org/packages/61/cb/c585282a03a0cea70fcaa1bf55d5d702d0f2351094d663ec3be1c6c67c52/google_crc32c-1.7.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e10554d4abc5238823112c2ad7e4560f96c7bf3820b202660373d769d9e6e4c9", size = 32870, upload-time = "2025-03-26T14:41:37.08Z" }, - { url = "https://files.pythonhosted.org/packages/0b/43/31e57ce04530794917dfe25243860ec141de9fadf4aa9783dffe7dac7c39/google_crc32c-1.7.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a8e9afc74168b0b2232fb32dd202c93e46b7d5e4bf03e66ba5dc273bb3559589", size = 28242, upload-time = "2025-03-26T14:41:42.858Z" }, - { url = "https://files.pythonhosted.org/packages/eb/f3/8b84cd4e0ad111e63e30eb89453f8dd308e3ad36f42305cf8c202461cdf0/google_crc32c-1.7.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa8136cc14dd27f34a3221c0f16fd42d8a40e4778273e61a3c19aedaa44daf6b", size = 28049, upload-time = "2025-03-26T14:41:44.651Z" }, { url = "https://files.pythonhosted.org/packages/16/1b/1693372bf423ada422f80fd88260dbfd140754adb15cbc4d7e9a68b1cb8e/google_crc32c-1.7.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:85fef7fae11494e747c9fd1359a527e5970fc9603c90764843caabd3a16a0a48", size = 28241, upload-time = "2025-03-26T14:41:45.898Z" }, { url = "https://files.pythonhosted.org/packages/fd/3c/2a19a60a473de48717b4efb19398c3f914795b64a96cf3fbe82588044f78/google_crc32c-1.7.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6efb97eb4369d52593ad6f75e7e10d053cf00c48983f7a973105bc70b0ac4d82", size = 28048, upload-time = "2025-03-26T14:41:46.696Z" }, ] @@ -3697,26 +3256,27 @@ wheels = [ [[package]] name = "google-resumable-media" -version = "2.7.2" +version = "2.8.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "google-crc32c" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/58/5a/0efdc02665dca14e0837b62c8a1a93132c264bd02054a15abb2218afe0ae/google_resumable_media-2.7.2.tar.gz", hash = "sha256:5280aed4629f2b60b847b0d42f9857fd4935c11af266744df33d8074cae92fe0", size = 2163099, upload-time = "2024-08-07T22:20:38.555Z" } +sdist = { url = "https://files.pythonhosted.org/packages/64/d7/520b62a35b23038ff005e334dba3ffc75fcf583bee26723f1fd8fd4b6919/google_resumable_media-2.8.0.tar.gz", hash = "sha256:f1157ed8b46994d60a1bc432544db62352043113684d4e030ee02e77ebe9a1ae", size = 2163265, upload-time = "2025-11-17T15:38:06.659Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/82/35/b8d3baf8c46695858cb9d8835a53baa1eeb9906ddaf2f728a5f5b640fd1e/google_resumable_media-2.7.2-py2.py3-none-any.whl", hash = "sha256:3ce7551e9fe6d99e9a126101d2536612bb73486721951e9562fee0f90c6ababa", size = 81251, upload-time = "2024-08-07T22:20:36.409Z" }, + { url = "https://files.pythonhosted.org/packages/1f/0b/93afde9cfe012260e9fe1522f35c9b72d6ee222f316586b1f23ecf44d518/google_resumable_media-2.8.0-py3-none-any.whl", hash = "sha256:dd14a116af303845a8d932ddae161a26e86cc229645bc98b39f026f9b1717582", size = 81340, upload-time = "2025-11-17T15:38:05.594Z" }, ] [[package]] name = "googleapis-common-protos" -version = "1.70.0" +version = "1.72.0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "protobuf" }, + { name = "protobuf", version = "4.25.8", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-orb') or (sys_platform == 'linux' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, + { name = "protobuf", version = "5.29.5", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (sys_platform != 'linux' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb')" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/39/24/33db22342cf4a2ea27c9955e6713140fedd51e8b141b5ce5260897020f1a/googleapis_common_protos-1.70.0.tar.gz", hash = "sha256:0e1b44e0ea153e6594f9f394fef15193a68aaaea2d843f83e2742717ca753257", size = 145903, upload-time = "2025-04-14T10:17:02.924Z" } +sdist = { url = "https://files.pythonhosted.org/packages/e5/7b/adfd75544c415c487b33061fe7ae526165241c1ea133f9a9125a56b39fd8/googleapis_common_protos-1.72.0.tar.gz", hash = "sha256:e55a601c1b32b52d7a3e65f43563e2aa61bcd737998ee672ac9b951cd49319f5", size = 147433, upload-time = "2025-11-06T18:29:24.087Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/86/f1/62a193f0227cf15a920390abe675f386dec35f7ae3ffe6da582d3ade42c7/googleapis_common_protos-1.70.0-py3-none-any.whl", hash = "sha256:b8bfcca8c25a2bb253e0e0b0adaf8c00773e5e6af6fd92397576680b807e0fd8", size = 294530, upload-time = "2025-04-14T10:17:01.271Z" }, + { url = "https://files.pythonhosted.org/packages/c4/ab/09169d5a4612a5f92490806649ac8d41e3ec9129c636754575b3553f4ea4/googleapis_common_protos-1.72.0-py3-none-any.whl", hash = "sha256:4299c5a82d5ae1a9702ada957347726b167f9f8d1fc352477702a1e851ff4038", size = 297515, upload-time = "2025-11-06T18:29:13.14Z" }, ] [[package]] @@ -3733,122 +3293,92 @@ wheels = [ [[package]] name = "greenlet" -version = "3.2.3" +version = "3.3.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/c9/92/bb85bd6e80148a4d2e0c59f7c0c2891029f8fd510183afc7d8d2feeed9b6/greenlet-3.2.3.tar.gz", hash = "sha256:8b0dd8ae4c0d6f5e54ee55ba935eeb3d735a9b58a8a1e5b5cbab64e01a39f365", size = 185752, upload-time = "2025-06-05T16:16:09.955Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/92/db/b4c12cff13ebac2786f4f217f06588bccd8b53d260453404ef22b121fc3a/greenlet-3.2.3-cp310-cp310-macosx_11_0_universal2.whl", hash = "sha256:1afd685acd5597349ee6d7a88a8bec83ce13c106ac78c196ee9dde7c04fe87be", size = 268977, upload-time = "2025-06-05T16:10:24.001Z" }, - { url = "https://files.pythonhosted.org/packages/52/61/75b4abd8147f13f70986df2801bf93735c1bd87ea780d70e3b3ecda8c165/greenlet-3.2.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:761917cac215c61e9dc7324b2606107b3b292a8349bdebb31503ab4de3f559ac", size = 627351, upload-time = "2025-06-05T16:38:50.685Z" }, - { url = "https://files.pythonhosted.org/packages/35/aa/6894ae299d059d26254779a5088632874b80ee8cf89a88bca00b0709d22f/greenlet-3.2.3-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:a433dbc54e4a37e4fff90ef34f25a8c00aed99b06856f0119dcf09fbafa16392", size = 638599, upload-time = "2025-06-05T16:41:34.057Z" }, - { url = "https://files.pythonhosted.org/packages/30/64/e01a8261d13c47f3c082519a5e9dbf9e143cc0498ed20c911d04e54d526c/greenlet-3.2.3-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.whl", hash = "sha256:72e77ed69312bab0434d7292316d5afd6896192ac4327d44f3d613ecb85b037c", size = 634482, upload-time = "2025-06-05T16:48:16.26Z" }, - { url = "https://files.pythonhosted.org/packages/47/48/ff9ca8ba9772d083a4f5221f7b4f0ebe8978131a9ae0909cf202f94cd879/greenlet-3.2.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:68671180e3849b963649254a882cd544a3c75bfcd2c527346ad8bb53494444db", size = 633284, upload-time = "2025-06-05T16:13:01.599Z" }, - { url = "https://files.pythonhosted.org/packages/e9/45/626e974948713bc15775b696adb3eb0bd708bec267d6d2d5c47bb47a6119/greenlet-3.2.3-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:49c8cfb18fb419b3d08e011228ef8a25882397f3a859b9fe1436946140b6756b", size = 582206, upload-time = "2025-06-05T16:12:48.51Z" }, - { url = "https://files.pythonhosted.org/packages/b1/8e/8b6f42c67d5df7db35b8c55c9a850ea045219741bb14416255616808c690/greenlet-3.2.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:efc6dc8a792243c31f2f5674b670b3a95d46fa1c6a912b8e310d6f542e7b0712", size = 1111412, upload-time = "2025-06-05T16:36:45.479Z" }, - { url = "https://files.pythonhosted.org/packages/05/46/ab58828217349500a7ebb81159d52ca357da747ff1797c29c6023d79d798/greenlet-3.2.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:731e154aba8e757aedd0781d4b240f1225b075b4409f1bb83b05ff410582cf00", size = 1135054, upload-time = "2025-06-05T16:12:36.478Z" }, - { url = "https://files.pythonhosted.org/packages/68/7f/d1b537be5080721c0f0089a8447d4ef72839039cdb743bdd8ffd23046e9a/greenlet-3.2.3-cp310-cp310-win_amd64.whl", hash = "sha256:96c20252c2f792defe9a115d3287e14811036d51e78b3aaddbee23b69b216302", size = 296573, upload-time = "2025-06-05T16:34:26.521Z" }, - { url = "https://files.pythonhosted.org/packages/fc/2e/d4fcb2978f826358b673f779f78fa8a32ee37df11920dc2bb5589cbeecef/greenlet-3.2.3-cp311-cp311-macosx_11_0_universal2.whl", hash = "sha256:784ae58bba89fa1fa5733d170d42486580cab9decda3484779f4759345b29822", size = 270219, upload-time = "2025-06-05T16:10:10.414Z" }, - { url = "https://files.pythonhosted.org/packages/16/24/929f853e0202130e4fe163bc1d05a671ce8dcd604f790e14896adac43a52/greenlet-3.2.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:0921ac4ea42a5315d3446120ad48f90c3a6b9bb93dd9b3cf4e4d84a66e42de83", size = 630383, upload-time = "2025-06-05T16:38:51.785Z" }, - { url = "https://files.pythonhosted.org/packages/d1/b2/0320715eb61ae70c25ceca2f1d5ae620477d246692d9cc284c13242ec31c/greenlet-3.2.3-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:d2971d93bb99e05f8c2c0c2f4aa9484a18d98c4c3bd3c62b65b7e6ae33dfcfaf", size = 642422, upload-time = "2025-06-05T16:41:35.259Z" }, - { url = "https://files.pythonhosted.org/packages/bd/49/445fd1a210f4747fedf77615d941444349c6a3a4a1135bba9701337cd966/greenlet-3.2.3-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.whl", hash = "sha256:c667c0bf9d406b77a15c924ef3285e1e05250948001220368e039b6aa5b5034b", size = 638375, upload-time = "2025-06-05T16:48:18.235Z" }, - { url = "https://files.pythonhosted.org/packages/7e/c8/ca19760cf6eae75fa8dc32b487e963d863b3ee04a7637da77b616703bc37/greenlet-3.2.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:592c12fb1165be74592f5de0d70f82bc5ba552ac44800d632214b76089945147", size = 637627, upload-time = "2025-06-05T16:13:02.858Z" }, - { url = "https://files.pythonhosted.org/packages/65/89/77acf9e3da38e9bcfca881e43b02ed467c1dedc387021fc4d9bd9928afb8/greenlet-3.2.3-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:29e184536ba333003540790ba29829ac14bb645514fbd7e32af331e8202a62a5", size = 585502, upload-time = "2025-06-05T16:12:49.642Z" }, - { url = "https://files.pythonhosted.org/packages/97/c6/ae244d7c95b23b7130136e07a9cc5aadd60d59b5951180dc7dc7e8edaba7/greenlet-3.2.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:93c0bb79844a367782ec4f429d07589417052e621aa39a5ac1fb99c5aa308edc", size = 1114498, upload-time = "2025-06-05T16:36:46.598Z" }, - { url = "https://files.pythonhosted.org/packages/89/5f/b16dec0cbfd3070658e0d744487919740c6d45eb90946f6787689a7efbce/greenlet-3.2.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:751261fc5ad7b6705f5f76726567375bb2104a059454e0226e1eef6c756748ba", size = 1139977, upload-time = "2025-06-05T16:12:38.262Z" }, - { url = "https://files.pythonhosted.org/packages/66/77/d48fb441b5a71125bcac042fc5b1494c806ccb9a1432ecaa421e72157f77/greenlet-3.2.3-cp311-cp311-win_amd64.whl", hash = "sha256:83a8761c75312361aa2b5b903b79da97f13f556164a7dd2d5448655425bd4c34", size = 297017, upload-time = "2025-06-05T16:25:05.225Z" }, - { url = "https://files.pythonhosted.org/packages/f3/94/ad0d435f7c48debe960c53b8f60fb41c2026b1d0fa4a99a1cb17c3461e09/greenlet-3.2.3-cp312-cp312-macosx_11_0_universal2.whl", hash = "sha256:25ad29caed5783d4bd7a85c9251c651696164622494c00802a139c00d639242d", size = 271992, upload-time = "2025-06-05T16:11:23.467Z" }, - { url = "https://files.pythonhosted.org/packages/93/5d/7c27cf4d003d6e77749d299c7c8f5fd50b4f251647b5c2e97e1f20da0ab5/greenlet-3.2.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:88cd97bf37fe24a6710ec6a3a7799f3f81d9cd33317dcf565ff9950c83f55e0b", size = 638820, upload-time = "2025-06-05T16:38:52.882Z" }, - { url = "https://files.pythonhosted.org/packages/c6/7e/807e1e9be07a125bb4c169144937910bf59b9d2f6d931578e57f0bce0ae2/greenlet-3.2.3-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:baeedccca94880d2f5666b4fa16fc20ef50ba1ee353ee2d7092b383a243b0b0d", size = 653046, upload-time = "2025-06-05T16:41:36.343Z" }, - { url = "https://files.pythonhosted.org/packages/9d/ab/158c1a4ea1068bdbc78dba5a3de57e4c7aeb4e7fa034320ea94c688bfb61/greenlet-3.2.3-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.whl", hash = "sha256:be52af4b6292baecfa0f397f3edb3c6092ce071b499dd6fe292c9ac9f2c8f264", size = 647701, upload-time = "2025-06-05T16:48:19.604Z" }, - { url = "https://files.pythonhosted.org/packages/cc/0d/93729068259b550d6a0288da4ff72b86ed05626eaf1eb7c0d3466a2571de/greenlet-3.2.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:0cc73378150b8b78b0c9fe2ce56e166695e67478550769536a6742dca3651688", size = 649747, upload-time = "2025-06-05T16:13:04.628Z" }, - { url = "https://files.pythonhosted.org/packages/f6/f6/c82ac1851c60851302d8581680573245c8fc300253fc1ff741ae74a6c24d/greenlet-3.2.3-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:706d016a03e78df129f68c4c9b4c4f963f7d73534e48a24f5f5a7101ed13dbbb", size = 605461, upload-time = "2025-06-05T16:12:50.792Z" }, - { url = "https://files.pythonhosted.org/packages/98/82/d022cf25ca39cf1200650fc58c52af32c90f80479c25d1cbf57980ec3065/greenlet-3.2.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:419e60f80709510c343c57b4bb5a339d8767bf9aef9b8ce43f4f143240f88b7c", size = 1121190, upload-time = "2025-06-05T16:36:48.59Z" }, - { url = "https://files.pythonhosted.org/packages/f5/e1/25297f70717abe8104c20ecf7af0a5b82d2f5a980eb1ac79f65654799f9f/greenlet-3.2.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:93d48533fade144203816783373f27a97e4193177ebaaf0fc396db19e5d61163", size = 1149055, upload-time = "2025-06-05T16:12:40.457Z" }, - { url = "https://files.pythonhosted.org/packages/1f/8f/8f9e56c5e82eb2c26e8cde787962e66494312dc8cb261c460e1f3a9c88bc/greenlet-3.2.3-cp312-cp312-win_amd64.whl", hash = "sha256:7454d37c740bb27bdeddfc3f358f26956a07d5220818ceb467a483197d84f849", size = 297817, upload-time = "2025-06-05T16:29:49.244Z" }, - { url = "https://files.pythonhosted.org/packages/b1/cf/f5c0b23309070ae93de75c90d29300751a5aacefc0a3ed1b1d8edb28f08b/greenlet-3.2.3-cp313-cp313-macosx_11_0_universal2.whl", hash = "sha256:500b8689aa9dd1ab26872a34084503aeddefcb438e2e7317b89b11eaea1901ad", size = 270732, upload-time = "2025-06-05T16:10:08.26Z" }, - { url = "https://files.pythonhosted.org/packages/48/ae/91a957ba60482d3fecf9be49bc3948f341d706b52ddb9d83a70d42abd498/greenlet-3.2.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:a07d3472c2a93117af3b0136f246b2833fdc0b542d4a9799ae5f41c28323faef", size = 639033, upload-time = "2025-06-05T16:38:53.983Z" }, - { url = "https://files.pythonhosted.org/packages/6f/df/20ffa66dd5a7a7beffa6451bdb7400d66251374ab40b99981478c69a67a8/greenlet-3.2.3-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:8704b3768d2f51150626962f4b9a9e4a17d2e37c8a8d9867bbd9fa4eb938d3b3", size = 652999, upload-time = "2025-06-05T16:41:37.89Z" }, - { url = "https://files.pythonhosted.org/packages/51/b4/ebb2c8cb41e521f1d72bf0465f2f9a2fd803f674a88db228887e6847077e/greenlet-3.2.3-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.whl", hash = "sha256:5035d77a27b7c62db6cf41cf786cfe2242644a7a337a0e155c80960598baab95", size = 647368, upload-time = "2025-06-05T16:48:21.467Z" }, - { url = "https://files.pythonhosted.org/packages/8e/6a/1e1b5aa10dced4ae876a322155705257748108b7fd2e4fae3f2a091fe81a/greenlet-3.2.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:2d8aa5423cd4a396792f6d4580f88bdc6efcb9205891c9d40d20f6e670992efb", size = 650037, upload-time = "2025-06-05T16:13:06.402Z" }, - { url = "https://files.pythonhosted.org/packages/26/f2/ad51331a157c7015c675702e2d5230c243695c788f8f75feba1af32b3617/greenlet-3.2.3-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:2c724620a101f8170065d7dded3f962a2aea7a7dae133a009cada42847e04a7b", size = 608402, upload-time = "2025-06-05T16:12:51.91Z" }, - { url = "https://files.pythonhosted.org/packages/26/bc/862bd2083e6b3aff23300900a956f4ea9a4059de337f5c8734346b9b34fc/greenlet-3.2.3-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:873abe55f134c48e1f2a6f53f7d1419192a3d1a4e873bace00499a4e45ea6af0", size = 1119577, upload-time = "2025-06-05T16:36:49.787Z" }, - { url = "https://files.pythonhosted.org/packages/86/94/1fc0cc068cfde885170e01de40a619b00eaa8f2916bf3541744730ffb4c3/greenlet-3.2.3-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:024571bbce5f2c1cfff08bf3fbaa43bbc7444f580ae13b0099e95d0e6e67ed36", size = 1147121, upload-time = "2025-06-05T16:12:42.527Z" }, - { url = "https://files.pythonhosted.org/packages/27/1a/199f9587e8cb08a0658f9c30f3799244307614148ffe8b1e3aa22f324dea/greenlet-3.2.3-cp313-cp313-win_amd64.whl", hash = "sha256:5195fb1e75e592dd04ce79881c8a22becdfa3e6f500e7feb059b1e6fdd54d3e3", size = 297603, upload-time = "2025-06-05T16:20:12.651Z" }, - { url = "https://files.pythonhosted.org/packages/d8/ca/accd7aa5280eb92b70ed9e8f7fd79dc50a2c21d8c73b9a0856f5b564e222/greenlet-3.2.3-cp314-cp314-macosx_11_0_universal2.whl", hash = "sha256:3d04332dddb10b4a211b68111dabaee2e1a073663d117dc10247b5b1642bac86", size = 271479, upload-time = "2025-06-05T16:10:47.525Z" }, - { url = "https://files.pythonhosted.org/packages/55/71/01ed9895d9eb49223280ecc98a557585edfa56b3d0e965b9fa9f7f06b6d9/greenlet-3.2.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:8186162dffde068a465deab08fc72c767196895c39db26ab1c17c0b77a6d8b97", size = 683952, upload-time = "2025-06-05T16:38:55.125Z" }, - { url = "https://files.pythonhosted.org/packages/ea/61/638c4bdf460c3c678a0a1ef4c200f347dff80719597e53b5edb2fb27ab54/greenlet-3.2.3-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:f4bfbaa6096b1b7a200024784217defedf46a07c2eee1a498e94a1b5f8ec5728", size = 696917, upload-time = "2025-06-05T16:41:38.959Z" }, - { url = "https://files.pythonhosted.org/packages/22/cc/0bd1a7eb759d1f3e3cc2d1bc0f0b487ad3cc9f34d74da4b80f226fde4ec3/greenlet-3.2.3-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.whl", hash = "sha256:ed6cfa9200484d234d8394c70f5492f144b20d4533f69262d530a1a082f6ee9a", size = 692443, upload-time = "2025-06-05T16:48:23.113Z" }, - { url = "https://files.pythonhosted.org/packages/67/10/b2a4b63d3f08362662e89c103f7fe28894a51ae0bc890fabf37d1d780e52/greenlet-3.2.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:02b0df6f63cd15012bed5401b47829cfd2e97052dc89da3cfaf2c779124eb892", size = 692995, upload-time = "2025-06-05T16:13:07.972Z" }, - { url = "https://files.pythonhosted.org/packages/5a/c6/ad82f148a4e3ce9564056453a71529732baf5448ad53fc323e37efe34f66/greenlet-3.2.3-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:86c2d68e87107c1792e2e8d5399acec2487a4e993ab76c792408e59394d52141", size = 655320, upload-time = "2025-06-05T16:12:53.453Z" }, - { url = "https://files.pythonhosted.org/packages/5c/4f/aab73ecaa6b3086a4c89863d94cf26fa84cbff63f52ce9bc4342b3087a06/greenlet-3.2.3-cp314-cp314-win_amd64.whl", hash = "sha256:8c47aae8fbbfcf82cc13327ae802ba13c9c36753b67e760023fd116bc124a62a", size = 301236, upload-time = "2025-06-05T16:15:20.111Z" }, +wheels = [ + { url = "https://files.pythonhosted.org/packages/1f/cb/48e964c452ca2b92175a9b2dca037a553036cb053ba69e284650ce755f13/greenlet-3.3.0-cp311-cp311-macosx_11_0_universal2.whl", hash = "sha256:e29f3018580e8412d6aaf5641bb7745d38c85228dacf51a73bd4e26ddf2a6a8e", size = 274908, upload-time = "2025-12-04T14:23:26.435Z" }, + { url = "https://files.pythonhosted.org/packages/dc/a6/e959a127b630a58e23529972dbc868c107f9d583b5a9f878fb858c46bc1a/greenlet-3.3.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:6cb3a8ec3db4a3b0eb8a3c25436c2d49e3505821802074969db017b87bc6a948", size = 590206, upload-time = "2025-12-04T14:26:01.254Z" }, + { url = "https://files.pythonhosted.org/packages/f8/0a/a3871375c7b9727edaeeea994bfff7c63ff7804c9829c19309ba2e058807/greenlet-3.3.0-cp312-cp312-macosx_11_0_universal2.whl", hash = "sha256:b01548f6e0b9e9784a2c99c5651e5dc89ffcbe870bc5fb2e5ef864e9cc6b5dcb", size = 276379, upload-time = "2025-12-04T14:23:30.498Z" }, + { url = "https://files.pythonhosted.org/packages/75/b0/6bde0b1011a60782108c01de5913c588cf51a839174538d266de15e4bf4d/greenlet-3.3.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:047ab3df20ede6a57c35c14bf5200fcf04039d50f908270d3f9a7a82064f543b", size = 609885, upload-time = "2025-12-04T14:26:02.368Z" }, + { url = "https://files.pythonhosted.org/packages/02/2f/28592176381b9ab2cafa12829ba7b472d177f3acc35d8fbcf3673d966fff/greenlet-3.3.0-cp313-cp313-macosx_11_0_universal2.whl", hash = "sha256:a1e41a81c7e2825822f4e068c48cb2196002362619e2d70b148f20a831c00739", size = 275140, upload-time = "2025-12-04T14:23:01.282Z" }, + { url = "https://files.pythonhosted.org/packages/fd/8e/424b8c6e78bd9837d14ff7df01a9829fc883ba2ab4ea787d4f848435f23f/greenlet-3.3.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:087ea5e004437321508a8d6f20efc4cfec5e3c30118e1417ea96ed1d93950527", size = 612833, upload-time = "2025-12-04T14:26:03.669Z" }, + { url = "https://files.pythonhosted.org/packages/d7/7c/f0a6d0ede2c7bf092d00bc83ad5bafb7e6ec9b4aab2fbdfa6f134dc73327/greenlet-3.3.0-cp314-cp314-macosx_11_0_universal2.whl", hash = "sha256:60c2ef0f578afb3c8d92ea07ad327f9a062547137afe91f38408f08aacab667f", size = 275671, upload-time = "2025-12-04T14:23:05.267Z" }, + { url = "https://files.pythonhosted.org/packages/b8/14/bab308fc2c1b5228c3224ec2bf928ce2e4d21d8046c161e44a2012b5203e/greenlet-3.3.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:5773edda4dc00e173820722711d043799d3adb4f01731f40619e07ea2750b955", size = 660166, upload-time = "2025-12-04T14:26:05.099Z" }, + { url = "https://files.pythonhosted.org/packages/a0/66/bd6317bc5932accf351fc19f177ffba53712a202f9df10587da8df257c7e/greenlet-3.3.0-cp314-cp314t-macosx_11_0_universal2.whl", hash = "sha256:d6ed6f85fae6cdfdb9ce04c9bf7a08d666cfcfb914e7d006f44f840b46741931", size = 282638, upload-time = "2025-12-04T14:25:20.941Z" }, + { url = "https://files.pythonhosted.org/packages/57/b9/f8025d71a6085c441a7eaff0fd928bbb275a6633773667023d19179fe815/greenlet-3.3.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:3c6e9b9c1527a78520357de498b0e709fb9e2f49c3a513afd5a249007261911b", size = 653783, upload-time = "2025-12-04T14:26:06.225Z" }, ] [[package]] name = "grpcio" -version = "1.73.0" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/8e/7b/ca3f561aeecf0c846d15e1b38921a60dffffd5d4113931198fbf455334ee/grpcio-1.73.0.tar.gz", hash = "sha256:3af4c30918a7f0d39de500d11255f8d9da4f30e94a2033e70fe2a720e184bd8e", size = 12786424, upload-time = "2025-06-09T10:08:23.365Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/b0/44/5ca479c880b9f56c9a9502873ea500c09d1087dc868217a90724c24d83d0/grpcio-1.73.0-cp310-cp310-linux_armv7l.whl", hash = "sha256:d050197eeed50f858ef6c51ab09514856f957dba7b1f7812698260fc9cc417f6", size = 5365135, upload-time = "2025-06-09T10:02:44.243Z" }, - { url = "https://files.pythonhosted.org/packages/8d/b7/78ff355cdb602ab01ea437d316846847e0c1f7d109596e5409402cc13156/grpcio-1.73.0-cp310-cp310-macosx_11_0_universal2.whl", hash = "sha256:ebb8d5f4b0200916fb292a964a4d41210de92aba9007e33d8551d85800ea16cb", size = 10609627, upload-time = "2025-06-09T10:02:46.678Z" }, - { url = "https://files.pythonhosted.org/packages/8d/92/5111235062b9da0e3010e5fd2bdceb766113fcf60520f9c23eb651089dd7/grpcio-1.73.0-cp310-cp310-manylinux_2_17_aarch64.whl", hash = "sha256:c0811331b469e3f15dda5f90ab71bcd9681189a83944fd6dc908e2c9249041ef", size = 5803418, upload-time = "2025-06-09T10:02:49.047Z" }, - { url = "https://files.pythonhosted.org/packages/76/fa/dbf3fca0b91fa044f1114b11adc3d4ccc18ab1ac278daa69d450fd9aaef2/grpcio-1.73.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:12787c791c3993d0ea1cc8bf90393647e9a586066b3b322949365d2772ba965b", size = 6444741, upload-time = "2025-06-09T10:02:51.763Z" }, - { url = "https://files.pythonhosted.org/packages/44/e1/e7c830c1a29abd13f0e7e861c8db57a67db5cb8a1edc6b9d9cd44c26a1e5/grpcio-1.73.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2c17771e884fddf152f2a0df12478e8d02853e5b602a10a9a9f1f52fa02b1d32", size = 6040755, upload-time = "2025-06-09T10:02:54.379Z" }, - { url = "https://files.pythonhosted.org/packages/b4/57/2eaccbfdd8298ab6bb4504600a4283260983a9db7378eb79c922fd559883/grpcio-1.73.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:275e23d4c428c26b51857bbd95fcb8e528783597207ec592571e4372b300a29f", size = 6132216, upload-time = "2025-06-09T10:02:56.932Z" }, - { url = "https://files.pythonhosted.org/packages/81/a4/1bd2c59d7426ab640b121f42acb820ff7cd5c561d03e9c9164cb8431128e/grpcio-1.73.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:9ffc972b530bf73ef0f948f799482a1bf12d9b6f33406a8e6387c0ca2098a833", size = 6774779, upload-time = "2025-06-09T10:02:59.683Z" }, - { url = "https://files.pythonhosted.org/packages/c6/64/70ee85055b4107acbe1af6a99ef6885e34db89083e53e5c27b8442e3aa38/grpcio-1.73.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:ebd8d269df64aff092b2cec5e015d8ae09c7e90888b5c35c24fdca719a2c9f35", size = 6304223, upload-time = "2025-06-09T10:03:01.794Z" }, - { url = "https://files.pythonhosted.org/packages/06/02/4b3c373edccf29205205a6d329a267b9337ecbbf658bc70f0a18d63d0a50/grpcio-1.73.0-cp310-cp310-win32.whl", hash = "sha256:072d8154b8f74300ed362c01d54af8b93200c1a9077aeaea79828d48598514f1", size = 3679738, upload-time = "2025-06-09T10:03:03.675Z" }, - { url = "https://files.pythonhosted.org/packages/30/7a/d6dab939cda2129e39a872ad48f61c9951567dcda8ab419b8de446315a68/grpcio-1.73.0-cp310-cp310-win_amd64.whl", hash = "sha256:ce953d9d2100e1078a76a9dc2b7338d5415924dc59c69a15bf6e734db8a0f1ca", size = 4340441, upload-time = "2025-06-09T10:03:05.942Z" }, - { url = "https://files.pythonhosted.org/packages/dd/31/9de81fd12f7b27e6af403531b7249d76f743d58e0654e624b3df26a43ce2/grpcio-1.73.0-cp311-cp311-linux_armv7l.whl", hash = "sha256:51036f641f171eebe5fa7aaca5abbd6150f0c338dab3a58f9111354240fe36ec", size = 5363773, upload-time = "2025-06-09T10:03:08.056Z" }, - { url = "https://files.pythonhosted.org/packages/32/9e/2cb78be357a7f1fc4942b81468ef3c7e5fd3df3ac010540459c10895a57b/grpcio-1.73.0-cp311-cp311-macosx_11_0_universal2.whl", hash = "sha256:d12bbb88381ea00bdd92c55aff3da3391fd85bc902c41275c8447b86f036ce0f", size = 10621912, upload-time = "2025-06-09T10:03:10.489Z" }, - { url = "https://files.pythonhosted.org/packages/59/2f/b43954811a2e218a2761c0813800773ac0ca187b94fd2b8494e8ef232dc8/grpcio-1.73.0-cp311-cp311-manylinux_2_17_aarch64.whl", hash = "sha256:483c507c2328ed0e01bc1adb13d1eada05cc737ec301d8e5a8f4a90f387f1790", size = 5807985, upload-time = "2025-06-09T10:03:13.775Z" }, - { url = "https://files.pythonhosted.org/packages/1b/bf/68e9f47e7ee349ffee712dcd907ee66826cf044f0dec7ab517421e56e857/grpcio-1.73.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c201a34aa960c962d0ce23fe5f423f97e9d4b518ad605eae6d0a82171809caaa", size = 6448218, upload-time = "2025-06-09T10:03:16.042Z" }, - { url = "https://files.pythonhosted.org/packages/af/dd/38ae43dd58480d609350cf1411fdac5c2ebb243e2c770f6f7aa3773d5e29/grpcio-1.73.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:859f70c8e435e8e1fa060e04297c6818ffc81ca9ebd4940e180490958229a45a", size = 6044343, upload-time = "2025-06-09T10:03:18.229Z" }, - { url = "https://files.pythonhosted.org/packages/93/44/b6770b55071adb86481f36dae87d332fcad883b7f560bba9a940394ba018/grpcio-1.73.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e2459a27c6886e7e687e4e407778425f3c6a971fa17a16420227bda39574d64b", size = 6135858, upload-time = "2025-06-09T10:03:21.059Z" }, - { url = "https://files.pythonhosted.org/packages/d3/9f/63de49fcef436932fcf0ffb978101a95c83c177058dbfb56dbf30ab81659/grpcio-1.73.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:e0084d4559ee3dbdcce9395e1bc90fdd0262529b32c417a39ecbc18da8074ac7", size = 6775806, upload-time = "2025-06-09T10:03:23.876Z" }, - { url = "https://files.pythonhosted.org/packages/4d/67/c11f1953469162e958f09690ec3a9be3fdb29dea7f5661362a664f9d609a/grpcio-1.73.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:ef5fff73d5f724755693a464d444ee0a448c6cdfd3c1616a9223f736c622617d", size = 6308413, upload-time = "2025-06-09T10:03:26.033Z" }, - { url = "https://files.pythonhosted.org/packages/ba/6a/9dd04426337db07f28bd51a986b7a038ba56912c81b5bb1083c17dd63404/grpcio-1.73.0-cp311-cp311-win32.whl", hash = "sha256:965a16b71a8eeef91fc4df1dc40dc39c344887249174053814f8a8e18449c4c3", size = 3678972, upload-time = "2025-06-09T10:03:28.433Z" }, - { url = "https://files.pythonhosted.org/packages/04/8b/8c0a8a4fdc2e7977d325eafc587c9cf468039693ac23ad707153231d3cb2/grpcio-1.73.0-cp311-cp311-win_amd64.whl", hash = "sha256:b71a7b4483d1f753bbc11089ff0f6fa63b49c97a9cc20552cded3fcad466d23b", size = 4342967, upload-time = "2025-06-09T10:03:31.215Z" }, - { url = "https://files.pythonhosted.org/packages/9d/4d/e938f3a0e51a47f2ce7e55f12f19f316e7074770d56a7c2765e782ec76bc/grpcio-1.73.0-cp312-cp312-linux_armv7l.whl", hash = "sha256:fb9d7c27089d9ba3746f18d2109eb530ef2a37452d2ff50f5a6696cd39167d3b", size = 5334911, upload-time = "2025-06-09T10:03:33.494Z" }, - { url = "https://files.pythonhosted.org/packages/13/56/f09c72c43aa8d6f15a71f2c63ebdfac9cf9314363dea2598dc501d8370db/grpcio-1.73.0-cp312-cp312-macosx_11_0_universal2.whl", hash = "sha256:128ba2ebdac41e41554d492b82c34586a90ebd0766f8ebd72160c0e3a57b9155", size = 10601460, upload-time = "2025-06-09T10:03:36.613Z" }, - { url = "https://files.pythonhosted.org/packages/20/e3/85496edc81e41b3c44ebefffc7bce133bb531120066877df0f910eabfa19/grpcio-1.73.0-cp312-cp312-manylinux_2_17_aarch64.whl", hash = "sha256:068ecc415f79408d57a7f146f54cdf9f0acb4b301a52a9e563973dc981e82f3d", size = 5759191, upload-time = "2025-06-09T10:03:39.838Z" }, - { url = "https://files.pythonhosted.org/packages/88/cc/fef74270a6d29f35ad744bfd8e6c05183f35074ff34c655a2c80f3b422b2/grpcio-1.73.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6ddc1cfb2240f84d35d559ade18f69dcd4257dbaa5ba0de1a565d903aaab2968", size = 6409961, upload-time = "2025-06-09T10:03:42.706Z" }, - { url = "https://files.pythonhosted.org/packages/b0/e6/13cfea15e3b8f79c4ae7b676cb21fab70978b0fde1e1d28bb0e073291290/grpcio-1.73.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e53007f70d9783f53b41b4cf38ed39a8e348011437e4c287eee7dd1d39d54b2f", size = 6003948, upload-time = "2025-06-09T10:03:44.96Z" }, - { url = "https://files.pythonhosted.org/packages/c2/ed/b1a36dad4cc0dbf1f83f6d7b58825fefd5cc9ff3a5036e46091335649473/grpcio-1.73.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:4dd8d8d092efede7d6f48d695ba2592046acd04ccf421436dd7ed52677a9ad29", size = 6103788, upload-time = "2025-06-09T10:03:48.053Z" }, - { url = "https://files.pythonhosted.org/packages/e7/c8/d381433d3d46d10f6858126d2d2245ef329e30f3752ce4514c93b95ca6fc/grpcio-1.73.0-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:70176093d0a95b44d24baa9c034bb67bfe2b6b5f7ebc2836f4093c97010e17fd", size = 6749508, upload-time = "2025-06-09T10:03:51.185Z" }, - { url = "https://files.pythonhosted.org/packages/87/0a/ff0c31dbd15e63b34320efafac647270aa88c31aa19ff01154a73dc7ce86/grpcio-1.73.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:085ebe876373ca095e24ced95c8f440495ed0b574c491f7f4f714ff794bbcd10", size = 6284342, upload-time = "2025-06-09T10:03:54.467Z" }, - { url = "https://files.pythonhosted.org/packages/fd/73/f762430c0ba867403b9d6e463afe026bf019bd9206eee753785239719273/grpcio-1.73.0-cp312-cp312-win32.whl", hash = "sha256:cfc556c1d6aef02c727ec7d0016827a73bfe67193e47c546f7cadd3ee6bf1a60", size = 3669319, upload-time = "2025-06-09T10:03:56.751Z" }, - { url = "https://files.pythonhosted.org/packages/10/8b/3411609376b2830449cf416f457ad9d2aacb7f562e1b90fdd8bdedf26d63/grpcio-1.73.0-cp312-cp312-win_amd64.whl", hash = "sha256:bbf45d59d090bf69f1e4e1594832aaf40aa84b31659af3c5e2c3f6a35202791a", size = 4335596, upload-time = "2025-06-09T10:03:59.866Z" }, - { url = "https://files.pythonhosted.org/packages/60/da/6f3f7a78e5455c4cbe87c85063cc6da05d65d25264f9d4aed800ece46294/grpcio-1.73.0-cp313-cp313-linux_armv7l.whl", hash = "sha256:da1d677018ef423202aca6d73a8d3b2cb245699eb7f50eb5f74cae15a8e1f724", size = 5335867, upload-time = "2025-06-09T10:04:03.153Z" }, - { url = "https://files.pythonhosted.org/packages/53/14/7d1f2526b98b9658d7be0bb163fd78d681587de6709d8b0c74b4b481b013/grpcio-1.73.0-cp313-cp313-macosx_11_0_universal2.whl", hash = "sha256:36bf93f6a657f37c131d9dd2c391b867abf1426a86727c3575393e9e11dadb0d", size = 10595587, upload-time = "2025-06-09T10:04:05.694Z" }, - { url = "https://files.pythonhosted.org/packages/02/24/a293c398ae44e741da1ed4b29638edbb002258797b07a783f65506165b4c/grpcio-1.73.0-cp313-cp313-manylinux_2_17_aarch64.whl", hash = "sha256:d84000367508ade791d90c2bafbd905574b5ced8056397027a77a215d601ba15", size = 5765793, upload-time = "2025-06-09T10:04:09.235Z" }, - { url = "https://files.pythonhosted.org/packages/e1/24/d84dbd0b5bf36fb44922798d525a85cefa2ffee7b7110e61406e9750ed15/grpcio-1.73.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c98ba1d928a178ce33f3425ff823318040a2b7ef875d30a0073565e5ceb058d9", size = 6415494, upload-time = "2025-06-09T10:04:12.377Z" }, - { url = "https://files.pythonhosted.org/packages/5e/85/c80dc65aed8e9dce3d54688864bac45331d9c7600985541f18bd5cb301d4/grpcio-1.73.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a73c72922dfd30b396a5f25bb3a4590195ee45ecde7ee068acb0892d2900cf07", size = 6007279, upload-time = "2025-06-09T10:04:14.878Z" }, - { url = "https://files.pythonhosted.org/packages/37/fc/207c00a4c6fa303d26e2cbd62fbdb0582facdfd08f55500fd83bf6b0f8db/grpcio-1.73.0-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:10e8edc035724aba0346a432060fd192b42bd03675d083c01553cab071a28da5", size = 6105505, upload-time = "2025-06-09T10:04:17.39Z" }, - { url = "https://files.pythonhosted.org/packages/72/35/8fe69af820667b87ebfcb24214e42a1d53da53cb39edd6b4f84f6b36da86/grpcio-1.73.0-cp313-cp313-musllinux_1_1_i686.whl", hash = "sha256:f5cdc332b503c33b1643b12ea933582c7b081957c8bc2ea4cc4bc58054a09288", size = 6753792, upload-time = "2025-06-09T10:04:19.989Z" }, - { url = "https://files.pythonhosted.org/packages/e2/d8/738c77c1e821e350da4a048849f695ff88a02b291f8c69db23908867aea6/grpcio-1.73.0-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:07ad7c57233c2109e4ac999cb9c2710c3b8e3f491a73b058b0ce431f31ed8145", size = 6287593, upload-time = "2025-06-09T10:04:22.878Z" }, - { url = "https://files.pythonhosted.org/packages/09/ec/8498eabc018fa39ae8efe5e47e3f4c1bc9ed6281056713871895dc998807/grpcio-1.73.0-cp313-cp313-win32.whl", hash = "sha256:0eb5df4f41ea10bda99a802b2a292d85be28958ede2a50f2beb8c7fc9a738419", size = 3668637, upload-time = "2025-06-09T10:04:25.787Z" }, - { url = "https://files.pythonhosted.org/packages/d7/35/347db7d2e7674b621afd21b12022e7f48c7b0861b5577134b4e939536141/grpcio-1.73.0-cp313-cp313-win_amd64.whl", hash = "sha256:38cf518cc54cd0c47c9539cefa8888549fcc067db0b0c66a46535ca8032020c4", size = 4335872, upload-time = "2025-06-09T10:04:29.032Z" }, +version = "1.76.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "typing-extensions", marker = "extra == 'extra-5-mlipx-fairchem' or extra == 'extra-5-mlipx-grace' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/b6/e0/318c1ce3ae5a17894d5791e87aea147587c9e702f24122cc7a5c8bbaeeb1/grpcio-1.76.0.tar.gz", hash = "sha256:7be78388d6da1a25c0d5ec506523db58b18be22d9c37d8d3a32c08be4987bd73", size = 12785182, upload-time = "2025-10-21T16:23:12.106Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a0/00/8163a1beeb6971f66b4bbe6ac9457b97948beba8dd2fc8e1281dce7f79ec/grpcio-1.76.0-cp311-cp311-linux_armv7l.whl", hash = "sha256:2e1743fbd7f5fa713a1b0a8ac8ebabf0ec980b5d8809ec358d488e273b9cf02a", size = 5843567, upload-time = "2025-10-21T16:20:52.829Z" }, + { url = "https://files.pythonhosted.org/packages/10/c1/934202f5cf335e6d852530ce14ddb0fef21be612ba9ecbbcbd4d748ca32d/grpcio-1.76.0-cp311-cp311-macosx_11_0_universal2.whl", hash = "sha256:a8c2cf1209497cf659a667d7dea88985e834c24b7c3b605e6254cbb5076d985c", size = 11848017, upload-time = "2025-10-21T16:20:56.705Z" }, + { url = "https://files.pythonhosted.org/packages/11/0b/8dec16b1863d74af6eb3543928600ec2195af49ca58b16334972f6775663/grpcio-1.76.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:08caea849a9d3c71a542827d6df9d5a69067b0a1efbea8a855633ff5d9571465", size = 6412027, upload-time = "2025-10-21T16:20:59.3Z" }, + { url = "https://files.pythonhosted.org/packages/d7/64/7b9e6e7ab910bea9d46f2c090380bab274a0b91fb0a2fe9b0cd399fffa12/grpcio-1.76.0-cp311-cp311-manylinux2014_i686.manylinux_2_17_i686.whl", hash = "sha256:f0e34c2079d47ae9f6188211db9e777c619a21d4faba6977774e8fa43b085e48", size = 7075913, upload-time = "2025-10-21T16:21:01.645Z" }, + { url = "https://files.pythonhosted.org/packages/68/86/093c46e9546073cefa789bd76d44c5cb2abc824ca62af0c18be590ff13ba/grpcio-1.76.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:8843114c0cfce61b40ad48df65abcfc00d4dba82eae8718fab5352390848c5da", size = 6615417, upload-time = "2025-10-21T16:21:03.844Z" }, + { url = "https://files.pythonhosted.org/packages/f7/b6/5709a3a68500a9c03da6fb71740dcdd5ef245e39266461a03f31a57036d8/grpcio-1.76.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8eddfb4d203a237da6f3cc8a540dad0517d274b5a1e9e636fd8d2c79b5c1d397", size = 7199683, upload-time = "2025-10-21T16:21:06.195Z" }, + { url = "https://files.pythonhosted.org/packages/91/d3/4b1f2bf16ed52ce0b508161df3a2d186e4935379a159a834cb4a7d687429/grpcio-1.76.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:32483fe2aab2c3794101c2a159070584e5db11d0aa091b2c0ea9c4fc43d0d749", size = 8163109, upload-time = "2025-10-21T16:21:08.498Z" }, + { url = "https://files.pythonhosted.org/packages/5c/61/d9043f95f5f4cf085ac5dd6137b469d41befb04bd80280952ffa2a4c3f12/grpcio-1.76.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:dcfe41187da8992c5f40aa8c5ec086fa3672834d2be57a32384c08d5a05b4c00", size = 7626676, upload-time = "2025-10-21T16:21:10.693Z" }, + { url = "https://files.pythonhosted.org/packages/36/95/fd9a5152ca02d8881e4dd419cdd790e11805979f499a2e5b96488b85cf27/grpcio-1.76.0-cp311-cp311-win32.whl", hash = "sha256:2107b0c024d1b35f4083f11245c0e23846ae64d02f40b2b226684840260ed054", size = 3997688, upload-time = "2025-10-21T16:21:12.746Z" }, + { url = "https://files.pythonhosted.org/packages/60/9c/5c359c8d4c9176cfa3c61ecd4efe5affe1f38d9bae81e81ac7186b4c9cc8/grpcio-1.76.0-cp311-cp311-win_amd64.whl", hash = "sha256:522175aba7af9113c48ec10cc471b9b9bd4f6ceb36aeb4544a8e2c80ed9d252d", size = 4709315, upload-time = "2025-10-21T16:21:15.26Z" }, + { url = "https://files.pythonhosted.org/packages/bf/05/8e29121994b8d959ffa0afd28996d452f291b48cfc0875619de0bde2c50c/grpcio-1.76.0-cp312-cp312-linux_armv7l.whl", hash = "sha256:81fd9652b37b36f16138611c7e884eb82e0cec137c40d3ef7c3f9b3ed00f6ed8", size = 5799718, upload-time = "2025-10-21T16:21:17.939Z" }, + { url = "https://files.pythonhosted.org/packages/d9/75/11d0e66b3cdf998c996489581bdad8900db79ebd83513e45c19548f1cba4/grpcio-1.76.0-cp312-cp312-macosx_11_0_universal2.whl", hash = "sha256:04bbe1bfe3a68bbfd4e52402ab7d4eb59d72d02647ae2042204326cf4bbad280", size = 11825627, upload-time = "2025-10-21T16:21:20.466Z" }, + { url = "https://files.pythonhosted.org/packages/28/50/2f0aa0498bc188048f5d9504dcc5c2c24f2eb1a9337cd0fa09a61a2e75f0/grpcio-1.76.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:d388087771c837cdb6515539f43b9d4bf0b0f23593a24054ac16f7a960be16f4", size = 6359167, upload-time = "2025-10-21T16:21:23.122Z" }, + { url = "https://files.pythonhosted.org/packages/66/e5/bbf0bb97d29ede1d59d6588af40018cfc345b17ce979b7b45424628dc8bb/grpcio-1.76.0-cp312-cp312-manylinux2014_i686.manylinux_2_17_i686.whl", hash = "sha256:9f8f757bebaaea112c00dba718fc0d3260052ce714e25804a03f93f5d1c6cc11", size = 7044267, upload-time = "2025-10-21T16:21:25.995Z" }, + { url = "https://files.pythonhosted.org/packages/f5/86/f6ec2164f743d9609691115ae8ece098c76b894ebe4f7c94a655c6b03e98/grpcio-1.76.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:980a846182ce88c4f2f7e2c22c56aefd515daeb36149d1c897f83cf57999e0b6", size = 6573963, upload-time = "2025-10-21T16:21:28.631Z" }, + { url = "https://files.pythonhosted.org/packages/60/bc/8d9d0d8505feccfdf38a766d262c71e73639c165b311c9457208b56d92ae/grpcio-1.76.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:f92f88e6c033db65a5ae3d97905c8fea9c725b63e28d5a75cb73b49bda5024d8", size = 7164484, upload-time = "2025-10-21T16:21:30.837Z" }, + { url = "https://files.pythonhosted.org/packages/67/e6/5d6c2fc10b95edf6df9b8f19cf10a34263b7fd48493936fffd5085521292/grpcio-1.76.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:4baf3cbe2f0be3289eb68ac8ae771156971848bb8aaff60bad42005539431980", size = 8127777, upload-time = "2025-10-21T16:21:33.577Z" }, + { url = "https://files.pythonhosted.org/packages/3f/c8/dce8ff21c86abe025efe304d9e31fdb0deaaa3b502b6a78141080f206da0/grpcio-1.76.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:615ba64c208aaceb5ec83bfdce7728b80bfeb8be97562944836a7a0a9647d882", size = 7594014, upload-time = "2025-10-21T16:21:41.882Z" }, + { url = "https://files.pythonhosted.org/packages/e0/42/ad28191ebf983a5d0ecef90bab66baa5a6b18f2bfdef9d0a63b1973d9f75/grpcio-1.76.0-cp312-cp312-win32.whl", hash = "sha256:45d59a649a82df5718fd9527ce775fd66d1af35e6d31abdcdc906a49c6822958", size = 3984750, upload-time = "2025-10-21T16:21:44.006Z" }, + { url = "https://files.pythonhosted.org/packages/9e/00/7bd478cbb851c04a48baccaa49b75abaa8e4122f7d86da797500cccdd771/grpcio-1.76.0-cp312-cp312-win_amd64.whl", hash = "sha256:c088e7a90b6017307f423efbb9d1ba97a22aa2170876223f9709e9d1de0b5347", size = 4704003, upload-time = "2025-10-21T16:21:46.244Z" }, + { url = "https://files.pythonhosted.org/packages/fc/ed/71467ab770effc9e8cef5f2e7388beb2be26ed642d567697bb103a790c72/grpcio-1.76.0-cp313-cp313-linux_armv7l.whl", hash = "sha256:26ef06c73eb53267c2b319f43e6634c7556ea37672029241a056629af27c10e2", size = 5807716, upload-time = "2025-10-21T16:21:48.475Z" }, + { url = "https://files.pythonhosted.org/packages/2c/85/c6ed56f9817fab03fa8a111ca91469941fb514e3e3ce6d793cb8f1e1347b/grpcio-1.76.0-cp313-cp313-macosx_11_0_universal2.whl", hash = "sha256:45e0111e73f43f735d70786557dc38141185072d7ff8dc1829d6a77ac1471468", size = 11821522, upload-time = "2025-10-21T16:21:51.142Z" }, + { url = "https://files.pythonhosted.org/packages/ac/31/2b8a235ab40c39cbc141ef647f8a6eb7b0028f023015a4842933bc0d6831/grpcio-1.76.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:83d57312a58dcfe2a3a0f9d1389b299438909a02db60e2f2ea2ae2d8034909d3", size = 6362558, upload-time = "2025-10-21T16:21:54.213Z" }, + { url = "https://files.pythonhosted.org/packages/bd/64/9784eab483358e08847498ee56faf8ff6ea8e0a4592568d9f68edc97e9e9/grpcio-1.76.0-cp313-cp313-manylinux2014_i686.manylinux_2_17_i686.whl", hash = "sha256:3e2a27c89eb9ac3d81ec8835e12414d73536c6e620355d65102503064a4ed6eb", size = 7049990, upload-time = "2025-10-21T16:21:56.476Z" }, + { url = "https://files.pythonhosted.org/packages/2b/94/8c12319a6369434e7a184b987e8e9f3b49a114c489b8315f029e24de4837/grpcio-1.76.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:61f69297cba3950a524f61c7c8ee12e55c486cb5f7db47ff9dcee33da6f0d3ae", size = 6575387, upload-time = "2025-10-21T16:21:59.051Z" }, + { url = "https://files.pythonhosted.org/packages/15/0f/f12c32b03f731f4a6242f771f63039df182c8b8e2cf8075b245b409259d4/grpcio-1.76.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:6a15c17af8839b6801d554263c546c69c4d7718ad4321e3166175b37eaacca77", size = 7166668, upload-time = "2025-10-21T16:22:02.049Z" }, + { url = "https://files.pythonhosted.org/packages/ff/2d/3ec9ce0c2b1d92dd59d1c3264aaec9f0f7c817d6e8ac683b97198a36ed5a/grpcio-1.76.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:25a18e9810fbc7e7f03ec2516addc116a957f8cbb8cbc95ccc80faa072743d03", size = 8124928, upload-time = "2025-10-21T16:22:04.984Z" }, + { url = "https://files.pythonhosted.org/packages/1a/74/fd3317be5672f4856bcdd1a9e7b5e17554692d3db9a3b273879dc02d657d/grpcio-1.76.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:931091142fd8cc14edccc0845a79248bc155425eee9a98b2db2ea4f00a235a42", size = 7589983, upload-time = "2025-10-21T16:22:07.881Z" }, + { url = "https://files.pythonhosted.org/packages/45/bb/ca038cf420f405971f19821c8c15bcbc875505f6ffadafe9ffd77871dc4c/grpcio-1.76.0-cp313-cp313-win32.whl", hash = "sha256:5e8571632780e08526f118f74170ad8d50fb0a48c23a746bef2a6ebade3abd6f", size = 3984727, upload-time = "2025-10-21T16:22:10.032Z" }, + { url = "https://files.pythonhosted.org/packages/41/80/84087dc56437ced7cdd4b13d7875e7439a52a261e3ab4e06488ba6173b0a/grpcio-1.76.0-cp313-cp313-win_amd64.whl", hash = "sha256:f9f7bd5faab55f47231ad8dba7787866b69f5e93bc306e3915606779bbfb4ba8", size = 4702799, upload-time = "2025-10-21T16:22:12.709Z" }, + { url = "https://files.pythonhosted.org/packages/b4/46/39adac80de49d678e6e073b70204091e76631e03e94928b9ea4ecf0f6e0e/grpcio-1.76.0-cp314-cp314-linux_armv7l.whl", hash = "sha256:ff8a59ea85a1f2191a0ffcc61298c571bc566332f82e5f5be1b83c9d8e668a62", size = 5808417, upload-time = "2025-10-21T16:22:15.02Z" }, + { url = "https://files.pythonhosted.org/packages/9c/f5/a4531f7fb8b4e2a60b94e39d5d924469b7a6988176b3422487be61fe2998/grpcio-1.76.0-cp314-cp314-macosx_11_0_universal2.whl", hash = "sha256:06c3d6b076e7b593905d04fdba6a0525711b3466f43b3400266f04ff735de0cd", size = 11828219, upload-time = "2025-10-21T16:22:17.954Z" }, + { url = "https://files.pythonhosted.org/packages/4b/1c/de55d868ed7a8bd6acc6b1d6ddc4aa36d07a9f31d33c912c804adb1b971b/grpcio-1.76.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:fd5ef5932f6475c436c4a55e4336ebbe47bd3272be04964a03d316bbf4afbcbc", size = 6367826, upload-time = "2025-10-21T16:22:20.721Z" }, + { url = "https://files.pythonhosted.org/packages/59/64/99e44c02b5adb0ad13ab3adc89cb33cb54bfa90c74770f2607eea629b86f/grpcio-1.76.0-cp314-cp314-manylinux2014_i686.manylinux_2_17_i686.whl", hash = "sha256:b331680e46239e090f5b3cead313cc772f6caa7d0fc8de349337563125361a4a", size = 7049550, upload-time = "2025-10-21T16:22:23.637Z" }, + { url = "https://files.pythonhosted.org/packages/43/28/40a5be3f9a86949b83e7d6a2ad6011d993cbe9b6bd27bea881f61c7788b6/grpcio-1.76.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:2229ae655ec4e8999599469559e97630185fdd53ae1e8997d147b7c9b2b72cba", size = 6575564, upload-time = "2025-10-21T16:22:26.016Z" }, + { url = "https://files.pythonhosted.org/packages/4b/a9/1be18e6055b64467440208a8559afac243c66a8b904213af6f392dc2212f/grpcio-1.76.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:490fa6d203992c47c7b9e4a9d39003a0c2bcc1c9aa3c058730884bbbb0ee9f09", size = 7176236, upload-time = "2025-10-21T16:22:28.362Z" }, + { url = "https://files.pythonhosted.org/packages/0f/55/dba05d3fcc151ce6e81327541d2cc8394f442f6b350fead67401661bf041/grpcio-1.76.0-cp314-cp314-musllinux_1_2_i686.whl", hash = "sha256:479496325ce554792dba6548fae3df31a72cef7bad71ca2e12b0e58f9b336bfc", size = 8125795, upload-time = "2025-10-21T16:22:31.075Z" }, + { url = "https://files.pythonhosted.org/packages/4a/45/122df922d05655f63930cf42c9e3f72ba20aadb26c100ee105cad4ce4257/grpcio-1.76.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:1c9b93f79f48b03ada57ea24725d83a30284a012ec27eab2cf7e50a550cbbbcc", size = 7592214, upload-time = "2025-10-21T16:22:33.831Z" }, + { url = "https://files.pythonhosted.org/packages/4a/6e/0b899b7f6b66e5af39e377055fb4a6675c9ee28431df5708139df2e93233/grpcio-1.76.0-cp314-cp314-win32.whl", hash = "sha256:747fa73efa9b8b1488a95d0ba1039c8e2dca0f741612d80415b1e1c560febf4e", size = 4062961, upload-time = "2025-10-21T16:22:36.468Z" }, + { url = "https://files.pythonhosted.org/packages/19/41/0b430b01a2eb38ee887f88c1f07644a1df8e289353b78e82b37ef988fb64/grpcio-1.76.0-cp314-cp314-win_amd64.whl", hash = "sha256:922fa70ba549fce362d2e2871ab542082d66e2aaf0c19480ea453905b01f384e", size = 4834462, upload-time = "2025-10-21T16:22:39.772Z" }, ] [[package]] name = "gto" -version = "1.7.2" +version = "1.9.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "entrypoints" }, { name = "funcy" }, { name = "pydantic" }, + { name = "pydantic-settings" }, { name = "rich", version = "13.9.4", source = { registry = "https://pypi.org/simple" }, marker = "(extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "rich", version = "14.0.0", source = { registry = "https://pypi.org/simple" }, marker = "(extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb')" }, + { name = "rich", version = "14.2.0", source = { registry = "https://pypi.org/simple" }, marker = "(extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb')" }, { name = "ruamel-yaml" }, { name = "scmrepo" }, { name = "semver" }, { name = "tabulate" }, { name = "typer" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/d6/ea/ea6267da29ac54a53944106e46337e3e8e43eaa24bb6b7cf5da18043758c/gto-1.7.2.tar.gz", hash = "sha256:98994f43d02ef6d4e77c4087b1c0c70a038e4a753a5583c23116246d33b89742", size = 58824, upload-time = "2024-12-01T20:53:33.128Z" } +sdist = { url = "https://files.pythonhosted.org/packages/8a/06/d2ec91a6c1e6b1a55c419e8599df7ac3430323a1bb1e5c01a1f83f8ecb64/gto-1.9.0.tar.gz", hash = "sha256:3beb5c652a98585ad083dbb6879a580ffe926271661d9b7a50e428cd591005ea", size = 58999, upload-time = "2025-10-08T17:05:28.568Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/99/b3/6c4d96d931d09b5fd7b47ac81999360fa807e1607b8328e49bb1e50c65ae/gto-1.7.2-py3-none-any.whl", hash = "sha256:c893e5cf35ef0ffe22d342498f25c85b38f2cc507500e41b5e00d254feda1c1c", size = 45227, upload-time = "2024-12-01T20:53:31.488Z" }, + { url = "https://files.pythonhosted.org/packages/8f/b3/6086ab9cfd4a27517a1269e8b7c48621beb79ccc0affd2485b9747976bfe/gto-1.9.0-py3-none-any.whl", hash = "sha256:e94371a67c25256f973722c5891e551ca3cd8cc25864dcf468f2b16e6bcca6b8", size = 45038, upload-time = "2025-10-08T17:05:26.947Z" }, ] [[package]] @@ -3862,68 +3392,124 @@ wheels = [ [[package]] name = "h5py" -version = "3.14.0" +version = "3.15.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'extra-5-mlipx-grace') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "numpy", version = "2.1.3", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform != 'linux' or extra == 'extra-5-mlipx-fairchem' or extra != 'extra-5-mlipx-grace' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/4d/6a/0d79de0b025aa85dc8864de8e97659c94cf3d23148394a954dc5ca52f8c8/h5py-3.15.1.tar.gz", hash = "sha256:c86e3ed45c4473564de55aa83b6fc9e5ead86578773dfbd93047380042e26b69", size = 426236, upload-time = "2025-10-16T10:35:27.404Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/41/fd/8349b48b15b47768042cff06ad6e1c229f0a4bd89225bf6b6894fea27e6d/h5py-3.15.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:5aaa330bcbf2830150c50897ea5dcbed30b5b6d56897289846ac5b9e529ec243", size = 3434135, upload-time = "2025-10-16T10:33:47.954Z" }, + { url = "https://files.pythonhosted.org/packages/c1/b0/1c628e26a0b95858f54aba17e1599e7f6cd241727596cc2580b72cb0a9bf/h5py-3.15.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:c970fb80001fffabb0109eaf95116c8e7c0d3ca2de854e0901e8a04c1f098509", size = 2870958, upload-time = "2025-10-16T10:33:50.907Z" }, + { url = "https://files.pythonhosted.org/packages/f9/e3/c255cafc9b85e6ea04e2ad1bba1416baa1d7f57fc98a214be1144087690c/h5py-3.15.1-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:80e5bb5b9508d5d9da09f81fd00abbb3f85da8143e56b1585d59bc8ceb1dba8b", size = 4504770, upload-time = "2025-10-16T10:33:54.357Z" }, + { url = "https://files.pythonhosted.org/packages/8b/23/4ab1108e87851ccc69694b03b817d92e142966a6c4abd99e17db77f2c066/h5py-3.15.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:5b849ba619a066196169763c33f9f0f02e381156d61c03e000bb0100f9950faf", size = 4700329, upload-time = "2025-10-16T10:33:57.616Z" }, + { url = "https://files.pythonhosted.org/packages/a4/e4/932a3a8516e4e475b90969bf250b1924dbe3612a02b897e426613aed68f4/h5py-3.15.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:e7f6c841efd4e6e5b7e82222eaf90819927b6d256ab0f3aca29675601f654f3c", size = 4152456, upload-time = "2025-10-16T10:34:00.843Z" }, + { url = "https://files.pythonhosted.org/packages/2a/0a/f74d589883b13737021b2049ac796328f188dbb60c2ed35b101f5b95a3fc/h5py-3.15.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:ca8a3a22458956ee7b40d8e39c9a9dc01f82933e4c030c964f8b875592f4d831", size = 4617295, upload-time = "2025-10-16T10:34:04.154Z" }, + { url = "https://files.pythonhosted.org/packages/23/95/499b4e56452ef8b6c95a271af0dde08dac4ddb70515a75f346d4f400579b/h5py-3.15.1-cp311-cp311-win_amd64.whl", hash = "sha256:550e51131376889656feec4aff2170efc054a7fe79eb1da3bb92e1625d1ac878", size = 2882129, upload-time = "2025-10-16T10:34:06.886Z" }, + { url = "https://files.pythonhosted.org/packages/ce/bb/cfcc70b8a42222ba3ad4478bcef1791181ea908e2adbd7d53c66395edad5/h5py-3.15.1-cp311-cp311-win_arm64.whl", hash = "sha256:b39239947cb36a819147fc19e86b618dcb0953d1cd969f5ed71fc0de60392427", size = 2477121, upload-time = "2025-10-16T10:34:09.579Z" }, + { url = "https://files.pythonhosted.org/packages/62/b8/c0d9aa013ecfa8b7057946c080c0c07f6fa41e231d2e9bd306a2f8110bdc/h5py-3.15.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:316dd0f119734f324ca7ed10b5627a2de4ea42cc4dfbcedbee026aaa361c238c", size = 3399089, upload-time = "2025-10-16T10:34:12.135Z" }, + { url = "https://files.pythonhosted.org/packages/a4/5e/3c6f6e0430813c7aefe784d00c6711166f46225f5d229546eb53032c3707/h5py-3.15.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:b51469890e58e85d5242e43aab29f5e9c7e526b951caab354f3ded4ac88e7b76", size = 2847803, upload-time = "2025-10-16T10:34:14.564Z" }, + { url = "https://files.pythonhosted.org/packages/00/69/ba36273b888a4a48d78f9268d2aee05787e4438557450a8442946ab8f3ec/h5py-3.15.1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:8a33bfd5dfcea037196f7778534b1ff7e36a7f40a89e648c8f2967292eb6898e", size = 4914884, upload-time = "2025-10-16T10:34:18.452Z" }, + { url = "https://files.pythonhosted.org/packages/3a/30/d1c94066343a98bb2cea40120873193a4fed68c4ad7f8935c11caf74c681/h5py-3.15.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:25c8843fec43b2cc368aa15afa1cdf83fc5e17b1c4e10cd3771ef6c39b72e5ce", size = 5109965, upload-time = "2025-10-16T10:34:21.853Z" }, + { url = "https://files.pythonhosted.org/packages/81/3d/d28172116eafc3bc9f5991b3cb3fd2c8a95f5984f50880adfdf991de9087/h5py-3.15.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:a308fd8681a864c04423c0324527237a0484e2611e3441f8089fd00ed56a8171", size = 4561870, upload-time = "2025-10-16T10:34:26.69Z" }, + { url = "https://files.pythonhosted.org/packages/a5/83/393a7226024238b0f51965a7156004eaae1fcf84aa4bfecf7e582676271b/h5py-3.15.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:f4a016df3f4a8a14d573b496e4d1964deb380e26031fc85fb40e417e9131888a", size = 5037161, upload-time = "2025-10-16T10:34:30.383Z" }, + { url = "https://files.pythonhosted.org/packages/cf/51/329e7436bf87ca6b0fe06dd0a3795c34bebe4ed8d6c44450a20565d57832/h5py-3.15.1-cp312-cp312-win_amd64.whl", hash = "sha256:59b25cf02411bf12e14f803fef0b80886444c7fe21a5ad17c6a28d3f08098a1e", size = 2874165, upload-time = "2025-10-16T10:34:33.461Z" }, + { url = "https://files.pythonhosted.org/packages/09/a8/2d02b10a66747c54446e932171dd89b8b4126c0111b440e6bc05a7c852ec/h5py-3.15.1-cp312-cp312-win_arm64.whl", hash = "sha256:61d5a58a9851e01ee61c932bbbb1c98fe20aba0a5674776600fb9a361c0aa652", size = 2458214, upload-time = "2025-10-16T10:34:35.733Z" }, + { url = "https://files.pythonhosted.org/packages/88/b3/40207e0192415cbff7ea1d37b9f24b33f6d38a5a2f5d18a678de78f967ae/h5py-3.15.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:c8440fd8bee9500c235ecb7aa1917a0389a2adb80c209fa1cc485bd70e0d94a5", size = 3376511, upload-time = "2025-10-16T10:34:38.596Z" }, + { url = "https://files.pythonhosted.org/packages/31/96/ba99a003c763998035b0de4c299598125df5fc6c9ccf834f152ddd60e0fb/h5py-3.15.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:ab2219dbc6fcdb6932f76b548e2b16f34a1f52b7666e998157a4dfc02e2c4123", size = 2826143, upload-time = "2025-10-16T10:34:41.342Z" }, + { url = "https://files.pythonhosted.org/packages/6a/c2/fc6375d07ea3962df7afad7d863fe4bde18bb88530678c20d4c90c18de1d/h5py-3.15.1-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d8cb02c3a96255149ed3ac811eeea25b655d959c6dd5ce702c9a95ff11859eb5", size = 4908316, upload-time = "2025-10-16T10:34:44.619Z" }, + { url = "https://files.pythonhosted.org/packages/d9/69/4402ea66272dacc10b298cca18ed73e1c0791ff2ae9ed218d3859f9698ac/h5py-3.15.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:121b2b7a4c1915d63737483b7bff14ef253020f617c2fb2811f67a4bed9ac5e8", size = 5103710, upload-time = "2025-10-16T10:34:48.639Z" }, + { url = "https://files.pythonhosted.org/packages/e0/f6/11f1e2432d57d71322c02a97a5567829a75f223a8c821764a0e71a65cde8/h5py-3.15.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:59b0d63b318bf3cc06687def2b45afd75926bbc006f7b8cd2b1a231299fc8599", size = 4556042, upload-time = "2025-10-16T10:34:51.841Z" }, + { url = "https://files.pythonhosted.org/packages/18/88/3eda3ef16bfe7a7dbc3d8d6836bbaa7986feb5ff091395e140dc13927bcc/h5py-3.15.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:e02fe77a03f652500d8bff288cbf3675f742fc0411f5a628fa37116507dc7cc0", size = 5030639, upload-time = "2025-10-16T10:34:55.257Z" }, + { url = "https://files.pythonhosted.org/packages/e5/ea/fbb258a98863f99befb10ed727152b4ae659f322e1d9c0576f8a62754e81/h5py-3.15.1-cp313-cp313-win_amd64.whl", hash = "sha256:dea78b092fd80a083563ed79a3171258d4a4d307492e7cf8b2313d464c82ba52", size = 2864363, upload-time = "2025-10-16T10:34:58.099Z" }, + { url = "https://files.pythonhosted.org/packages/5d/c9/35021cc9cd2b2915a7da3026e3d77a05bed1144a414ff840953b33937fb9/h5py-3.15.1-cp313-cp313-win_arm64.whl", hash = "sha256:c256254a8a81e2bddc0d376e23e2a6d2dc8a1e8a2261835ed8c1281a0744cd97", size = 2449570, upload-time = "2025-10-16T10:35:00.473Z" }, + { url = "https://files.pythonhosted.org/packages/a0/2c/926eba1514e4d2e47d0e9eb16c784e717d8b066398ccfca9b283917b1bfb/h5py-3.15.1-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:5f4fb0567eb8517c3ecd6b3c02c4f4e9da220c8932604960fd04e24ee1254763", size = 3380368, upload-time = "2025-10-16T10:35:03.117Z" }, + { url = "https://files.pythonhosted.org/packages/65/4b/d715ed454d3baa5f6ae1d30b7eca4c7a1c1084f6a2edead9e801a1541d62/h5py-3.15.1-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:954e480433e82d3872503104f9b285d369048c3a788b2b1a00e53d1c47c98dd2", size = 2833793, upload-time = "2025-10-16T10:35:05.623Z" }, + { url = "https://files.pythonhosted.org/packages/ef/d4/ef386c28e4579314610a8bffebbee3b69295b0237bc967340b7c653c6c10/h5py-3.15.1-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:fd125c131889ebbef0849f4a0e29cf363b48aba42f228d08b4079913b576bb3a", size = 4903199, upload-time = "2025-10-16T10:35:08.972Z" }, + { url = "https://files.pythonhosted.org/packages/33/5d/65c619e195e0b5e54ea5a95c1bb600c8ff8715e0d09676e4cce56d89f492/h5py-3.15.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:28a20e1a4082a479b3d7db2169f3a5034af010b90842e75ebbf2e9e49eb4183e", size = 5097224, upload-time = "2025-10-16T10:35:12.808Z" }, + { url = "https://files.pythonhosted.org/packages/30/30/5273218400bf2da01609e1292f562c94b461fcb73c7a9e27fdadd43abc0a/h5py-3.15.1-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:fa8df5267f545b4946df8ca0d93d23382191018e4cda2deda4c2cedf9a010e13", size = 4551207, upload-time = "2025-10-16T10:35:16.24Z" }, + { url = "https://files.pythonhosted.org/packages/d3/39/a7ef948ddf4d1c556b0b2b9559534777bccc318543b3f5a1efdf6b556c9c/h5py-3.15.1-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:99d374a21f7321a4c6ab327c4ab23bd925ad69821aeb53a1e75dd809d19f67fa", size = 5025426, upload-time = "2025-10-16T10:35:19.831Z" }, + { url = "https://files.pythonhosted.org/packages/b6/d8/7368679b8df6925b8415f9dcc9ab1dab01ddc384d2b2c24aac9191bd9ceb/h5py-3.15.1-cp314-cp314-win_amd64.whl", hash = "sha256:9c73d1d7cdb97d5b17ae385153472ce118bed607e43be11e9a9deefaa54e0734", size = 2865704, upload-time = "2025-10-16T10:35:22.658Z" }, + { url = "https://files.pythonhosted.org/packages/d3/b7/4a806f85d62c20157e62e58e03b27513dc9c55499768530acc4f4c5ce4be/h5py-3.15.1-cp314-cp314-win_arm64.whl", hash = "sha256:a6d8c5a05a76aca9a494b4c53ce8a9c29023b7f64f625c6ce1841e92a362ccdf", size = 2465544, upload-time = "2025-10-16T10:35:25.695Z" }, +] + +[[package]] +name = "hf-xet" +version = "1.2.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/5e/6e/0f11bacf08a67f7fb5ee09740f2ca54163863b07b70d579356e9222ce5d8/hf_xet-1.2.0.tar.gz", hash = "sha256:a8c27070ca547293b6890c4bf389f713f80e8c478631432962bb7f4bc0bd7d7f", size = 506020, upload-time = "2025-10-24T19:04:32.129Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9e/a5/85ef910a0aa034a2abcfadc360ab5ac6f6bc4e9112349bd40ca97551cff0/hf_xet-1.2.0-cp313-cp313t-macosx_10_12_x86_64.whl", hash = "sha256:ceeefcd1b7aed4956ae8499e2199607765fbd1c60510752003b6cc0b8413b649", size = 2861870, upload-time = "2025-10-24T19:04:11.422Z" }, + { url = "https://files.pythonhosted.org/packages/ea/40/e2e0a7eb9a51fe8828ba2d47fe22a7e74914ea8a0db68a18c3aa7449c767/hf_xet-1.2.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:b70218dd548e9840224df5638fdc94bd033552963cfa97f9170829381179c813", size = 2717584, upload-time = "2025-10-24T19:04:09.586Z" }, + { url = "https://files.pythonhosted.org/packages/a5/7d/daf7f8bc4594fdd59a8a596f9e3886133fdc68e675292218a5e4c1b7e834/hf_xet-1.2.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7d40b18769bb9a8bc82a9ede575ce1a44c75eb80e7375a01d76259089529b5dc", size = 3315004, upload-time = "2025-10-24T19:04:00.314Z" }, + { url = "https://files.pythonhosted.org/packages/b1/ba/45ea2f605fbf6d81c8b21e4d970b168b18a53515923010c312c06cd83164/hf_xet-1.2.0-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:cd3a6027d59cfb60177c12d6424e31f4b5ff13d8e3a1247b3a584bf8977e6df5", size = 3222636, upload-time = "2025-10-24T19:03:58.111Z" }, + { url = "https://files.pythonhosted.org/packages/4a/1d/04513e3cab8f29ab8c109d309ddd21a2705afab9d52f2ba1151e0c14f086/hf_xet-1.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6de1fc44f58f6dd937956c8d304d8c2dea264c80680bcfa61ca4a15e7b76780f", size = 3408448, upload-time = "2025-10-24T19:04:20.951Z" }, + { url = "https://files.pythonhosted.org/packages/f0/7c/60a2756d7feec7387db3a1176c632357632fbe7849fce576c5559d4520c7/hf_xet-1.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:f182f264ed2acd566c514e45da9f2119110e48a87a327ca271027904c70c5832", size = 3503401, upload-time = "2025-10-24T19:04:22.549Z" }, + { url = "https://files.pythonhosted.org/packages/4e/64/48fffbd67fb418ab07451e4ce641a70de1c40c10a13e25325e24858ebe5a/hf_xet-1.2.0-cp313-cp313t-win_amd64.whl", hash = "sha256:293a7a3787e5c95d7be1857358a9130694a9c6021de3f27fa233f37267174382", size = 2900866, upload-time = "2025-10-24T19:04:33.461Z" }, + { url = "https://files.pythonhosted.org/packages/e2/51/f7e2caae42f80af886db414d4e9885fac959330509089f97cccb339c6b87/hf_xet-1.2.0-cp314-cp314t-macosx_10_12_x86_64.whl", hash = "sha256:10bfab528b968c70e062607f663e21e34e2bba349e8038db546646875495179e", size = 2861861, upload-time = "2025-10-24T19:04:19.01Z" }, + { url = "https://files.pythonhosted.org/packages/6e/1d/a641a88b69994f9371bd347f1dd35e5d1e2e2460a2e350c8d5165fc62005/hf_xet-1.2.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:2a212e842647b02eb6a911187dc878e79c4aa0aa397e88dd3b26761676e8c1f8", size = 2717699, upload-time = "2025-10-24T19:04:17.306Z" }, + { url = "https://files.pythonhosted.org/packages/df/e0/e5e9bba7d15f0318955f7ec3f4af13f92e773fbb368c0b8008a5acbcb12f/hf_xet-1.2.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:30e06daccb3a7d4c065f34fc26c14c74f4653069bb2b194e7f18f17cbe9939c0", size = 3314885, upload-time = "2025-10-24T19:04:07.642Z" }, + { url = "https://files.pythonhosted.org/packages/21/90/b7fe5ff6f2b7b8cbdf1bd56145f863c90a5807d9758a549bf3d916aa4dec/hf_xet-1.2.0-cp314-cp314t-manylinux_2_28_aarch64.whl", hash = "sha256:29c8fc913a529ec0a91867ce3d119ac1aac966e098cf49501800c870328cc090", size = 3221550, upload-time = "2025-10-24T19:04:05.55Z" }, + { url = "https://files.pythonhosted.org/packages/6f/cb/73f276f0a7ce46cc6a6ec7d6c7d61cbfe5f2e107123d9bbd0193c355f106/hf_xet-1.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:66e159cbfcfbb29f920db2c09ed8b660eb894640d284f102ada929b6e3dc410a", size = 3408010, upload-time = "2025-10-24T19:04:28.598Z" }, + { url = "https://files.pythonhosted.org/packages/b8/1e/d642a12caa78171f4be64f7cd9c40e3ca5279d055d0873188a58c0f5fbb9/hf_xet-1.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:9c91d5ae931510107f148874e9e2de8a16052b6f1b3ca3c1b12f15ccb491390f", size = 3503264, upload-time = "2025-10-24T19:04:30.397Z" }, + { url = "https://files.pythonhosted.org/packages/17/b5/33764714923fa1ff922770f7ed18c2daae034d21ae6e10dbf4347c854154/hf_xet-1.2.0-cp314-cp314t-win_amd64.whl", hash = "sha256:210d577732b519ac6ede149d2f2f34049d44e8622bf14eb3d63bbcd2d4b332dc", size = 2901071, upload-time = "2025-10-24T19:04:37.463Z" }, + { url = "https://files.pythonhosted.org/packages/96/2d/22338486473df5923a9ab7107d375dbef9173c338ebef5098ef593d2b560/hf_xet-1.2.0-cp37-abi3-macosx_10_12_x86_64.whl", hash = "sha256:46740d4ac024a7ca9b22bebf77460ff43332868b661186a8e46c227fdae01848", size = 2866099, upload-time = "2025-10-24T19:04:15.366Z" }, + { url = "https://files.pythonhosted.org/packages/7f/8c/c5becfa53234299bc2210ba314eaaae36c2875e0045809b82e40a9544f0c/hf_xet-1.2.0-cp37-abi3-macosx_11_0_arm64.whl", hash = "sha256:27df617a076420d8845bea087f59303da8be17ed7ec0cd7ee3b9b9f579dff0e4", size = 2722178, upload-time = "2025-10-24T19:04:13.695Z" }, + { url = "https://files.pythonhosted.org/packages/9a/92/cf3ab0b652b082e66876d08da57fcc6fa2f0e6c70dfbbafbd470bb73eb47/hf_xet-1.2.0-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3651fd5bfe0281951b988c0facbe726aa5e347b103a675f49a3fa8144c7968fd", size = 3320214, upload-time = "2025-10-24T19:04:03.596Z" }, + { url = "https://files.pythonhosted.org/packages/46/92/3f7ec4a1b6a65bf45b059b6d4a5d38988f63e193056de2f420137e3c3244/hf_xet-1.2.0-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:d06fa97c8562fb3ee7a378dd9b51e343bc5bc8190254202c9771029152f5e08c", size = 3229054, upload-time = "2025-10-24T19:04:01.949Z" }, + { url = "https://files.pythonhosted.org/packages/0b/dd/7ac658d54b9fb7999a0ccb07ad863b413cbaf5cf172f48ebcd9497ec7263/hf_xet-1.2.0-cp37-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:4c1428c9ae73ec0939410ec73023c4f842927f39db09b063b9482dac5a3bb737", size = 3413812, upload-time = "2025-10-24T19:04:24.585Z" }, + { url = "https://files.pythonhosted.org/packages/92/68/89ac4e5b12a9ff6286a12174c8538a5930e2ed662091dd2572bbe0a18c8a/hf_xet-1.2.0-cp37-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:a55558084c16b09b5ed32ab9ed38421e2d87cf3f1f89815764d1177081b99865", size = 3508920, upload-time = "2025-10-24T19:04:26.927Z" }, + { url = "https://files.pythonhosted.org/packages/cb/44/870d44b30e1dcfb6a65932e3e1506c103a8a5aea9103c337e7a53180322c/hf_xet-1.2.0-cp37-abi3-win_amd64.whl", hash = "sha256:e6584a52253f72c9f52f9e549d5895ca7a471608495c4ecaa6cc73dba2b24d69", size = 2905735, upload-time = "2025-10-24T19:04:35.928Z" }, +] + +[[package]] +name = "httpcore" +version = "1.0.9" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-5-mlipx-grace' or extra == 'extra-5-mlipx-matpes' or extra == 'extra-5-mlipx-mattersim' or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-5-mlipx-fairchem' or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/5d/57/dfb3c5c3f1bf5f5ef2e59a22dec4ff1f3d7408b55bfcefcfb0ea69ef21c6/h5py-3.14.0.tar.gz", hash = "sha256:2372116b2e0d5d3e5e705b7f663f7c8d96fa79a4052d250484ef91d24d6a08f4", size = 424323, upload-time = "2025-06-06T14:06:15.01Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/52/89/06cbb421e01dea2e338b3154326523c05d9698f89a01f9d9b65e1ec3fb18/h5py-3.14.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:24df6b2622f426857bda88683b16630014588a0e4155cba44e872eb011c4eaed", size = 3332522, upload-time = "2025-06-06T14:04:13.775Z" }, - { url = "https://files.pythonhosted.org/packages/c3/e7/6c860b002329e408348735bfd0459e7b12f712c83d357abeef3ef404eaa9/h5py-3.14.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:6ff2389961ee5872de697054dd5a033b04284afc3fb52dc51d94561ece2c10c6", size = 2831051, upload-time = "2025-06-06T14:04:18.206Z" }, - { url = "https://files.pythonhosted.org/packages/fa/cd/3dd38cdb7cc9266dc4d85f27f0261680cb62f553f1523167ad7454e32b11/h5py-3.14.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:016e89d3be4c44f8d5e115fab60548e518ecd9efe9fa5c5324505a90773e6f03", size = 4324677, upload-time = "2025-06-06T14:04:23.438Z" }, - { url = "https://files.pythonhosted.org/packages/b1/45/e1a754dc7cd465ba35e438e28557119221ac89b20aaebef48282654e3dc7/h5py-3.14.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1223b902ef0b5d90bcc8a4778218d6d6cd0f5561861611eda59fa6c52b922f4d", size = 4557272, upload-time = "2025-06-06T14:04:28.863Z" }, - { url = "https://files.pythonhosted.org/packages/5c/06/f9506c1531645829d302c420851b78bb717af808dde11212c113585fae42/h5py-3.14.0-cp310-cp310-win_amd64.whl", hash = "sha256:852b81f71df4bb9e27d407b43071d1da330d6a7094a588efa50ef02553fa7ce4", size = 2866734, upload-time = "2025-06-06T14:04:33.5Z" }, - { url = "https://files.pythonhosted.org/packages/61/1b/ad24a8ce846cf0519695c10491e99969d9d203b9632c4fcd5004b1641c2e/h5py-3.14.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:f30dbc58f2a0efeec6c8836c97f6c94afd769023f44e2bb0ed7b17a16ec46088", size = 3352382, upload-time = "2025-06-06T14:04:37.95Z" }, - { url = "https://files.pythonhosted.org/packages/36/5b/a066e459ca48b47cc73a5c668e9924d9619da9e3c500d9fb9c29c03858ec/h5py-3.14.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:543877d7f3d8f8a9828ed5df6a0b78ca3d8846244b9702e99ed0d53610b583a8", size = 2852492, upload-time = "2025-06-06T14:04:42.092Z" }, - { url = "https://files.pythonhosted.org/packages/08/0c/5e6aaf221557314bc15ba0e0da92e40b24af97ab162076c8ae009320a42b/h5py-3.14.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8c497600c0496548810047257e36360ff551df8b59156d3a4181072eed47d8ad", size = 4298002, upload-time = "2025-06-06T14:04:47.106Z" }, - { url = "https://files.pythonhosted.org/packages/21/d4/d461649cafd5137088fb7f8e78fdc6621bb0c4ff2c090a389f68e8edc136/h5py-3.14.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:723a40ee6505bd354bfd26385f2dae7bbfa87655f4e61bab175a49d72ebfc06b", size = 4516618, upload-time = "2025-06-06T14:04:52.467Z" }, - { url = "https://files.pythonhosted.org/packages/db/0c/6c3f879a0f8e891625817637fad902da6e764e36919ed091dc77529004ac/h5py-3.14.0-cp311-cp311-win_amd64.whl", hash = "sha256:d2744b520440a996f2dae97f901caa8a953afc055db4673a993f2d87d7f38713", size = 2874888, upload-time = "2025-06-06T14:04:56.95Z" }, - { url = "https://files.pythonhosted.org/packages/3e/77/8f651053c1843391e38a189ccf50df7e261ef8cd8bfd8baba0cbe694f7c3/h5py-3.14.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:e0045115d83272090b0717c555a31398c2c089b87d212ceba800d3dc5d952e23", size = 3312740, upload-time = "2025-06-06T14:05:01.193Z" }, - { url = "https://files.pythonhosted.org/packages/ff/10/20436a6cf419b31124e59fefc78d74cb061ccb22213226a583928a65d715/h5py-3.14.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:6da62509b7e1d71a7d110478aa25d245dd32c8d9a1daee9d2a42dba8717b047a", size = 2829207, upload-time = "2025-06-06T14:05:05.061Z" }, - { url = "https://files.pythonhosted.org/packages/3f/19/c8bfe8543bfdd7ccfafd46d8cfd96fce53d6c33e9c7921f375530ee1d39a/h5py-3.14.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:554ef0ced3571366d4d383427c00c966c360e178b5fb5ee5bb31a435c424db0c", size = 4708455, upload-time = "2025-06-06T14:05:11.528Z" }, - { url = "https://files.pythonhosted.org/packages/86/f9/f00de11c82c88bfc1ef22633557bfba9e271e0cb3189ad704183fc4a2644/h5py-3.14.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0cbd41f4e3761f150aa5b662df991868ca533872c95467216f2bec5fcad84882", size = 4929422, upload-time = "2025-06-06T14:05:18.399Z" }, - { url = "https://files.pythonhosted.org/packages/7a/6d/6426d5d456f593c94b96fa942a9b3988ce4d65ebaf57d7273e452a7222e8/h5py-3.14.0-cp312-cp312-win_amd64.whl", hash = "sha256:bf4897d67e613ecf5bdfbdab39a1158a64df105827da70ea1d90243d796d367f", size = 2862845, upload-time = "2025-06-06T14:05:23.699Z" }, - { url = "https://files.pythonhosted.org/packages/6c/c2/7efe82d09ca10afd77cd7c286e42342d520c049a8c43650194928bcc635c/h5py-3.14.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:aa4b7bbce683379b7bf80aaba68e17e23396100336a8d500206520052be2f812", size = 3289245, upload-time = "2025-06-06T14:05:28.24Z" }, - { url = "https://files.pythonhosted.org/packages/4f/31/f570fab1239b0d9441024b92b6ad03bb414ffa69101a985e4c83d37608bd/h5py-3.14.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:ef9603a501a04fcd0ba28dd8f0995303d26a77a980a1f9474b3417543d4c6174", size = 2807335, upload-time = "2025-06-06T14:05:31.997Z" }, - { url = "https://files.pythonhosted.org/packages/0d/ce/3a21d87896bc7e3e9255e0ad5583ae31ae9e6b4b00e0bcb2a67e2b6acdbc/h5py-3.14.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e8cbaf6910fa3983c46172666b0b8da7b7bd90d764399ca983236f2400436eeb", size = 4700675, upload-time = "2025-06-06T14:05:37.38Z" }, - { url = "https://files.pythonhosted.org/packages/e7/ec/86f59025306dcc6deee5fda54d980d077075b8d9889aac80f158bd585f1b/h5py-3.14.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d90e6445ab7c146d7f7981b11895d70bc1dd91278a4f9f9028bc0c95e4a53f13", size = 4921632, upload-time = "2025-06-06T14:05:43.464Z" }, - { url = "https://files.pythonhosted.org/packages/3f/6d/0084ed0b78d4fd3e7530c32491f2884140d9b06365dac8a08de726421d4a/h5py-3.14.0-cp313-cp313-win_amd64.whl", hash = "sha256:ae18e3de237a7a830adb76aaa68ad438d85fe6e19e0d99944a3ce46b772c69b3", size = 2852929, upload-time = "2025-06-06T14:05:47.659Z" }, + { name = "certifi" }, + { name = "h11" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/06/94/82699a10bca87a5556c9c59b5963f2d039dbd239f25bc2a63907a05a14cb/httpcore-1.0.9.tar.gz", hash = "sha256:6e34463af53fd2ab5d807f399a9b45ea31c3dfa2276f15a2c3f00afff6e176e8", size = 85484, upload-time = "2025-04-24T22:06:22.219Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7e/f5/f66802a942d491edb555dd61e3a9961140fd64c90bce1eafd741609d334d/httpcore-1.0.9-py3-none-any.whl", hash = "sha256:2d400746a40668fc9dec9810239072b40b4484b640a8c38fd654a024c7a1bf55", size = 78784, upload-time = "2025-04-24T22:06:20.566Z" }, ] [[package]] -name = "hf-xet" -version = "1.1.3" +name = "httpx" +version = "0.28.1" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/75/dc/dc091aeeb671e71cbec30e84963f9c0202c17337b24b0a800e7d205543e8/hf_xet-1.1.3.tar.gz", hash = "sha256:a5f09b1dd24e6ff6bcedb4b0ddab2d81824098bb002cf8b4ffa780545fa348c3", size = 488127, upload-time = "2025-06-04T00:47:27.456Z" } +dependencies = [ + { name = "anyio" }, + { name = "certifi" }, + { name = "httpcore" }, + { name = "idna" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/b1/df/48c586a5fe32a0f01324ee087459e112ebb7224f646c0b5023f5e79e9956/httpx-0.28.1.tar.gz", hash = "sha256:75e98c5f16b0f35b567856f597f06ff2270a374470a5c2392242528e3e3e42fc", size = 141406, upload-time = "2024-12-06T15:37:23.222Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/9b/1f/bc01a4c0894973adebbcd4aa338a06815c76333ebb3921d94dcbd40dae6a/hf_xet-1.1.3-cp37-abi3-macosx_10_12_x86_64.whl", hash = "sha256:c3b508b5f583a75641aebf732853deb058953370ce8184f5dabc49f803b0819b", size = 2256929, upload-time = "2025-06-04T00:47:21.206Z" }, - { url = "https://files.pythonhosted.org/packages/78/07/6ef50851b5c6b45b77a6e018fa299c69a2db3b8bbd0d5af594c0238b1ceb/hf_xet-1.1.3-cp37-abi3-macosx_11_0_arm64.whl", hash = "sha256:b788a61977fbe6b5186e66239e2a329a3f0b7e7ff50dad38984c0c74f44aeca1", size = 2153719, upload-time = "2025-06-04T00:47:19.302Z" }, - { url = "https://files.pythonhosted.org/packages/52/48/e929e6e3db6e4758c2adf0f2ca2c59287f1b76229d8bdc1a4c9cfc05212e/hf_xet-1.1.3-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fd2da210856444a34aad8ada2fc12f70dabed7cc20f37e90754d1d9b43bc0534", size = 4820519, upload-time = "2025-06-04T00:47:17.244Z" }, - { url = "https://files.pythonhosted.org/packages/28/2e/03f89c5014a5aafaa9b150655f811798a317036646623bdaace25f485ae8/hf_xet-1.1.3-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:8203f52827e3df65981984936654a5b390566336956f65765a8aa58c362bb841", size = 4964121, upload-time = "2025-06-04T00:47:15.17Z" }, - { url = "https://files.pythonhosted.org/packages/47/8b/5cd399a92b47d98086f55fc72d69bc9ea5e5c6f27a9ed3e0cdd6be4e58a3/hf_xet-1.1.3-cp37-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:30c575a5306f8e6fda37edb866762140a435037365eba7a17ce7bd0bc0216a8b", size = 5283017, upload-time = "2025-06-04T00:47:23.239Z" }, - { url = "https://files.pythonhosted.org/packages/53/e3/2fcec58d2fcfd25ff07feb876f466cfa11f8dcf9d3b742c07fe9dd51ee0a/hf_xet-1.1.3-cp37-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:7c1a6aa6abed1f696f8099aa9796ca04c9ee778a58728a115607de9cc4638ff1", size = 4970349, upload-time = "2025-06-04T00:47:25.383Z" }, - { url = "https://files.pythonhosted.org/packages/53/bf/10ca917e335861101017ff46044c90e517b574fbb37219347b83be1952f6/hf_xet-1.1.3-cp37-abi3-win_amd64.whl", hash = "sha256:b578ae5ac9c056296bb0df9d018e597c8dc6390c5266f35b5c44696003cde9f3", size = 2310934, upload-time = "2025-06-04T00:47:29.632Z" }, + { url = "https://files.pythonhosted.org/packages/2a/39/e50c7c3a983047577ee07d2a9e53faf5a69493943ec3f6a384bdc792deb2/httpx-0.28.1-py3-none-any.whl", hash = "sha256:d909fcccc110f8c7faf814ca82a9a4d816bc5a6dbfea25d6591d6985b8ba59ad", size = 73517, upload-time = "2024-12-06T15:37:21.509Z" }, ] [[package]] name = "huggingface-hub" -version = "0.32.4" +version = "1.1.7" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "filelock" }, { name = "fsspec" }, - { name = "hf-xet", marker = "platform_machine == 'aarch64' or platform_machine == 'amd64' or platform_machine == 'arm64' or platform_machine == 'x86_64'" }, + { name = "hf-xet", marker = "platform_machine == 'AMD64' or platform_machine == 'aarch64' or platform_machine == 'amd64' or platform_machine == 'arm64' or platform_machine == 'x86_64' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "httpx" }, { name = "packaging" }, { name = "pyyaml" }, - { name = "requests" }, + { name = "shellingham" }, { name = "tqdm" }, + { name = "typer-slim" }, { name = "typing-extensions" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/60/c8/4f7d270285c46324fd66f62159eb16739aa5696f422dba57678a8c6b78e9/huggingface_hub-0.32.4.tar.gz", hash = "sha256:f61d45cd338736f59fb0e97550b74c24ee771bcc92c05ae0766b9116abe720be", size = 424494, upload-time = "2025-06-03T09:59:46.105Z" } +sdist = { url = "https://files.pythonhosted.org/packages/6f/fa/a1a94c55637f2b7cfeb05263ac3881aa87c82df92d8b4b31c909079f4419/huggingface_hub-1.1.7.tar.gz", hash = "sha256:3c84b6283caca928595f08fd42e9a572f17ec3501dec508c3f2939d94bfbd9d2", size = 607537, upload-time = "2025-12-01T11:05:28.137Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/67/8b/222140f3cfb6f17b0dd8c4b9a0b36bd4ebefe9fb0098ba35d6960abcda0f/huggingface_hub-0.32.4-py3-none-any.whl", hash = "sha256:37abf8826b38d971f60d3625229221c36e53fe58060286db9baf619cfbf39767", size = 512101, upload-time = "2025-06-03T09:59:44.099Z" }, + { url = "https://files.pythonhosted.org/packages/dd/4f/82e5ab009089a2c48472bf4248391fe4091cf0b9c3e951dbb8afe3b23d76/huggingface_hub-1.1.7-py3-none-any.whl", hash = "sha256:f3efa4779f4890e44c957bbbb0f197e6028887ad09f0cf95a21659fa7753605d", size = 516239, upload-time = "2025-12-01T11:05:25.981Z" }, ] [[package]] @@ -3942,20 +3528,20 @@ wheels = [ [[package]] name = "identify" -version = "2.6.12" +version = "2.6.15" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/a2/88/d193a27416618628a5eea64e3223acd800b40749a96ffb322a9b55a49ed1/identify-2.6.12.tar.gz", hash = "sha256:d8de45749f1efb108badef65ee8386f0f7bb19a7f26185f74de6367bffbaf0e6", size = 99254, upload-time = "2025-05-23T20:37:53.3Z" } +sdist = { url = "https://files.pythonhosted.org/packages/ff/e7/685de97986c916a6d93b3876139e00eef26ad5bbbd61925d670ae8013449/identify-2.6.15.tar.gz", hash = "sha256:e4f4864b96c6557ef2a1e1c951771838f4edc9df3a72ec7118b338801b11c7bf", size = 99311, upload-time = "2025-10-02T17:43:40.631Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/7a/cd/18f8da995b658420625f7ef13f037be53ae04ec5ad33f9b718240dcfd48c/identify-2.6.12-py2.py3-none-any.whl", hash = "sha256:ad9672d5a72e0d2ff7c5c8809b62dfa60458626352fb0eb7b55e69bdc45334a2", size = 99145, upload-time = "2025-05-23T20:37:51.495Z" }, + { url = "https://files.pythonhosted.org/packages/0f/1c/e5fd8f973d4f375adb21565739498e2e9a1e54c858a97b9a8ccfdc81da9b/identify-2.6.15-py2.py3-none-any.whl", hash = "sha256:1181ef7608e00704db228516541eb83a88a9f94433a8c80bb9b5bd54b1d81757", size = 99183, upload-time = "2025-10-02T17:43:39.137Z" }, ] [[package]] name = "idna" -version = "3.10" +version = "3.11" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/f1/70/7703c29685631f5a7590aa73f1f1d3fa9a380e654b86af429e0934a32f7d/idna-3.10.tar.gz", hash = "sha256:12f65c9b470abda6dc35cf8e63cc574b1c52b11df2c86030af0ac09b01b13ea9", size = 190490, upload-time = "2024-09-15T18:07:39.745Z" } +sdist = { url = "https://files.pythonhosted.org/packages/6f/6d/0703ccc57f3a7233505399edb88de3cbd678da106337b9fcde432b65ed60/idna-3.11.tar.gz", hash = "sha256:795dafcc9c04ed0c1fb032c2aa73654d8e8c5023a7df64a53f39190ada629902", size = 194582, upload-time = "2025-10-12T14:55:20.501Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/76/c6/c88e154df9c4e1a2a66ccf0005a88dfb2650c1dffb6f5ce603dfbd452ce3/idna-3.10-py3-none-any.whl", hash = "sha256:946d195a0d259cbba61165e88e65941f16e9b36ea6ddb97f00452bae8b1287d3", size = 70442, upload-time = "2024-09-15T18:07:37.964Z" }, + { url = "https://files.pythonhosted.org/packages/0e/61/66938bbb5fc52dbdf84594873d5b51fb1f7c7794e9c0f5bd885f30bc507b/idna-3.11-py3-none-any.whl", hash = "sha256:771a87f49d9defaf64091e6e6fe9c18d4833f140bd19464795bc32d966ca37ea", size = 71008, upload-time = "2025-10-12T14:55:18.883Z" }, ] [[package]] @@ -3978,23 +3564,31 @@ wheels = [ [[package]] name = "iniconfig" -version = "2.1.0" +version = "2.3.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/72/34/14ca021ce8e5dfedc35312d08ba8bf51fdd999c576889fc2c24cb97f4f10/iniconfig-2.3.0.tar.gz", hash = "sha256:c76315c77db068650d49c5b56314774a7804df16fee4402c1f19d6d15d8c4730", size = 20503, upload-time = "2025-10-18T21:55:43.219Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/cb/b1/3846dd7f199d53cb17f49cba7e651e9ce294d8497c8c150530ed11865bb8/iniconfig-2.3.0-py3-none-any.whl", hash = "sha256:f631c04d2c48c52b84d0d0549c99ff3859c98df65b3101406327ecc7d53fbf12", size = 7484, upload-time = "2025-10-18T21:55:41.639Z" }, +] + +[[package]] +name = "invoke" +version = "2.2.1" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/f2/97/ebf4da567aa6827c909642694d71c9fcf53e5b504f2d96afea02718862f3/iniconfig-2.1.0.tar.gz", hash = "sha256:3abbd2e30b36733fee78f9c7f7308f2d0050e88f0087fd25c2645f63c773e1c7", size = 4793, upload-time = "2025-03-19T20:09:59.721Z" } +sdist = { url = "https://files.pythonhosted.org/packages/de/bd/b461d3424a24c80490313fd77feeb666ca4f6a28c7e72713e3d9095719b4/invoke-2.2.1.tar.gz", hash = "sha256:515bf49b4a48932b79b024590348da22f39c4942dff991ad1fb8b8baea1be707", size = 304762, upload-time = "2025-10-11T00:36:35.172Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/2c/e1/e6716421ea10d38022b952c159d5161ca1193197fb744506875fbb87ea7b/iniconfig-2.1.0-py3-none-any.whl", hash = "sha256:9deba5723312380e77435581c6bf4935c94cbfab9b1ed33ef8d238ea168eb760", size = 6050, upload-time = "2025-03-19T20:10:01.071Z" }, + { url = "https://files.pythonhosted.org/packages/32/4b/b99e37f88336009971405cbb7630610322ed6fbfa31e1d7ab3fbf3049a2d/invoke-2.2.1-py3-none-any.whl", hash = "sha256:2413bc441b376e5cd3f55bb5d364f973ad8bdd7bf87e53c79de3c11bf3feecc8", size = 160287, upload-time = "2025-10-11T00:36:33.703Z" }, ] [[package]] name = "ipykernel" -version = "6.29.5" +version = "7.1.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "appnope", marker = "sys_platform == 'darwin' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, { name = "comm" }, { name = "debugpy" }, - { name = "ipython", version = "8.37.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, - { name = "ipython", version = "9.3.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "ipython" }, { name = "jupyter-client" }, { name = "jupyter-core" }, { name = "matplotlib-inline" }, @@ -4005,597 +3599,31 @@ dependencies = [ { name = "tornado" }, { name = "traitlets" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/e9/5c/67594cb0c7055dc50814b21731c22a601101ea3b1b50a9a1b090e11f5d0f/ipykernel-6.29.5.tar.gz", hash = "sha256:f093a22c4a40f8828f8e330a9c297cb93dcab13bd9678ded6de8e5cf81c56215", size = 163367, upload-time = "2024-07-01T14:07:22.543Z" } +sdist = { url = "https://files.pythonhosted.org/packages/b9/a4/4948be6eb88628505b83a1f2f40d90254cab66abf2043b3c40fa07dfce0f/ipykernel-7.1.0.tar.gz", hash = "sha256:58a3fc88533d5930c3546dc7eac66c6d288acde4f801e2001e65edc5dc9cf0db", size = 174579, upload-time = "2025-10-27T09:46:39.471Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/94/5c/368ae6c01c7628438358e6d337c19b05425727fbb221d2a3c4303c372f42/ipykernel-6.29.5-py3-none-any.whl", hash = "sha256:afdb66ba5aa354b09b91379bac28ae4afebbb30e8b39510c9690afb7a10421b5", size = 117173, upload-time = "2024-07-01T14:07:19.603Z" }, + { url = "https://files.pythonhosted.org/packages/a3/17/20c2552266728ceba271967b87919664ecc0e33efca29c3efc6baf88c5f9/ipykernel-7.1.0-py3-none-any.whl", hash = "sha256:763b5ec6c5b7776f6a8d7ce09b267693b4e5ce75cb50ae696aaefb3c85e1ea4c", size = 117968, upload-time = "2025-10-27T09:46:37.805Z" }, ] [[package]] name = "ipython" -version = "8.37.0" +version = "9.8.0" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", -] -dependencies = [ - { name = "colorama", marker = "(python_full_version < '3.11' and sys_platform == 'win32') or (python_full_version >= '3.11' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (python_full_version >= '3.11' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (python_full_version >= '3.11' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (python_full_version >= '3.11' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (python_full_version >= '3.11' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (python_full_version >= '3.11' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (python_full_version >= '3.11' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (python_full_version >= '3.11' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'win32' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (sys_platform != 'win32' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (sys_platform != 'win32' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'win32' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'win32' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'win32' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'win32' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (sys_platform != 'win32' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "decorator", marker = "python_full_version < '3.11' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, - { name = "exceptiongroup", marker = "python_full_version < '3.11' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, - { name = "jedi", marker = "python_full_version < '3.11' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, - { name = "matplotlib-inline", marker = "python_full_version < '3.11' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, - { name = "pexpect", marker = "(python_full_version < '3.11' and sys_platform != 'emscripten' and sys_platform != 'win32') or (python_full_version >= '3.11' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (python_full_version >= '3.11' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (python_full_version >= '3.11' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (python_full_version >= '3.11' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (python_full_version >= '3.11' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (python_full_version >= '3.11' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (python_full_version >= '3.11' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (python_full_version >= '3.11' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform == 'emscripten' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform == 'emscripten' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (sys_platform == 'emscripten' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (sys_platform == 'emscripten' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (sys_platform == 'emscripten' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (sys_platform == 'emscripten' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform == 'emscripten' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform == 'win32' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (sys_platform == 'win32' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (sys_platform == 'win32' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (sys_platform == 'win32' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (sys_platform == 'win32' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform == 'win32' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform == 'emscripten' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (sys_platform == 'emscripten' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (sys_platform == 'win32' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (sys_platform == 'win32' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "prompt-toolkit", marker = "python_full_version < '3.11' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, - { name = "pygments", marker = "python_full_version < '3.11' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, - { name = "stack-data", marker = "python_full_version < '3.11' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, - { name = "traitlets", marker = "python_full_version < '3.11' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, - { name = "typing-extensions", marker = "python_full_version < '3.11' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/85/31/10ac88f3357fc276dc8a64e8880c82e80e7459326ae1d0a211b40abf6665/ipython-8.37.0.tar.gz", hash = "sha256:ca815841e1a41a1e6b73a0b08f3038af9b2252564d01fc405356d34033012216", size = 5606088, upload-time = "2025-05-31T16:39:09.613Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/91/d0/274fbf7b0b12643cbbc001ce13e6a5b1607ac4929d1b11c72460152c9fc3/ipython-8.37.0-py3-none-any.whl", hash = "sha256:ed87326596b878932dbcb171e3e698845434d8c61b8d8cd474bf663041a9dcf2", size = 831864, upload-time = "2025-05-31T16:39:06.38Z" }, -] - -[[package]] -name = "ipython" -version = "9.3.0" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", -] dependencies = [ - { name = "colorama", marker = "(python_full_version >= '3.11' and sys_platform == 'win32') or (python_full_version < '3.11' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (python_full_version < '3.11' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (python_full_version < '3.11' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (python_full_version < '3.11' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (python_full_version < '3.11' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (python_full_version < '3.11' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (python_full_version < '3.11' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (python_full_version < '3.11' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'win32' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (sys_platform != 'win32' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (sys_platform != 'win32' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'win32' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'win32' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'win32' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'win32' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (sys_platform != 'win32' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "decorator", marker = "python_full_version >= '3.11' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, - { name = "ipython-pygments-lexers", marker = "python_full_version >= '3.11' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, - { name = "jedi", marker = "python_full_version >= '3.11' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, - { name = "matplotlib-inline", marker = "python_full_version >= '3.11' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, - { name = "pexpect", marker = "(python_full_version >= '3.11' and sys_platform != 'emscripten' and sys_platform != 'win32') or (python_full_version < '3.11' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (python_full_version < '3.11' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (python_full_version < '3.11' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (python_full_version < '3.11' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (python_full_version < '3.11' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (python_full_version < '3.11' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (python_full_version < '3.11' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (python_full_version < '3.11' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform == 'emscripten' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform == 'emscripten' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (sys_platform == 'emscripten' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (sys_platform == 'emscripten' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (sys_platform == 'emscripten' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (sys_platform == 'emscripten' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform == 'emscripten' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform == 'win32' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (sys_platform == 'win32' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (sys_platform == 'win32' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (sys_platform == 'win32' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (sys_platform == 'win32' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform == 'win32' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform == 'emscripten' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (sys_platform == 'emscripten' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (sys_platform == 'win32' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (sys_platform == 'win32' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "prompt-toolkit", marker = "python_full_version >= '3.11' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, - { name = "pygments", marker = "python_full_version >= '3.11' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, - { name = "stack-data", marker = "python_full_version >= '3.11' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, - { name = "traitlets", marker = "python_full_version >= '3.11' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, - { name = "typing-extensions", marker = "python_full_version == '3.11.*' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "colorama", marker = "sys_platform == 'win32' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "decorator" }, + { name = "ipython-pygments-lexers" }, + { name = "jedi" }, + { name = "matplotlib-inline" }, + { name = "pexpect", marker = "(sys_platform != 'emscripten' and sys_platform != 'win32') or (sys_platform == 'emscripten' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform == 'emscripten' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (sys_platform == 'emscripten' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (sys_platform == 'emscripten' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (sys_platform == 'emscripten' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (sys_platform == 'emscripten' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform == 'emscripten' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform == 'win32' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (sys_platform == 'win32' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (sys_platform == 'win32' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (sys_platform == 'win32' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (sys_platform == 'win32' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform == 'win32' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform == 'emscripten' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (sys_platform == 'emscripten' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (sys_platform == 'win32' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (sys_platform == 'win32' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, + { name = "prompt-toolkit" }, + { name = "pygments" }, + { name = "stack-data" }, + { name = "traitlets" }, + { name = "typing-extensions", marker = "python_full_version < '3.12' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/dc/09/4c7e06b96fbd203e06567b60fb41b06db606b6a82db6db7b2c85bb72a15c/ipython-9.3.0.tar.gz", hash = "sha256:79eb896f9f23f50ad16c3bc205f686f6e030ad246cc309c6279a242b14afe9d8", size = 4426460, upload-time = "2025-05-31T16:34:55.678Z" } +sdist = { url = "https://files.pythonhosted.org/packages/12/51/a703c030f4928646d390b4971af4938a1b10c9dfce694f0d99a0bb073cb2/ipython-9.8.0.tar.gz", hash = "sha256:8e4ce129a627eb9dd221c41b1d2cdaed4ef7c9da8c17c63f6f578fe231141f83", size = 4424940, upload-time = "2025-12-03T10:18:24.353Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/3c/99/9ed3d52d00f1846679e3aa12e2326ac7044b5e7f90dc822b60115fa533ca/ipython-9.3.0-py3-none-any.whl", hash = "sha256:1a0b6dd9221a1f5dddf725b57ac0cb6fddc7b5f470576231ae9162b9b3455a04", size = 605320, upload-time = "2025-05-31T16:34:52.154Z" }, + { url = "https://files.pythonhosted.org/packages/f1/df/8ee1c5dd1e3308b5d5b2f2dfea323bb2f3827da8d654abb6642051199049/ipython-9.8.0-py3-none-any.whl", hash = "sha256:ebe6d1d58d7d988fbf23ff8ff6d8e1622cfdb194daf4b7b73b792c4ec3b85385", size = 621374, upload-time = "2025-12-03T10:18:22.335Z" }, ] [[package]] @@ -4603,7 +3631,7 @@ name = "ipython-pygments-lexers" version = "1.1.1" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "pygments", marker = "python_full_version >= '3.11' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "pygments" }, ] sdist = { url = "https://files.pythonhosted.org/packages/ef/4c/5dd1d8af08107f88c7f741ead7a40854b8ac24ddf9ae850afbcf698aa552/ipython_pygments_lexers-1.1.1.tar.gz", hash = "sha256:09c0138009e56b6854f9535736f4171d855c8c08a563a0dcd8022f78355c7e81", size = 8393, upload-time = "2025-01-17T11:24:34.505Z" } wheels = [ @@ -4612,19 +3640,18 @@ wheels = [ [[package]] name = "ipywidgets" -version = "8.1.7" +version = "8.1.8" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "comm" }, - { name = "ipython", version = "8.37.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, - { name = "ipython", version = "9.3.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "ipython" }, { name = "jupyterlab-widgets" }, { name = "traitlets" }, { name = "widgetsnbextension" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/3e/48/d3dbac45c2814cb73812f98dd6b38bbcc957a4e7bb31d6ea9c03bf94ed87/ipywidgets-8.1.7.tar.gz", hash = "sha256:15f1ac050b9ccbefd45dccfbb2ef6bed0029d8278682d569d71b8dd96bee0376", size = 116721, upload-time = "2025-05-05T12:42:03.489Z" } +sdist = { url = "https://files.pythonhosted.org/packages/4c/ae/c5ce1edc1afe042eadb445e95b0671b03cee61895264357956e61c0d2ac0/ipywidgets-8.1.8.tar.gz", hash = "sha256:61f969306b95f85fba6b6986b7fe45d73124d1d9e3023a8068710d47a22ea668", size = 116739, upload-time = "2025-11-01T21:18:12.393Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/58/6a/9166369a2f092bd286d24e6307de555d63616e8ddb373ebad2b5635ca4cd/ipywidgets-8.1.7-py3-none-any.whl", hash = "sha256:764f2602d25471c213919b8a1997df04bef869251db4ca8efba1b76b1bd9f7bb", size = 139806, upload-time = "2025-05-05T12:41:56.833Z" }, + { url = "https://files.pythonhosted.org/packages/56/6d/0d9848617b9f753b87f214f1c682592f7ca42de085f564352f10f0843026/ipywidgets-8.1.8-py3-none-any.whl", hash = "sha256:ecaca67aed704a338f88f67b1181b58f821ab5dc89c1f0f5ef99db43c1c2921e", size = 139808, upload-time = "2025-11-01T21:18:10.956Z" }, ] [[package]] @@ -4712,8 +3739,7 @@ source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "maggma" }, { name = "monty" }, - { name = "networkx", version = "3.4.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.11' and extra == 'extra-5-mlipx-mattersim') or (python_full_version >= '3.11' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb')" }, - { name = "networkx", version = "3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and extra == 'extra-5-mlipx-mattersim') or (python_full_version < '3.11' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb')" }, + { name = "networkx" }, { name = "pydantic" }, { name = "pydantic-settings" }, { name = "pydash" }, @@ -4726,11 +3752,11 @@ wheels = [ [[package]] name = "joblib" -version = "1.5.1" +version = "1.5.2" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/dc/fe/0f5a938c54105553436dbff7a61dc4fed4b1b2c98852f8833beaf4d5968f/joblib-1.5.1.tar.gz", hash = "sha256:f4f86e351f39fe3d0d32a9f2c3d8af1ee4cec285aafcb27003dda5205576b444", size = 330475, upload-time = "2025-05-23T12:04:37.097Z" } +sdist = { url = "https://files.pythonhosted.org/packages/e8/5d/447af5ea094b9e4c4054f82e223ada074c552335b9b4b2d14bd9b35a67c4/joblib-1.5.2.tar.gz", hash = "sha256:3faa5c39054b2f03ca547da9b2f52fde67c06240c31853f306aea97f13647b55", size = 331077, upload-time = "2025-08-27T12:15:46.575Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/7d/4f/1195bbac8e0c2acc5f740661631d8d750dc38d4a32b23ee5df3cde6f4e0d/joblib-1.5.1-py3-none-any.whl", hash = "sha256:4719a31f054c7d766948dcd83e9613686b27114f190f717cec7eaa2084f8a74a", size = 307746, upload-time = "2025-05-23T12:04:35.124Z" }, + { url = "https://files.pythonhosted.org/packages/1e/e8/685f47e0d754320684db4425a0967f7d3fa70126bffd76110b7009a0090f/joblib-1.5.2-py3-none-any.whl", hash = "sha256:4e1f0bdbb987e6d843c70cf43714cb276623def372df3c22fe5266b2670bc241", size = 308396, upload-time = "2025-08-27T12:15:45.188Z" }, ] [[package]] @@ -4771,7 +3797,7 @@ wheels = [ [[package]] name = "jsonschema" -version = "4.24.0" +version = "4.25.1" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "attrs" }, @@ -4779,9 +3805,9 @@ dependencies = [ { name = "referencing" }, { name = "rpds-py" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/bf/d3/1cf5326b923a53515d8f3a2cd442e6d7e94fcc444716e879ea70a0ce3177/jsonschema-4.24.0.tar.gz", hash = "sha256:0b4e8069eb12aedfa881333004bccaec24ecef5a8a6a4b6df142b2cc9599d196", size = 353480, upload-time = "2025-05-26T18:48:10.459Z" } +sdist = { url = "https://files.pythonhosted.org/packages/74/69/f7185de793a29082a9f3c7728268ffb31cb5095131a9c139a74078e27336/jsonschema-4.25.1.tar.gz", hash = "sha256:e4a9655ce0da0c0b67a085847e00a3a51449e1157f4f75e9fb5aa545e122eb85", size = 357342, upload-time = "2025-08-18T17:03:50.038Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/a2/3d/023389198f69c722d039351050738d6755376c8fd343e91dc493ea485905/jsonschema-4.24.0-py3-none-any.whl", hash = "sha256:a462455f19f5faf404a7902952b6f0e3ce868f3ee09a359b05eca6673bd8412d", size = 88709, upload-time = "2025-05-26T18:48:08.417Z" }, + { url = "https://files.pythonhosted.org/packages/bf/9c/8c95d856233c1f82500c2450b8c68576b4cf1c871db3afac5c34ff84e6fd/jsonschema-4.25.1-py3-none-any.whl", hash = "sha256:3fba0169e345c7175110351d456342c364814cfcf3b964ba4587f22915230a63", size = 90040, upload-time = "2025-08-18T17:03:48.373Z" }, ] [package.optional-dependencies] @@ -4792,20 +3818,21 @@ format-nongpl = [ { name = "jsonpointer" }, { name = "rfc3339-validator" }, { name = "rfc3986-validator" }, + { name = "rfc3987-syntax" }, { name = "uri-template" }, { name = "webcolors" }, ] [[package]] name = "jsonschema-specifications" -version = "2025.4.1" +version = "2025.9.1" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "referencing" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/bf/ce/46fbd9c8119cfc3581ee5643ea49464d168028cfb5caff5fc0596d0cf914/jsonschema_specifications-2025.4.1.tar.gz", hash = "sha256:630159c9f4dbea161a6a2205c3011cc4f18ff381b189fff48bb39b9bf26ae608", size = 15513, upload-time = "2025-04-23T12:34:07.418Z" } +sdist = { url = "https://files.pythonhosted.org/packages/19/74/a633ee74eb36c44aa6d1095e7cc5569bebf04342ee146178e2d36600708b/jsonschema_specifications-2025.9.1.tar.gz", hash = "sha256:b540987f239e745613c7a9176f3edb72b832a4ac465cf02712288397832b5e8d", size = 32855, upload-time = "2025-09-08T01:34:59.186Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/01/0e/b27cdbaccf30b890c40ed1da9fd4a3593a5cf94dae54fb34f8a4b74fcd3f/jsonschema_specifications-2025.4.1-py3-none-any.whl", hash = "sha256:4653bffbd6584f7de83a67e0d620ef16900b390ddc7939d56684d6c81e33f1af", size = 18437, upload-time = "2025-04-23T12:34:05.422Z" }, + { url = "https://files.pythonhosted.org/packages/41/45/1a4ed80516f02155c51f51e8cedb3c1902296743db0bbc66608a0db2814f/jsonschema_specifications-2025.9.1-py3-none-any.whl", hash = "sha256:98802fee3a11ee76ecaca44429fda8a41bff98b00a0f2838151b113f210cc6fe", size = 18437, upload-time = "2025-09-08T01:34:57.871Z" }, ] [[package]] @@ -4826,16 +3853,15 @@ wheels = [ [[package]] name = "jupyter-core" -version = "5.8.1" +version = "5.9.1" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "platformdirs" }, - { name = "pywin32", marker = "(platform_python_implementation != 'PyPy' and sys_platform == 'win32') or (platform_python_implementation == 'PyPy' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (platform_python_implementation == 'PyPy' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (platform_python_implementation == 'PyPy' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (platform_python_implementation == 'PyPy' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (platform_python_implementation == 'PyPy' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (platform_python_implementation == 'PyPy' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (platform_python_implementation == 'PyPy' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (platform_python_implementation == 'PyPy' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'win32' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (sys_platform != 'win32' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (sys_platform != 'win32' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'win32' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'win32' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'win32' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'win32' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (sys_platform != 'win32' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, { name = "traitlets" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/99/1b/72906d554acfeb588332eaaa6f61577705e9ec752ddb486f302dafa292d9/jupyter_core-5.8.1.tar.gz", hash = "sha256:0a5f9706f70e64786b75acba995988915ebd4601c8a52e534a40b51c95f59941", size = 88923, upload-time = "2025-05-27T07:38:16.655Z" } +sdist = { url = "https://files.pythonhosted.org/packages/02/49/9d1284d0dc65e2c757b74c6687b6d319b02f822ad039e5c512df9194d9dd/jupyter_core-5.9.1.tar.gz", hash = "sha256:4d09aaff303b9566c3ce657f580bd089ff5c91f5f89cf7d8846c3cdf465b5508", size = 89814, upload-time = "2025-10-16T19:19:18.444Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/2f/57/6bffd4b20b88da3800c5d691e0337761576ee688eb01299eae865689d2df/jupyter_core-5.8.1-py3-none-any.whl", hash = "sha256:c28d268fc90fb53f1338ded2eb410704c5449a358406e8a948b75706e24863d0", size = 28880, upload-time = "2025-05-27T07:38:15.137Z" }, + { url = "https://files.pythonhosted.org/packages/e7/e7/80988e32bf6f73919a113473a604f5a8f09094de312b9d52b79c2df7612b/jupyter_core-5.9.1-py3-none-any.whl", hash = "sha256:ebf87fdc6073d142e114c72c9e29a9d7ca03fad818c5d300ce2adc1fb0743407", size = 29032, upload-time = "2025-10-16T19:19:16.783Z" }, ] [[package]] @@ -4844,8 +3870,7 @@ version = "0.5.3" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "ipykernel" }, - { name = "ipython", version = "8.37.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, - { name = "ipython", version = "9.3.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "ipython" }, { name = "ipywidgets" }, { name = "nbconvert" }, { name = "nbformat" }, @@ -4867,123 +3892,128 @@ wheels = [ [[package]] name = "jupyterlab-widgets" -version = "3.0.15" +version = "3.0.16" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/b9/7d/160595ca88ee87ac6ba95d82177d29ec60aaa63821d3077babb22ce031a5/jupyterlab_widgets-3.0.15.tar.gz", hash = "sha256:2920888a0c2922351a9202817957a68c07d99673504d6cd37345299e971bb08b", size = 213149, upload-time = "2025-05-05T12:32:31.004Z" } +sdist = { url = "https://files.pythonhosted.org/packages/26/2d/ef58fed122b268c69c0aa099da20bc67657cdfb2e222688d5731bd5b971d/jupyterlab_widgets-3.0.16.tar.gz", hash = "sha256:423da05071d55cf27a9e602216d35a3a65a3e41cdf9c5d3b643b814ce38c19e0", size = 897423, upload-time = "2025-11-01T21:11:29.724Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/43/6a/ca128561b22b60bd5a0c4ea26649e68c8556b82bc70a0c396eebc977fe86/jupyterlab_widgets-3.0.15-py3-none-any.whl", hash = "sha256:d59023d7d7ef71400d51e6fee9a88867f6e65e10a4201605d2d7f3e8f012a31c", size = 216571, upload-time = "2025-05-05T12:32:29.534Z" }, + { url = "https://files.pythonhosted.org/packages/ab/b5/36c712098e6191d1b4e349304ef73a8d06aed77e56ceaac8c0a306c7bda1/jupyterlab_widgets-3.0.16-py3-none-any.whl", hash = "sha256:45fa36d9c6422cf2559198e4db481aa243c7a32d9926b500781c830c80f7ecf8", size = 914926, upload-time = "2025-11-01T21:11:28.008Z" }, ] [[package]] name = "keras" -version = "3.10.0" +version = "3.12.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "absl-py" }, { name = "h5py" }, - { name = "ml-dtypes" }, + { name = "ml-dtypes", version = "0.3.2", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'extra-5-mlipx-grace') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "ml-dtypes", version = "0.5.4", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'linux' and extra == 'extra-5-mlipx-grace') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, { name = "namex" }, - { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" } }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'extra-5-mlipx-grace') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "numpy", version = "2.1.3", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'linux' and extra == 'extra-5-mlipx-grace') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, { name = "optree" }, { name = "packaging" }, { name = "rich", version = "13.9.4", source = { registry = "https://pypi.org/simple" }, marker = "(extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "rich", version = "14.0.0", source = { registry = "https://pypi.org/simple" }, marker = "(extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn')" }, + { name = "rich", version = "14.2.0", source = { registry = "https://pypi.org/simple" }, marker = "(extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn')" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/f3/fe/2946daf8477ae38a4b480c8889c72ede4f36eb28f9e1a27fc355cd633c3d/keras-3.10.0.tar.gz", hash = "sha256:6e9100bf66eaf6de4b7f288d34ef9bb8b5dcdd62f42c64cfd910226bb34ad2d2", size = 1040781, upload-time = "2025-05-19T22:58:30.833Z" } +sdist = { url = "https://files.pythonhosted.org/packages/9b/b8/8df141314a64a31d3a21762658826f716cdf4c261c7fcdb3f729958def55/keras-3.12.0.tar.gz", hash = "sha256:536e3f8385a05ae04e82e08715a1a59988578087e187b04cb0a6fad11743f07f", size = 1129187, upload-time = "2025-10-27T20:23:11.574Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/95/e6/4179c461a5fc43e3736880f64dbdc9b1a5349649f0ae32ded927c0e3a227/keras-3.10.0-py3-none-any.whl", hash = "sha256:c095a6bf90cd50defadf73d4859ff794fad76b775357ef7bd1dbf96388dae7d3", size = 1380082, upload-time = "2025-05-19T22:58:28.938Z" }, + { url = "https://files.pythonhosted.org/packages/ba/61/cc8be27bd65082440754be443b17b6f7c185dec5e00dfdaeab4f8662e4a8/keras-3.12.0-py3-none-any.whl", hash = "sha256:02b69e007d5df8042286c3bcc2a888539e3e487590ffb08f6be1b4354df50aa8", size = 1474424, upload-time = "2025-10-27T20:23:09.571Z" }, ] [[package]] name = "kiwisolver" -version = "1.4.8" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/82/59/7c91426a8ac292e1cdd53a63b6d9439abd573c875c3f92c146767dd33faf/kiwisolver-1.4.8.tar.gz", hash = "sha256:23d5f023bdc8c7e54eb65f03ca5d5bb25b601eac4d7f1a042888a1f45237987e", size = 97538, upload-time = "2024-12-24T18:30:51.519Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/47/5f/4d8e9e852d98ecd26cdf8eaf7ed8bc33174033bba5e07001b289f07308fd/kiwisolver-1.4.8-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:88c6f252f6816a73b1f8c904f7bbe02fd67c09a69f7cb8a0eecdbf5ce78e63db", size = 124623, upload-time = "2024-12-24T18:28:17.687Z" }, - { url = "https://files.pythonhosted.org/packages/1d/70/7f5af2a18a76fe92ea14675f8bd88ce53ee79e37900fa5f1a1d8e0b42998/kiwisolver-1.4.8-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:c72941acb7b67138f35b879bbe85be0f6c6a70cab78fe3ef6db9c024d9223e5b", size = 66720, upload-time = "2024-12-24T18:28:19.158Z" }, - { url = "https://files.pythonhosted.org/packages/c6/13/e15f804a142353aefd089fadc8f1d985561a15358c97aca27b0979cb0785/kiwisolver-1.4.8-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ce2cf1e5688edcb727fdf7cd1bbd0b6416758996826a8be1d958f91880d0809d", size = 65413, upload-time = "2024-12-24T18:28:20.064Z" }, - { url = "https://files.pythonhosted.org/packages/ce/6d/67d36c4d2054e83fb875c6b59d0809d5c530de8148846b1370475eeeece9/kiwisolver-1.4.8-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:c8bf637892dc6e6aad2bc6d4d69d08764166e5e3f69d469e55427b6ac001b19d", size = 1650826, upload-time = "2024-12-24T18:28:21.203Z" }, - { url = "https://files.pythonhosted.org/packages/de/c6/7b9bb8044e150d4d1558423a1568e4f227193662a02231064e3824f37e0a/kiwisolver-1.4.8-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:034d2c891f76bd3edbdb3ea11140d8510dca675443da7304205a2eaa45d8334c", size = 1628231, upload-time = "2024-12-24T18:28:23.851Z" }, - { url = "https://files.pythonhosted.org/packages/b6/38/ad10d437563063eaaedbe2c3540a71101fc7fb07a7e71f855e93ea4de605/kiwisolver-1.4.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d47b28d1dfe0793d5e96bce90835e17edf9a499b53969b03c6c47ea5985844c3", size = 1408938, upload-time = "2024-12-24T18:28:26.687Z" }, - { url = "https://files.pythonhosted.org/packages/52/ce/c0106b3bd7f9e665c5f5bc1e07cc95b5dabd4e08e3dad42dbe2faad467e7/kiwisolver-1.4.8-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:eb158fe28ca0c29f2260cca8c43005329ad58452c36f0edf298204de32a9a3ed", size = 1422799, upload-time = "2024-12-24T18:28:30.538Z" }, - { url = "https://files.pythonhosted.org/packages/d0/87/efb704b1d75dc9758087ba374c0f23d3254505edaedd09cf9d247f7878b9/kiwisolver-1.4.8-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d5536185fce131780ebd809f8e623bf4030ce1b161353166c49a3c74c287897f", size = 1354362, upload-time = "2024-12-24T18:28:32.943Z" }, - { url = "https://files.pythonhosted.org/packages/eb/b3/fd760dc214ec9a8f208b99e42e8f0130ff4b384eca8b29dd0efc62052176/kiwisolver-1.4.8-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:369b75d40abedc1da2c1f4de13f3482cb99e3237b38726710f4a793432b1c5ff", size = 2222695, upload-time = "2024-12-24T18:28:35.641Z" }, - { url = "https://files.pythonhosted.org/packages/a2/09/a27fb36cca3fc01700687cc45dae7a6a5f8eeb5f657b9f710f788748e10d/kiwisolver-1.4.8-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:641f2ddf9358c80faa22e22eb4c9f54bd3f0e442e038728f500e3b978d00aa7d", size = 2370802, upload-time = "2024-12-24T18:28:38.357Z" }, - { url = "https://files.pythonhosted.org/packages/3d/c3/ba0a0346db35fe4dc1f2f2cf8b99362fbb922d7562e5f911f7ce7a7b60fa/kiwisolver-1.4.8-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:d561d2d8883e0819445cfe58d7ddd673e4015c3c57261d7bdcd3710d0d14005c", size = 2334646, upload-time = "2024-12-24T18:28:40.941Z" }, - { url = "https://files.pythonhosted.org/packages/41/52/942cf69e562f5ed253ac67d5c92a693745f0bed3c81f49fc0cbebe4d6b00/kiwisolver-1.4.8-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:1732e065704b47c9afca7ffa272f845300a4eb959276bf6970dc07265e73b605", size = 2467260, upload-time = "2024-12-24T18:28:42.273Z" }, - { url = "https://files.pythonhosted.org/packages/32/26/2d9668f30d8a494b0411d4d7d4ea1345ba12deb6a75274d58dd6ea01e951/kiwisolver-1.4.8-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:bcb1ebc3547619c3b58a39e2448af089ea2ef44b37988caf432447374941574e", size = 2288633, upload-time = "2024-12-24T18:28:44.87Z" }, - { url = "https://files.pythonhosted.org/packages/98/99/0dd05071654aa44fe5d5e350729961e7bb535372935a45ac89a8924316e6/kiwisolver-1.4.8-cp310-cp310-win_amd64.whl", hash = "sha256:89c107041f7b27844179ea9c85d6da275aa55ecf28413e87624d033cf1f6b751", size = 71885, upload-time = "2024-12-24T18:28:47.346Z" }, - { url = "https://files.pythonhosted.org/packages/6c/fc/822e532262a97442989335394d441cd1d0448c2e46d26d3e04efca84df22/kiwisolver-1.4.8-cp310-cp310-win_arm64.whl", hash = "sha256:b5773efa2be9eb9fcf5415ea3ab70fc785d598729fd6057bea38d539ead28271", size = 65175, upload-time = "2024-12-24T18:28:49.651Z" }, - { url = "https://files.pythonhosted.org/packages/da/ed/c913ee28936c371418cb167b128066ffb20bbf37771eecc2c97edf8a6e4c/kiwisolver-1.4.8-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:a4d3601908c560bdf880f07d94f31d734afd1bb71e96585cace0e38ef44c6d84", size = 124635, upload-time = "2024-12-24T18:28:51.826Z" }, - { url = "https://files.pythonhosted.org/packages/4c/45/4a7f896f7467aaf5f56ef093d1f329346f3b594e77c6a3c327b2d415f521/kiwisolver-1.4.8-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:856b269c4d28a5c0d5e6c1955ec36ebfd1651ac00e1ce0afa3e28da95293b561", size = 66717, upload-time = "2024-12-24T18:28:54.256Z" }, - { url = "https://files.pythonhosted.org/packages/5f/b4/c12b3ac0852a3a68f94598d4c8d569f55361beef6159dce4e7b624160da2/kiwisolver-1.4.8-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:c2b9a96e0f326205af81a15718a9073328df1173a2619a68553decb7097fd5d7", size = 65413, upload-time = "2024-12-24T18:28:55.184Z" }, - { url = "https://files.pythonhosted.org/packages/a9/98/1df4089b1ed23d83d410adfdc5947245c753bddfbe06541c4aae330e9e70/kiwisolver-1.4.8-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c5020c83e8553f770cb3b5fc13faac40f17e0b205bd237aebd21d53d733adb03", size = 1343994, upload-time = "2024-12-24T18:28:57.493Z" }, - { url = "https://files.pythonhosted.org/packages/8d/bf/b4b169b050c8421a7c53ea1ea74e4ef9c335ee9013216c558a047f162d20/kiwisolver-1.4.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dace81d28c787956bfbfbbfd72fdcef014f37d9b48830829e488fdb32b49d954", size = 1434804, upload-time = "2024-12-24T18:29:00.077Z" }, - { url = "https://files.pythonhosted.org/packages/66/5a/e13bd341fbcf73325ea60fdc8af752addf75c5079867af2e04cc41f34434/kiwisolver-1.4.8-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:11e1022b524bd48ae56c9b4f9296bce77e15a2e42a502cceba602f804b32bb79", size = 1450690, upload-time = "2024-12-24T18:29:01.401Z" }, - { url = "https://files.pythonhosted.org/packages/9b/4f/5955dcb376ba4a830384cc6fab7d7547bd6759fe75a09564910e9e3bb8ea/kiwisolver-1.4.8-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b9b4d2892fefc886f30301cdd80debd8bb01ecdf165a449eb6e78f79f0fabd6", size = 1376839, upload-time = "2024-12-24T18:29:02.685Z" }, - { url = "https://files.pythonhosted.org/packages/3a/97/5edbed69a9d0caa2e4aa616ae7df8127e10f6586940aa683a496c2c280b9/kiwisolver-1.4.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3a96c0e790ee875d65e340ab383700e2b4891677b7fcd30a699146f9384a2bb0", size = 1435109, upload-time = "2024-12-24T18:29:04.113Z" }, - { url = "https://files.pythonhosted.org/packages/13/fc/e756382cb64e556af6c1809a1bbb22c141bbc2445049f2da06b420fe52bf/kiwisolver-1.4.8-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:23454ff084b07ac54ca8be535f4174170c1094a4cff78fbae4f73a4bcc0d4dab", size = 2245269, upload-time = "2024-12-24T18:29:05.488Z" }, - { url = "https://files.pythonhosted.org/packages/76/15/e59e45829d7f41c776d138245cabae6515cb4eb44b418f6d4109c478b481/kiwisolver-1.4.8-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:87b287251ad6488e95b4f0b4a79a6d04d3ea35fde6340eb38fbd1ca9cd35bbbc", size = 2393468, upload-time = "2024-12-24T18:29:06.79Z" }, - { url = "https://files.pythonhosted.org/packages/e9/39/483558c2a913ab8384d6e4b66a932406f87c95a6080112433da5ed668559/kiwisolver-1.4.8-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:b21dbe165081142b1232a240fc6383fd32cdd877ca6cc89eab93e5f5883e1c25", size = 2355394, upload-time = "2024-12-24T18:29:08.24Z" }, - { url = "https://files.pythonhosted.org/packages/01/aa/efad1fbca6570a161d29224f14b082960c7e08268a133fe5dc0f6906820e/kiwisolver-1.4.8-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:768cade2c2df13db52475bd28d3a3fac8c9eff04b0e9e2fda0f3760f20b3f7fc", size = 2490901, upload-time = "2024-12-24T18:29:09.653Z" }, - { url = "https://files.pythonhosted.org/packages/c9/4f/15988966ba46bcd5ab9d0c8296914436720dd67fca689ae1a75b4ec1c72f/kiwisolver-1.4.8-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:d47cfb2650f0e103d4bf68b0b5804c68da97272c84bb12850d877a95c056bd67", size = 2312306, upload-time = "2024-12-24T18:29:12.644Z" }, - { url = "https://files.pythonhosted.org/packages/2d/27/bdf1c769c83f74d98cbc34483a972f221440703054894a37d174fba8aa68/kiwisolver-1.4.8-cp311-cp311-win_amd64.whl", hash = "sha256:ed33ca2002a779a2e20eeb06aea7721b6e47f2d4b8a8ece979d8ba9e2a167e34", size = 71966, upload-time = "2024-12-24T18:29:14.089Z" }, - { url = "https://files.pythonhosted.org/packages/4a/c9/9642ea855604aeb2968a8e145fc662edf61db7632ad2e4fb92424be6b6c0/kiwisolver-1.4.8-cp311-cp311-win_arm64.whl", hash = "sha256:16523b40aab60426ffdebe33ac374457cf62863e330a90a0383639ce14bf44b2", size = 65311, upload-time = "2024-12-24T18:29:15.892Z" }, - { url = "https://files.pythonhosted.org/packages/fc/aa/cea685c4ab647f349c3bc92d2daf7ae34c8e8cf405a6dcd3a497f58a2ac3/kiwisolver-1.4.8-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:d6af5e8815fd02997cb6ad9bbed0ee1e60014438ee1a5c2444c96f87b8843502", size = 124152, upload-time = "2024-12-24T18:29:16.85Z" }, - { url = "https://files.pythonhosted.org/packages/c5/0b/8db6d2e2452d60d5ebc4ce4b204feeb16176a851fd42462f66ade6808084/kiwisolver-1.4.8-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:bade438f86e21d91e0cf5dd7c0ed00cda0f77c8c1616bd83f9fc157fa6760d31", size = 66555, upload-time = "2024-12-24T18:29:19.146Z" }, - { url = "https://files.pythonhosted.org/packages/60/26/d6a0db6785dd35d3ba5bf2b2df0aedc5af089962c6eb2cbf67a15b81369e/kiwisolver-1.4.8-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:b83dc6769ddbc57613280118fb4ce3cd08899cc3369f7d0e0fab518a7cf37fdb", size = 65067, upload-time = "2024-12-24T18:29:20.096Z" }, - { url = "https://files.pythonhosted.org/packages/c9/ed/1d97f7e3561e09757a196231edccc1bcf59d55ddccefa2afc9c615abd8e0/kiwisolver-1.4.8-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:111793b232842991be367ed828076b03d96202c19221b5ebab421ce8bcad016f", size = 1378443, upload-time = "2024-12-24T18:29:22.843Z" }, - { url = "https://files.pythonhosted.org/packages/29/61/39d30b99954e6b46f760e6289c12fede2ab96a254c443639052d1b573fbc/kiwisolver-1.4.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:257af1622860e51b1a9d0ce387bf5c2c4f36a90594cb9514f55b074bcc787cfc", size = 1472728, upload-time = "2024-12-24T18:29:24.463Z" }, - { url = "https://files.pythonhosted.org/packages/0c/3e/804163b932f7603ef256e4a715e5843a9600802bb23a68b4e08c8c0ff61d/kiwisolver-1.4.8-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:69b5637c3f316cab1ec1c9a12b8c5f4750a4c4b71af9157645bf32830e39c03a", size = 1478388, upload-time = "2024-12-24T18:29:25.776Z" }, - { url = "https://files.pythonhosted.org/packages/8a/9e/60eaa75169a154700be74f875a4d9961b11ba048bef315fbe89cb6999056/kiwisolver-1.4.8-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:782bb86f245ec18009890e7cb8d13a5ef54dcf2ebe18ed65f795e635a96a1c6a", size = 1413849, upload-time = "2024-12-24T18:29:27.202Z" }, - { url = "https://files.pythonhosted.org/packages/bc/b3/9458adb9472e61a998c8c4d95cfdfec91c73c53a375b30b1428310f923e4/kiwisolver-1.4.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cc978a80a0db3a66d25767b03688f1147a69e6237175c0f4ffffaaedf744055a", size = 1475533, upload-time = "2024-12-24T18:29:28.638Z" }, - { url = "https://files.pythonhosted.org/packages/e4/7a/0a42d9571e35798de80aef4bb43a9b672aa7f8e58643d7bd1950398ffb0a/kiwisolver-1.4.8-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:36dbbfd34838500a31f52c9786990d00150860e46cd5041386f217101350f0d3", size = 2268898, upload-time = "2024-12-24T18:29:30.368Z" }, - { url = "https://files.pythonhosted.org/packages/d9/07/1255dc8d80271400126ed8db35a1795b1a2c098ac3a72645075d06fe5c5d/kiwisolver-1.4.8-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:eaa973f1e05131de5ff3569bbba7f5fd07ea0595d3870ed4a526d486fe57fa1b", size = 2425605, upload-time = "2024-12-24T18:29:33.151Z" }, - { url = "https://files.pythonhosted.org/packages/84/df/5a3b4cf13780ef6f6942df67b138b03b7e79e9f1f08f57c49957d5867f6e/kiwisolver-1.4.8-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:a66f60f8d0c87ab7f59b6fb80e642ebb29fec354a4dfad687ca4092ae69d04f4", size = 2375801, upload-time = "2024-12-24T18:29:34.584Z" }, - { url = "https://files.pythonhosted.org/packages/8f/10/2348d068e8b0f635c8c86892788dac7a6b5c0cb12356620ab575775aad89/kiwisolver-1.4.8-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:858416b7fb777a53f0c59ca08190ce24e9abbd3cffa18886a5781b8e3e26f65d", size = 2520077, upload-time = "2024-12-24T18:29:36.138Z" }, - { url = "https://files.pythonhosted.org/packages/32/d8/014b89fee5d4dce157d814303b0fce4d31385a2af4c41fed194b173b81ac/kiwisolver-1.4.8-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:085940635c62697391baafaaeabdf3dd7a6c3643577dde337f4d66eba021b2b8", size = 2338410, upload-time = "2024-12-24T18:29:39.991Z" }, - { url = "https://files.pythonhosted.org/packages/bd/72/dfff0cc97f2a0776e1c9eb5bef1ddfd45f46246c6533b0191887a427bca5/kiwisolver-1.4.8-cp312-cp312-win_amd64.whl", hash = "sha256:01c3d31902c7db5fb6182832713d3b4122ad9317c2c5877d0539227d96bb2e50", size = 71853, upload-time = "2024-12-24T18:29:42.006Z" }, - { url = "https://files.pythonhosted.org/packages/dc/85/220d13d914485c0948a00f0b9eb419efaf6da81b7d72e88ce2391f7aed8d/kiwisolver-1.4.8-cp312-cp312-win_arm64.whl", hash = "sha256:a3c44cb68861de93f0c4a8175fbaa691f0aa22550c331fefef02b618a9dcb476", size = 65424, upload-time = "2024-12-24T18:29:44.38Z" }, - { url = "https://files.pythonhosted.org/packages/79/b3/e62464a652f4f8cd9006e13d07abad844a47df1e6537f73ddfbf1bc997ec/kiwisolver-1.4.8-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:1c8ceb754339793c24aee1c9fb2485b5b1f5bb1c2c214ff13368431e51fc9a09", size = 124156, upload-time = "2024-12-24T18:29:45.368Z" }, - { url = "https://files.pythonhosted.org/packages/8d/2d/f13d06998b546a2ad4f48607a146e045bbe48030774de29f90bdc573df15/kiwisolver-1.4.8-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:54a62808ac74b5e55a04a408cda6156f986cefbcf0ada13572696b507cc92fa1", size = 66555, upload-time = "2024-12-24T18:29:46.37Z" }, - { url = "https://files.pythonhosted.org/packages/59/e3/b8bd14b0a54998a9fd1e8da591c60998dc003618cb19a3f94cb233ec1511/kiwisolver-1.4.8-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:68269e60ee4929893aad82666821aaacbd455284124817af45c11e50a4b42e3c", size = 65071, upload-time = "2024-12-24T18:29:47.333Z" }, - { url = "https://files.pythonhosted.org/packages/f0/1c/6c86f6d85ffe4d0ce04228d976f00674f1df5dc893bf2dd4f1928748f187/kiwisolver-1.4.8-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:34d142fba9c464bc3bbfeff15c96eab0e7310343d6aefb62a79d51421fcc5f1b", size = 1378053, upload-time = "2024-12-24T18:29:49.636Z" }, - { url = "https://files.pythonhosted.org/packages/4e/b9/1c6e9f6dcb103ac5cf87cb695845f5fa71379021500153566d8a8a9fc291/kiwisolver-1.4.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3ddc373e0eef45b59197de815b1b28ef89ae3955e7722cc9710fb91cd77b7f47", size = 1472278, upload-time = "2024-12-24T18:29:51.164Z" }, - { url = "https://files.pythonhosted.org/packages/ee/81/aca1eb176de671f8bda479b11acdc42c132b61a2ac861c883907dde6debb/kiwisolver-1.4.8-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:77e6f57a20b9bd4e1e2cedda4d0b986ebd0216236f0106e55c28aea3d3d69b16", size = 1478139, upload-time = "2024-12-24T18:29:52.594Z" }, - { url = "https://files.pythonhosted.org/packages/49/f4/e081522473671c97b2687d380e9e4c26f748a86363ce5af48b4a28e48d06/kiwisolver-1.4.8-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:08e77738ed7538f036cd1170cbed942ef749137b1311fa2bbe2a7fda2f6bf3cc", size = 1413517, upload-time = "2024-12-24T18:29:53.941Z" }, - { url = "https://files.pythonhosted.org/packages/8f/e9/6a7d025d8da8c4931522922cd706105aa32b3291d1add8c5427cdcd66e63/kiwisolver-1.4.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a5ce1e481a74b44dd5e92ff03ea0cb371ae7a0268318e202be06c8f04f4f1246", size = 1474952, upload-time = "2024-12-24T18:29:56.523Z" }, - { url = "https://files.pythonhosted.org/packages/82/13/13fa685ae167bee5d94b415991c4fc7bb0a1b6ebea6e753a87044b209678/kiwisolver-1.4.8-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:fc2ace710ba7c1dfd1a3b42530b62b9ceed115f19a1656adefce7b1782a37794", size = 2269132, upload-time = "2024-12-24T18:29:57.989Z" }, - { url = "https://files.pythonhosted.org/packages/ef/92/bb7c9395489b99a6cb41d502d3686bac692586db2045adc19e45ee64ed23/kiwisolver-1.4.8-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:3452046c37c7692bd52b0e752b87954ef86ee2224e624ef7ce6cb21e8c41cc1b", size = 2425997, upload-time = "2024-12-24T18:29:59.393Z" }, - { url = "https://files.pythonhosted.org/packages/ed/12/87f0e9271e2b63d35d0d8524954145837dd1a6c15b62a2d8c1ebe0f182b4/kiwisolver-1.4.8-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:7e9a60b50fe8b2ec6f448fe8d81b07e40141bfced7f896309df271a0b92f80f3", size = 2376060, upload-time = "2024-12-24T18:30:01.338Z" }, - { url = "https://files.pythonhosted.org/packages/02/6e/c8af39288edbce8bf0fa35dee427b082758a4b71e9c91ef18fa667782138/kiwisolver-1.4.8-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:918139571133f366e8362fa4a297aeba86c7816b7ecf0bc79168080e2bd79957", size = 2520471, upload-time = "2024-12-24T18:30:04.574Z" }, - { url = "https://files.pythonhosted.org/packages/13/78/df381bc7b26e535c91469f77f16adcd073beb3e2dd25042efd064af82323/kiwisolver-1.4.8-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:e063ef9f89885a1d68dd8b2e18f5ead48653176d10a0e324e3b0030e3a69adeb", size = 2338793, upload-time = "2024-12-24T18:30:06.25Z" }, - { url = "https://files.pythonhosted.org/packages/d0/dc/c1abe38c37c071d0fc71c9a474fd0b9ede05d42f5a458d584619cfd2371a/kiwisolver-1.4.8-cp313-cp313-win_amd64.whl", hash = "sha256:a17b7c4f5b2c51bb68ed379defd608a03954a1845dfed7cc0117f1cc8a9b7fd2", size = 71855, upload-time = "2024-12-24T18:30:07.535Z" }, - { url = "https://files.pythonhosted.org/packages/a0/b6/21529d595b126ac298fdd90b705d87d4c5693de60023e0efcb4f387ed99e/kiwisolver-1.4.8-cp313-cp313-win_arm64.whl", hash = "sha256:3cd3bc628b25f74aedc6d374d5babf0166a92ff1317f46267f12d2ed54bc1d30", size = 65430, upload-time = "2024-12-24T18:30:08.504Z" }, - { url = "https://files.pythonhosted.org/packages/34/bd/b89380b7298e3af9b39f49334e3e2a4af0e04819789f04b43d560516c0c8/kiwisolver-1.4.8-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:370fd2df41660ed4e26b8c9d6bbcad668fbe2560462cba151a721d49e5b6628c", size = 126294, upload-time = "2024-12-24T18:30:09.508Z" }, - { url = "https://files.pythonhosted.org/packages/83/41/5857dc72e5e4148eaac5aa76e0703e594e4465f8ab7ec0fc60e3a9bb8fea/kiwisolver-1.4.8-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:84a2f830d42707de1d191b9490ac186bf7997a9495d4e9072210a1296345f7dc", size = 67736, upload-time = "2024-12-24T18:30:11.039Z" }, - { url = "https://files.pythonhosted.org/packages/e1/d1/be059b8db56ac270489fb0b3297fd1e53d195ba76e9bbb30e5401fa6b759/kiwisolver-1.4.8-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:7a3ad337add5148cf51ce0b55642dc551c0b9d6248458a757f98796ca7348712", size = 66194, upload-time = "2024-12-24T18:30:14.886Z" }, - { url = "https://files.pythonhosted.org/packages/e1/83/4b73975f149819eb7dcf9299ed467eba068ecb16439a98990dcb12e63fdd/kiwisolver-1.4.8-cp313-cp313t-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7506488470f41169b86d8c9aeff587293f530a23a23a49d6bc64dab66bedc71e", size = 1465942, upload-time = "2024-12-24T18:30:18.927Z" }, - { url = "https://files.pythonhosted.org/packages/c7/2c/30a5cdde5102958e602c07466bce058b9d7cb48734aa7a4327261ac8e002/kiwisolver-1.4.8-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2f0121b07b356a22fb0414cec4666bbe36fd6d0d759db3d37228f496ed67c880", size = 1595341, upload-time = "2024-12-24T18:30:22.102Z" }, - { url = "https://files.pythonhosted.org/packages/ff/9b/1e71db1c000385aa069704f5990574b8244cce854ecd83119c19e83c9586/kiwisolver-1.4.8-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d6d6bd87df62c27d4185de7c511c6248040afae67028a8a22012b010bc7ad062", size = 1598455, upload-time = "2024-12-24T18:30:24.947Z" }, - { url = "https://files.pythonhosted.org/packages/85/92/c8fec52ddf06231b31cbb779af77e99b8253cd96bd135250b9498144c78b/kiwisolver-1.4.8-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:291331973c64bb9cce50bbe871fb2e675c4331dab4f31abe89f175ad7679a4d7", size = 1522138, upload-time = "2024-12-24T18:30:26.286Z" }, - { url = "https://files.pythonhosted.org/packages/0b/51/9eb7e2cd07a15d8bdd976f6190c0164f92ce1904e5c0c79198c4972926b7/kiwisolver-1.4.8-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:893f5525bb92d3d735878ec00f781b2de998333659507d29ea4466208df37bed", size = 1582857, upload-time = "2024-12-24T18:30:28.86Z" }, - { url = "https://files.pythonhosted.org/packages/0f/95/c5a00387a5405e68ba32cc64af65ce881a39b98d73cc394b24143bebc5b8/kiwisolver-1.4.8-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:b47a465040146981dc9db8647981b8cb96366fbc8d452b031e4f8fdffec3f26d", size = 2293129, upload-time = "2024-12-24T18:30:30.34Z" }, - { url = "https://files.pythonhosted.org/packages/44/83/eeb7af7d706b8347548313fa3a3a15931f404533cc54fe01f39e830dd231/kiwisolver-1.4.8-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:99cea8b9dd34ff80c521aef46a1dddb0dcc0283cf18bde6d756f1e6f31772165", size = 2421538, upload-time = "2024-12-24T18:30:33.334Z" }, - { url = "https://files.pythonhosted.org/packages/05/f9/27e94c1b3eb29e6933b6986ffc5fa1177d2cd1f0c8efc5f02c91c9ac61de/kiwisolver-1.4.8-cp313-cp313t-musllinux_1_2_ppc64le.whl", hash = "sha256:151dffc4865e5fe6dafce5480fab84f950d14566c480c08a53c663a0020504b6", size = 2390661, upload-time = "2024-12-24T18:30:34.939Z" }, - { url = "https://files.pythonhosted.org/packages/d9/d4/3c9735faa36ac591a4afcc2980d2691000506050b7a7e80bcfe44048daa7/kiwisolver-1.4.8-cp313-cp313t-musllinux_1_2_s390x.whl", hash = "sha256:577facaa411c10421314598b50413aa1ebcf5126f704f1e5d72d7e4e9f020d90", size = 2546710, upload-time = "2024-12-24T18:30:37.281Z" }, - { url = "https://files.pythonhosted.org/packages/4c/fa/be89a49c640930180657482a74970cdcf6f7072c8d2471e1babe17a222dc/kiwisolver-1.4.8-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:be4816dc51c8a471749d664161b434912eee82f2ea66bd7628bd14583a833e85", size = 2349213, upload-time = "2024-12-24T18:30:40.019Z" }, - { url = "https://files.pythonhosted.org/packages/1f/f9/ae81c47a43e33b93b0a9819cac6723257f5da2a5a60daf46aa5c7226ea85/kiwisolver-1.4.8-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:e7a019419b7b510f0f7c9dceff8c5eae2392037eae483a7f9162625233802b0a", size = 60403, upload-time = "2024-12-24T18:30:41.372Z" }, - { url = "https://files.pythonhosted.org/packages/58/ca/f92b5cb6f4ce0c1ebfcfe3e2e42b96917e16f7090e45b21102941924f18f/kiwisolver-1.4.8-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:286b18e86682fd2217a48fc6be6b0f20c1d0ed10958d8dc53453ad58d7be0bf8", size = 58657, upload-time = "2024-12-24T18:30:42.392Z" }, - { url = "https://files.pythonhosted.org/packages/80/28/ae0240f732f0484d3a4dc885d055653c47144bdf59b670aae0ec3c65a7c8/kiwisolver-1.4.8-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4191ee8dfd0be1c3666ccbac178c5a05d5f8d689bbe3fc92f3c4abec817f8fe0", size = 84948, upload-time = "2024-12-24T18:30:44.703Z" }, - { url = "https://files.pythonhosted.org/packages/5d/eb/78d50346c51db22c7203c1611f9b513075f35c4e0e4877c5dde378d66043/kiwisolver-1.4.8-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7cd2785b9391f2873ad46088ed7599a6a71e762e1ea33e87514b1a441ed1da1c", size = 81186, upload-time = "2024-12-24T18:30:45.654Z" }, - { url = "https://files.pythonhosted.org/packages/43/f8/7259f18c77adca88d5f64f9a522792e178b2691f3748817a8750c2d216ef/kiwisolver-1.4.8-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c07b29089b7ba090b6f1a669f1411f27221c3662b3a1b7010e67b59bb5a6f10b", size = 80279, upload-time = "2024-12-24T18:30:47.951Z" }, - { url = "https://files.pythonhosted.org/packages/3a/1d/50ad811d1c5dae091e4cf046beba925bcae0a610e79ae4c538f996f63ed5/kiwisolver-1.4.8-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:65ea09a5a3faadd59c2ce96dc7bf0f364986a315949dc6374f04396b0d60e09b", size = 71762, upload-time = "2024-12-24T18:30:48.903Z" }, +version = "1.4.9" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/5c/3c/85844f1b0feb11ee581ac23fe5fce65cd049a200c1446708cc1b7f922875/kiwisolver-1.4.9.tar.gz", hash = "sha256:c3b22c26c6fd6811b0ae8363b95ca8ce4ea3c202d3d0975b2914310ceb1bcc4d", size = 97564, upload-time = "2025-08-10T21:27:49.279Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/6f/ab/c80b0d5a9d8a1a65f4f815f2afff9798b12c3b9f31f1d304dd233dd920e2/kiwisolver-1.4.9-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:eb14a5da6dc7642b0f3a18f13654847cd8b7a2550e2645a5bda677862b03ba16", size = 124167, upload-time = "2025-08-10T21:25:53.403Z" }, + { url = "https://files.pythonhosted.org/packages/a0/c0/27fe1a68a39cf62472a300e2879ffc13c0538546c359b86f149cc19f6ac3/kiwisolver-1.4.9-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:39a219e1c81ae3b103643d2aedb90f1ef22650deb266ff12a19e7773f3e5f089", size = 66579, upload-time = "2025-08-10T21:25:54.79Z" }, + { url = "https://files.pythonhosted.org/packages/31/a2/a12a503ac1fd4943c50f9822678e8015a790a13b5490354c68afb8489814/kiwisolver-1.4.9-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:2405a7d98604b87f3fc28b1716783534b1b4b8510d8142adca34ee0bc3c87543", size = 65309, upload-time = "2025-08-10T21:25:55.76Z" }, + { url = "https://files.pythonhosted.org/packages/66/e1/e533435c0be77c3f64040d68d7a657771194a63c279f55573188161e81ca/kiwisolver-1.4.9-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:dc1ae486f9abcef254b5618dfb4113dd49f94c68e3e027d03cf0143f3f772b61", size = 1435596, upload-time = "2025-08-10T21:25:56.861Z" }, + { url = "https://files.pythonhosted.org/packages/67/1e/51b73c7347f9aabdc7215aa79e8b15299097dc2f8e67dee2b095faca9cb0/kiwisolver-1.4.9-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:8a1f570ce4d62d718dce3f179ee78dac3b545ac16c0c04bb363b7607a949c0d1", size = 1246548, upload-time = "2025-08-10T21:25:58.246Z" }, + { url = "https://files.pythonhosted.org/packages/21/aa/72a1c5d1e430294f2d32adb9542719cfb441b5da368d09d268c7757af46c/kiwisolver-1.4.9-cp311-cp311-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:cb27e7b78d716c591e88e0a09a2139c6577865d7f2e152488c2cc6257f460872", size = 1263618, upload-time = "2025-08-10T21:25:59.857Z" }, + { url = "https://files.pythonhosted.org/packages/a3/af/db1509a9e79dbf4c260ce0cfa3903ea8945f6240e9e59d1e4deb731b1a40/kiwisolver-1.4.9-cp311-cp311-manylinux_2_24_s390x.manylinux_2_28_s390x.whl", hash = "sha256:15163165efc2f627eb9687ea5f3a28137217d217ac4024893d753f46bce9de26", size = 1317437, upload-time = "2025-08-10T21:26:01.105Z" }, + { url = "https://files.pythonhosted.org/packages/e0/f2/3ea5ee5d52abacdd12013a94130436e19969fa183faa1e7c7fbc89e9a42f/kiwisolver-1.4.9-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:bdee92c56a71d2b24c33a7d4c2856bd6419d017e08caa7802d2963870e315028", size = 2195742, upload-time = "2025-08-10T21:26:02.675Z" }, + { url = "https://files.pythonhosted.org/packages/6f/9b/1efdd3013c2d9a2566aa6a337e9923a00590c516add9a1e89a768a3eb2fc/kiwisolver-1.4.9-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:412f287c55a6f54b0650bd9b6dce5aceddb95864a1a90c87af16979d37c89771", size = 2290810, upload-time = "2025-08-10T21:26:04.009Z" }, + { url = "https://files.pythonhosted.org/packages/fb/e5/cfdc36109ae4e67361f9bc5b41323648cb24a01b9ade18784657e022e65f/kiwisolver-1.4.9-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:2c93f00dcba2eea70af2be5f11a830a742fe6b579a1d4e00f47760ef13be247a", size = 2461579, upload-time = "2025-08-10T21:26:05.317Z" }, + { url = "https://files.pythonhosted.org/packages/62/86/b589e5e86c7610842213994cdea5add00960076bef4ae290c5fa68589cac/kiwisolver-1.4.9-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:f117e1a089d9411663a3207ba874f31be9ac8eaa5b533787024dc07aeb74f464", size = 2268071, upload-time = "2025-08-10T21:26:06.686Z" }, + { url = "https://files.pythonhosted.org/packages/3b/c6/f8df8509fd1eee6c622febe54384a96cfaf4d43bf2ccec7a0cc17e4715c9/kiwisolver-1.4.9-cp311-cp311-win_amd64.whl", hash = "sha256:be6a04e6c79819c9a8c2373317d19a96048e5a3f90bec587787e86a1153883c2", size = 73840, upload-time = "2025-08-10T21:26:07.94Z" }, + { url = "https://files.pythonhosted.org/packages/e2/2d/16e0581daafd147bc11ac53f032a2b45eabac897f42a338d0a13c1e5c436/kiwisolver-1.4.9-cp311-cp311-win_arm64.whl", hash = "sha256:0ae37737256ba2de764ddc12aed4956460277f00c4996d51a197e72f62f5eec7", size = 65159, upload-time = "2025-08-10T21:26:09.048Z" }, + { url = "https://files.pythonhosted.org/packages/86/c9/13573a747838aeb1c76e3267620daa054f4152444d1f3d1a2324b78255b5/kiwisolver-1.4.9-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:ac5a486ac389dddcc5bef4f365b6ae3ffff2c433324fb38dd35e3fab7c957999", size = 123686, upload-time = "2025-08-10T21:26:10.034Z" }, + { url = "https://files.pythonhosted.org/packages/51/ea/2ecf727927f103ffd1739271ca19c424d0e65ea473fbaeea1c014aea93f6/kiwisolver-1.4.9-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:f2ba92255faa7309d06fe44c3a4a97efe1c8d640c2a79a5ef728b685762a6fd2", size = 66460, upload-time = "2025-08-10T21:26:11.083Z" }, + { url = "https://files.pythonhosted.org/packages/5b/5a/51f5464373ce2aeb5194508298a508b6f21d3867f499556263c64c621914/kiwisolver-1.4.9-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:4a2899935e724dd1074cb568ce7ac0dce28b2cd6ab539c8e001a8578eb106d14", size = 64952, upload-time = "2025-08-10T21:26:12.058Z" }, + { url = "https://files.pythonhosted.org/packages/70/90/6d240beb0f24b74371762873e9b7f499f1e02166a2d9c5801f4dbf8fa12e/kiwisolver-1.4.9-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:f6008a4919fdbc0b0097089f67a1eb55d950ed7e90ce2cc3e640abadd2757a04", size = 1474756, upload-time = "2025-08-10T21:26:13.096Z" }, + { url = "https://files.pythonhosted.org/packages/12/42/f36816eaf465220f683fb711efdd1bbf7a7005a2473d0e4ed421389bd26c/kiwisolver-1.4.9-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:67bb8b474b4181770f926f7b7d2f8c0248cbcb78b660fdd41a47054b28d2a752", size = 1276404, upload-time = "2025-08-10T21:26:14.457Z" }, + { url = "https://files.pythonhosted.org/packages/2e/64/bc2de94800adc830c476dce44e9b40fd0809cddeef1fde9fcf0f73da301f/kiwisolver-1.4.9-cp312-cp312-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:2327a4a30d3ee07d2fbe2e7933e8a37c591663b96ce42a00bc67461a87d7df77", size = 1294410, upload-time = "2025-08-10T21:26:15.73Z" }, + { url = "https://files.pythonhosted.org/packages/5f/42/2dc82330a70aa8e55b6d395b11018045e58d0bb00834502bf11509f79091/kiwisolver-1.4.9-cp312-cp312-manylinux_2_24_s390x.manylinux_2_28_s390x.whl", hash = "sha256:7a08b491ec91b1d5053ac177afe5290adacf1f0f6307d771ccac5de30592d198", size = 1343631, upload-time = "2025-08-10T21:26:17.045Z" }, + { url = "https://files.pythonhosted.org/packages/22/fd/f4c67a6ed1aab149ec5a8a401c323cee7a1cbe364381bb6c9c0d564e0e20/kiwisolver-1.4.9-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d8fc5c867c22b828001b6a38d2eaeb88160bf5783c6cb4a5e440efc981ce286d", size = 2224963, upload-time = "2025-08-10T21:26:18.737Z" }, + { url = "https://files.pythonhosted.org/packages/45/aa/76720bd4cb3713314677d9ec94dcc21ced3f1baf4830adde5bb9b2430a5f/kiwisolver-1.4.9-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:3b3115b2581ea35bb6d1f24a4c90af37e5d9b49dcff267eeed14c3893c5b86ab", size = 2321295, upload-time = "2025-08-10T21:26:20.11Z" }, + { url = "https://files.pythonhosted.org/packages/80/19/d3ec0d9ab711242f56ae0dc2fc5d70e298bb4a1f9dfab44c027668c673a1/kiwisolver-1.4.9-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:858e4c22fb075920b96a291928cb7dea5644e94c0ee4fcd5af7e865655e4ccf2", size = 2487987, upload-time = "2025-08-10T21:26:21.49Z" }, + { url = "https://files.pythonhosted.org/packages/39/e9/61e4813b2c97e86b6fdbd4dd824bf72d28bcd8d4849b8084a357bc0dd64d/kiwisolver-1.4.9-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ed0fecd28cc62c54b262e3736f8bb2512d8dcfdc2bcf08be5f47f96bf405b145", size = 2291817, upload-time = "2025-08-10T21:26:22.812Z" }, + { url = "https://files.pythonhosted.org/packages/a0/41/85d82b0291db7504da3c2defe35c9a8a5c9803a730f297bd823d11d5fb77/kiwisolver-1.4.9-cp312-cp312-win_amd64.whl", hash = "sha256:f68208a520c3d86ea51acf688a3e3002615a7f0238002cccc17affecc86a8a54", size = 73895, upload-time = "2025-08-10T21:26:24.37Z" }, + { url = "https://files.pythonhosted.org/packages/e2/92/5f3068cf15ee5cb624a0c7596e67e2a0bb2adee33f71c379054a491d07da/kiwisolver-1.4.9-cp312-cp312-win_arm64.whl", hash = "sha256:2c1a4f57df73965f3f14df20b80ee29e6a7930a57d2d9e8491a25f676e197c60", size = 64992, upload-time = "2025-08-10T21:26:25.732Z" }, + { url = "https://files.pythonhosted.org/packages/31/c1/c2686cda909742ab66c7388e9a1a8521a59eb89f8bcfbee28fc980d07e24/kiwisolver-1.4.9-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:a5d0432ccf1c7ab14f9949eec60c5d1f924f17c037e9f8b33352fa05799359b8", size = 123681, upload-time = "2025-08-10T21:26:26.725Z" }, + { url = "https://files.pythonhosted.org/packages/ca/f0/f44f50c9f5b1a1860261092e3bc91ecdc9acda848a8b8c6abfda4a24dd5c/kiwisolver-1.4.9-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:efb3a45b35622bb6c16dbfab491a8f5a391fe0e9d45ef32f4df85658232ca0e2", size = 66464, upload-time = "2025-08-10T21:26:27.733Z" }, + { url = "https://files.pythonhosted.org/packages/2d/7a/9d90a151f558e29c3936b8a47ac770235f436f2120aca41a6d5f3d62ae8d/kiwisolver-1.4.9-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:1a12cf6398e8a0a001a059747a1cbf24705e18fe413bc22de7b3d15c67cffe3f", size = 64961, upload-time = "2025-08-10T21:26:28.729Z" }, + { url = "https://files.pythonhosted.org/packages/e9/e9/f218a2cb3a9ffbe324ca29a9e399fa2d2866d7f348ec3a88df87fc248fc5/kiwisolver-1.4.9-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:b67e6efbf68e077dd71d1a6b37e43e1a99d0bff1a3d51867d45ee8908b931098", size = 1474607, upload-time = "2025-08-10T21:26:29.798Z" }, + { url = "https://files.pythonhosted.org/packages/d9/28/aac26d4c882f14de59041636292bc838db8961373825df23b8eeb807e198/kiwisolver-1.4.9-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5656aa670507437af0207645273ccdfee4f14bacd7f7c67a4306d0dcaeaf6eed", size = 1276546, upload-time = "2025-08-10T21:26:31.401Z" }, + { url = "https://files.pythonhosted.org/packages/8b/ad/8bfc1c93d4cc565e5069162f610ba2f48ff39b7de4b5b8d93f69f30c4bed/kiwisolver-1.4.9-cp313-cp313-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:bfc08add558155345129c7803b3671cf195e6a56e7a12f3dde7c57d9b417f525", size = 1294482, upload-time = "2025-08-10T21:26:32.721Z" }, + { url = "https://files.pythonhosted.org/packages/da/f1/6aca55ff798901d8ce403206d00e033191f63d82dd708a186e0ed2067e9c/kiwisolver-1.4.9-cp313-cp313-manylinux_2_24_s390x.manylinux_2_28_s390x.whl", hash = "sha256:40092754720b174e6ccf9e845d0d8c7d8e12c3d71e7fc35f55f3813e96376f78", size = 1343720, upload-time = "2025-08-10T21:26:34.032Z" }, + { url = "https://files.pythonhosted.org/packages/d1/91/eed031876c595c81d90d0f6fc681ece250e14bf6998c3d7c419466b523b7/kiwisolver-1.4.9-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:497d05f29a1300d14e02e6441cf0f5ee81c1ff5a304b0d9fb77423974684e08b", size = 2224907, upload-time = "2025-08-10T21:26:35.824Z" }, + { url = "https://files.pythonhosted.org/packages/e9/ec/4d1925f2e49617b9cca9c34bfa11adefad49d00db038e692a559454dfb2e/kiwisolver-1.4.9-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:bdd1a81a1860476eb41ac4bc1e07b3f07259e6d55bbf739b79c8aaedcf512799", size = 2321334, upload-time = "2025-08-10T21:26:37.534Z" }, + { url = "https://files.pythonhosted.org/packages/43/cb/450cd4499356f68802750c6ddc18647b8ea01ffa28f50d20598e0befe6e9/kiwisolver-1.4.9-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:e6b93f13371d341afee3be9f7c5964e3fe61d5fa30f6a30eb49856935dfe4fc3", size = 2488313, upload-time = "2025-08-10T21:26:39.191Z" }, + { url = "https://files.pythonhosted.org/packages/71/67/fc76242bd99f885651128a5d4fa6083e5524694b7c88b489b1b55fdc491d/kiwisolver-1.4.9-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:d75aa530ccfaa593da12834b86a0724f58bff12706659baa9227c2ccaa06264c", size = 2291970, upload-time = "2025-08-10T21:26:40.828Z" }, + { url = "https://files.pythonhosted.org/packages/75/bd/f1a5d894000941739f2ae1b65a32892349423ad49c2e6d0771d0bad3fae4/kiwisolver-1.4.9-cp313-cp313-win_amd64.whl", hash = "sha256:dd0a578400839256df88c16abddf9ba14813ec5f21362e1fe65022e00c883d4d", size = 73894, upload-time = "2025-08-10T21:26:42.33Z" }, + { url = "https://files.pythonhosted.org/packages/95/38/dce480814d25b99a391abbddadc78f7c117c6da34be68ca8b02d5848b424/kiwisolver-1.4.9-cp313-cp313-win_arm64.whl", hash = "sha256:d4188e73af84ca82468f09cadc5ac4db578109e52acb4518d8154698d3a87ca2", size = 64995, upload-time = "2025-08-10T21:26:43.889Z" }, + { url = "https://files.pythonhosted.org/packages/e2/37/7d218ce5d92dadc5ebdd9070d903e0c7cf7edfe03f179433ac4d13ce659c/kiwisolver-1.4.9-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:5a0f2724dfd4e3b3ac5a82436a8e6fd16baa7d507117e4279b660fe8ca38a3a1", size = 126510, upload-time = "2025-08-10T21:26:44.915Z" }, + { url = "https://files.pythonhosted.org/packages/23/b0/e85a2b48233daef4b648fb657ebbb6f8367696a2d9548a00b4ee0eb67803/kiwisolver-1.4.9-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:1b11d6a633e4ed84fc0ddafd4ebfd8ea49b3f25082c04ad12b8315c11d504dc1", size = 67903, upload-time = "2025-08-10T21:26:45.934Z" }, + { url = "https://files.pythonhosted.org/packages/44/98/f2425bc0113ad7de24da6bb4dae1343476e95e1d738be7c04d31a5d037fd/kiwisolver-1.4.9-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:61874cdb0a36016354853593cffc38e56fc9ca5aa97d2c05d3dcf6922cd55a11", size = 66402, upload-time = "2025-08-10T21:26:47.101Z" }, + { url = "https://files.pythonhosted.org/packages/98/d8/594657886df9f34c4177cc353cc28ca7e6e5eb562d37ccc233bff43bbe2a/kiwisolver-1.4.9-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:60c439763a969a6af93b4881db0eed8fadf93ee98e18cbc35bc8da868d0c4f0c", size = 1582135, upload-time = "2025-08-10T21:26:48.665Z" }, + { url = "https://files.pythonhosted.org/packages/5c/c6/38a115b7170f8b306fc929e166340c24958347308ea3012c2b44e7e295db/kiwisolver-1.4.9-cp313-cp313t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:92a2f997387a1b79a75e7803aa7ded2cfbe2823852ccf1ba3bcf613b62ae3197", size = 1389409, upload-time = "2025-08-10T21:26:50.335Z" }, + { url = "https://files.pythonhosted.org/packages/bf/3b/e04883dace81f24a568bcee6eb3001da4ba05114afa622ec9b6fafdc1f5e/kiwisolver-1.4.9-cp313-cp313t-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:a31d512c812daea6d8b3be3b2bfcbeb091dbb09177706569bcfc6240dcf8b41c", size = 1401763, upload-time = "2025-08-10T21:26:51.867Z" }, + { url = "https://files.pythonhosted.org/packages/9f/80/20ace48e33408947af49d7d15c341eaee69e4e0304aab4b7660e234d6288/kiwisolver-1.4.9-cp313-cp313t-manylinux_2_24_s390x.manylinux_2_28_s390x.whl", hash = "sha256:52a15b0f35dad39862d376df10c5230155243a2c1a436e39eb55623ccbd68185", size = 1453643, upload-time = "2025-08-10T21:26:53.592Z" }, + { url = "https://files.pythonhosted.org/packages/64/31/6ce4380a4cd1f515bdda976a1e90e547ccd47b67a1546d63884463c92ca9/kiwisolver-1.4.9-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:a30fd6fdef1430fd9e1ba7b3398b5ee4e2887783917a687d86ba69985fb08748", size = 2330818, upload-time = "2025-08-10T21:26:55.051Z" }, + { url = "https://files.pythonhosted.org/packages/fa/e9/3f3fcba3bcc7432c795b82646306e822f3fd74df0ee81f0fa067a1f95668/kiwisolver-1.4.9-cp313-cp313t-musllinux_1_2_ppc64le.whl", hash = "sha256:cc9617b46837c6468197b5945e196ee9ca43057bb7d9d1ae688101e4e1dddf64", size = 2419963, upload-time = "2025-08-10T21:26:56.421Z" }, + { url = "https://files.pythonhosted.org/packages/99/43/7320c50e4133575c66e9f7dadead35ab22d7c012a3b09bb35647792b2a6d/kiwisolver-1.4.9-cp313-cp313t-musllinux_1_2_s390x.whl", hash = "sha256:0ab74e19f6a2b027ea4f845a78827969af45ce790e6cb3e1ebab71bdf9f215ff", size = 2594639, upload-time = "2025-08-10T21:26:57.882Z" }, + { url = "https://files.pythonhosted.org/packages/65/d6/17ae4a270d4a987ef8a385b906d2bdfc9fce502d6dc0d3aea865b47f548c/kiwisolver-1.4.9-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:dba5ee5d3981160c28d5490f0d1b7ed730c22470ff7f6cc26cfcfaacb9896a07", size = 2391741, upload-time = "2025-08-10T21:26:59.237Z" }, + { url = "https://files.pythonhosted.org/packages/2a/8f/8f6f491d595a9e5912971f3f863d81baddccc8a4d0c3749d6a0dd9ffc9df/kiwisolver-1.4.9-cp313-cp313t-win_arm64.whl", hash = "sha256:0749fd8f4218ad2e851e11cc4dc05c7cbc0cbc4267bdfdb31782e65aace4ee9c", size = 68646, upload-time = "2025-08-10T21:27:00.52Z" }, + { url = "https://files.pythonhosted.org/packages/6b/32/6cc0fbc9c54d06c2969faa9c1d29f5751a2e51809dd55c69055e62d9b426/kiwisolver-1.4.9-cp314-cp314-macosx_10_13_universal2.whl", hash = "sha256:9928fe1eb816d11ae170885a74d074f57af3a0d65777ca47e9aeb854a1fba386", size = 123806, upload-time = "2025-08-10T21:27:01.537Z" }, + { url = "https://files.pythonhosted.org/packages/b2/dd/2bfb1d4a4823d92e8cbb420fe024b8d2167f72079b3bb941207c42570bdf/kiwisolver-1.4.9-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:d0005b053977e7b43388ddec89fa567f43d4f6d5c2c0affe57de5ebf290dc552", size = 66605, upload-time = "2025-08-10T21:27:03.335Z" }, + { url = "https://files.pythonhosted.org/packages/f7/69/00aafdb4e4509c2ca6064646cba9cd4b37933898f426756adb2cb92ebbed/kiwisolver-1.4.9-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:2635d352d67458b66fd0667c14cb1d4145e9560d503219034a18a87e971ce4f3", size = 64925, upload-time = "2025-08-10T21:27:04.339Z" }, + { url = "https://files.pythonhosted.org/packages/43/dc/51acc6791aa14e5cb6d8a2e28cefb0dc2886d8862795449d021334c0df20/kiwisolver-1.4.9-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:767c23ad1c58c9e827b649a9ab7809fd5fd9db266a9cf02b0e926ddc2c680d58", size = 1472414, upload-time = "2025-08-10T21:27:05.437Z" }, + { url = "https://files.pythonhosted.org/packages/3d/bb/93fa64a81db304ac8a246f834d5094fae4b13baf53c839d6bb6e81177129/kiwisolver-1.4.9-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:72d0eb9fba308b8311685c2268cf7d0a0639a6cd027d8128659f72bdd8a024b4", size = 1281272, upload-time = "2025-08-10T21:27:07.063Z" }, + { url = "https://files.pythonhosted.org/packages/70/e6/6df102916960fb8d05069d4bd92d6d9a8202d5a3e2444494e7cd50f65b7a/kiwisolver-1.4.9-cp314-cp314-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:f68e4f3eeca8fb22cc3d731f9715a13b652795ef657a13df1ad0c7dc0e9731df", size = 1298578, upload-time = "2025-08-10T21:27:08.452Z" }, + { url = "https://files.pythonhosted.org/packages/7c/47/e142aaa612f5343736b087864dbaebc53ea8831453fb47e7521fa8658f30/kiwisolver-1.4.9-cp314-cp314-manylinux_2_24_s390x.manylinux_2_28_s390x.whl", hash = "sha256:d84cd4061ae292d8ac367b2c3fa3aad11cb8625a95d135fe93f286f914f3f5a6", size = 1345607, upload-time = "2025-08-10T21:27:10.125Z" }, + { url = "https://files.pythonhosted.org/packages/54/89/d641a746194a0f4d1a3670fb900d0dbaa786fb98341056814bc3f058fa52/kiwisolver-1.4.9-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:a60ea74330b91bd22a29638940d115df9dc00af5035a9a2a6ad9399ffb4ceca5", size = 2230150, upload-time = "2025-08-10T21:27:11.484Z" }, + { url = "https://files.pythonhosted.org/packages/aa/6b/5ee1207198febdf16ac11f78c5ae40861b809cbe0e6d2a8d5b0b3044b199/kiwisolver-1.4.9-cp314-cp314-musllinux_1_2_ppc64le.whl", hash = "sha256:ce6a3a4e106cf35c2d9c4fa17c05ce0b180db622736845d4315519397a77beaf", size = 2325979, upload-time = "2025-08-10T21:27:12.917Z" }, + { url = "https://files.pythonhosted.org/packages/fc/ff/b269eefd90f4ae14dcc74973d5a0f6d28d3b9bb1afd8c0340513afe6b39a/kiwisolver-1.4.9-cp314-cp314-musllinux_1_2_s390x.whl", hash = "sha256:77937e5e2a38a7b48eef0585114fe7930346993a88060d0bf886086d2aa49ef5", size = 2491456, upload-time = "2025-08-10T21:27:14.353Z" }, + { url = "https://files.pythonhosted.org/packages/fc/d4/10303190bd4d30de547534601e259a4fbf014eed94aae3e5521129215086/kiwisolver-1.4.9-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:24c175051354f4a28c5d6a31c93906dc653e2bf234e8a4bbfb964892078898ce", size = 2294621, upload-time = "2025-08-10T21:27:15.808Z" }, + { url = "https://files.pythonhosted.org/packages/28/e0/a9a90416fce5c0be25742729c2ea52105d62eda6c4be4d803c2a7be1fa50/kiwisolver-1.4.9-cp314-cp314-win_amd64.whl", hash = "sha256:0763515d4df10edf6d06a3c19734e2566368980d21ebec439f33f9eb936c07b7", size = 75417, upload-time = "2025-08-10T21:27:17.436Z" }, + { url = "https://files.pythonhosted.org/packages/1f/10/6949958215b7a9a264299a7db195564e87900f709db9245e4ebdd3c70779/kiwisolver-1.4.9-cp314-cp314-win_arm64.whl", hash = "sha256:0e4e2bf29574a6a7b7f6cb5fa69293b9f96c928949ac4a53ba3f525dffb87f9c", size = 66582, upload-time = "2025-08-10T21:27:18.436Z" }, + { url = "https://files.pythonhosted.org/packages/ec/79/60e53067903d3bc5469b369fe0dfc6b3482e2133e85dae9daa9527535991/kiwisolver-1.4.9-cp314-cp314t-macosx_10_13_universal2.whl", hash = "sha256:d976bbb382b202f71c67f77b0ac11244021cfa3f7dfd9e562eefcea2df711548", size = 126514, upload-time = "2025-08-10T21:27:19.465Z" }, + { url = "https://files.pythonhosted.org/packages/25/d1/4843d3e8d46b072c12a38c97c57fab4608d36e13fe47d47ee96b4d61ba6f/kiwisolver-1.4.9-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:2489e4e5d7ef9a1c300a5e0196e43d9c739f066ef23270607d45aba368b91f2d", size = 67905, upload-time = "2025-08-10T21:27:20.51Z" }, + { url = "https://files.pythonhosted.org/packages/8c/ae/29ffcbd239aea8b93108de1278271ae764dfc0d803a5693914975f200596/kiwisolver-1.4.9-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:e2ea9f7ab7fbf18fffb1b5434ce7c69a07582f7acc7717720f1d69f3e806f90c", size = 66399, upload-time = "2025-08-10T21:27:21.496Z" }, + { url = "https://files.pythonhosted.org/packages/a1/ae/d7ba902aa604152c2ceba5d352d7b62106bedbccc8e95c3934d94472bfa3/kiwisolver-1.4.9-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:b34e51affded8faee0dfdb705416153819d8ea9250bbbf7ea1b249bdeb5f1122", size = 1582197, upload-time = "2025-08-10T21:27:22.604Z" }, + { url = "https://files.pythonhosted.org/packages/f2/41/27c70d427eddb8bc7e4f16420a20fefc6f480312122a59a959fdfe0445ad/kiwisolver-1.4.9-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d8aacd3d4b33b772542b2e01beb50187536967b514b00003bdda7589722d2a64", size = 1390125, upload-time = "2025-08-10T21:27:24.036Z" }, + { url = "https://files.pythonhosted.org/packages/41/42/b3799a12bafc76d962ad69083f8b43b12bf4fe78b097b12e105d75c9b8f1/kiwisolver-1.4.9-cp314-cp314t-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:7cf974dd4e35fa315563ac99d6287a1024e4dc2077b8a7d7cd3d2fb65d283134", size = 1402612, upload-time = "2025-08-10T21:27:25.773Z" }, + { url = "https://files.pythonhosted.org/packages/d2/b5/a210ea073ea1cfaca1bb5c55a62307d8252f531beb364e18aa1e0888b5a0/kiwisolver-1.4.9-cp314-cp314t-manylinux_2_24_s390x.manylinux_2_28_s390x.whl", hash = "sha256:85bd218b5ecfbee8c8a82e121802dcb519a86044c9c3b2e4aef02fa05c6da370", size = 1453990, upload-time = "2025-08-10T21:27:27.089Z" }, + { url = "https://files.pythonhosted.org/packages/5f/ce/a829eb8c033e977d7ea03ed32fb3c1781b4fa0433fbadfff29e39c676f32/kiwisolver-1.4.9-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:0856e241c2d3df4efef7c04a1e46b1936b6120c9bcf36dd216e3acd84bc4fb21", size = 2331601, upload-time = "2025-08-10T21:27:29.343Z" }, + { url = "https://files.pythonhosted.org/packages/e0/4b/b5e97eb142eb9cd0072dacfcdcd31b1c66dc7352b0f7c7255d339c0edf00/kiwisolver-1.4.9-cp314-cp314t-musllinux_1_2_ppc64le.whl", hash = "sha256:9af39d6551f97d31a4deebeac6f45b156f9755ddc59c07b402c148f5dbb6482a", size = 2422041, upload-time = "2025-08-10T21:27:30.754Z" }, + { url = "https://files.pythonhosted.org/packages/40/be/8eb4cd53e1b85ba4edc3a9321666f12b83113a178845593307a3e7891f44/kiwisolver-1.4.9-cp314-cp314t-musllinux_1_2_s390x.whl", hash = "sha256:bb4ae2b57fc1d8cbd1cf7b1d9913803681ffa903e7488012be5b76dedf49297f", size = 2594897, upload-time = "2025-08-10T21:27:32.803Z" }, + { url = "https://files.pythonhosted.org/packages/99/dd/841e9a66c4715477ea0abc78da039832fbb09dac5c35c58dc4c41a407b8a/kiwisolver-1.4.9-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:aedff62918805fb62d43a4aa2ecd4482c380dc76cd31bd7c8878588a61bd0369", size = 2391835, upload-time = "2025-08-10T21:27:34.23Z" }, + { url = "https://files.pythonhosted.org/packages/0c/28/4b2e5c47a0da96896fdfdb006340ade064afa1e63675d01ea5ac222b6d52/kiwisolver-1.4.9-cp314-cp314t-win_amd64.whl", hash = "sha256:1fa333e8b2ce4d9660f2cda9c0e1b6bafcfb2457a9d259faa82289e73ec24891", size = 79988, upload-time = "2025-08-10T21:27:35.587Z" }, + { url = "https://files.pythonhosted.org/packages/80/be/3578e8afd18c88cdf9cb4cffde75a96d2be38c5a903f1ed0ceec061bd09e/kiwisolver-1.4.9-cp314-cp314t-win_arm64.whl", hash = "sha256:4a48a2ce79d65d363597ef7b567ce3d14d68783d2b2263d98db3d9477805ba32", size = 70260, upload-time = "2025-08-10T21:27:36.606Z" }, + { url = "https://files.pythonhosted.org/packages/a3/0f/36d89194b5a32c054ce93e586d4049b6c2c22887b0eb229c61c68afd3078/kiwisolver-1.4.9-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:720e05574713db64c356e86732c0f3c5252818d05f9df320f0ad8380641acea5", size = 60104, upload-time = "2025-08-10T21:27:43.287Z" }, + { url = "https://files.pythonhosted.org/packages/52/ba/4ed75f59e4658fd21fe7dde1fee0ac397c678ec3befba3fe6482d987af87/kiwisolver-1.4.9-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:17680d737d5335b552994a2008fab4c851bcd7de33094a82067ef3a576ff02fa", size = 58592, upload-time = "2025-08-10T21:27:44.314Z" }, + { url = "https://files.pythonhosted.org/packages/33/01/a8ea7c5ea32a9b45ceeaee051a04c8ed4320f5add3c51bfa20879b765b70/kiwisolver-1.4.9-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:85b5352f94e490c028926ea567fc569c52ec79ce131dadb968d3853e809518c2", size = 80281, upload-time = "2025-08-10T21:27:45.369Z" }, + { url = "https://files.pythonhosted.org/packages/da/e3/dbd2ecdce306f1d07a1aaf324817ee993aab7aee9db47ceac757deabafbe/kiwisolver-1.4.9-pp311-pypy311_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:464415881e4801295659462c49461a24fb107c140de781d55518c4b80cb6790f", size = 78009, upload-time = "2025-08-10T21:27:46.376Z" }, + { url = "https://files.pythonhosted.org/packages/da/e9/0d4add7873a73e462aeb45c036a2dead2562b825aa46ba326727b3f31016/kiwisolver-1.4.9-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:fb940820c63a9590d31d88b815e7a3aa5915cad3ce735ab45f0c730b39547de1", size = 73929, upload-time = "2025-08-10T21:27:48.236Z" }, ] [[package]] name = "kombu" -version = "5.5.4" +version = "5.6.1" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "amqp" }, @@ -4991,18 +4021,27 @@ dependencies = [ { name = "tzdata" }, { name = "vine" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/0f/d3/5ff936d8319ac86b9c409f1501b07c426e6ad41966fedace9ef1b966e23f/kombu-5.5.4.tar.gz", hash = "sha256:886600168275ebeada93b888e831352fe578168342f0d1d5833d88ba0d847363", size = 461992, upload-time = "2025-06-01T10:19:22.281Z" } +sdist = { url = "https://files.pythonhosted.org/packages/ac/05/749ada8e51718445d915af13f1d18bc4333848e8faa0cb234028a3328ec8/kombu-5.6.1.tar.gz", hash = "sha256:90f1febb57ad4f53ca327a87598191b2520e0c793c75ea3b88d98e3b111282e4", size = 471548, upload-time = "2025-11-25T11:07:33.504Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/14/d6/943cf84117cd9ddecf6e1707a3f712a49fc64abdb8ac31b19132871af1dd/kombu-5.6.1-py3-none-any.whl", hash = "sha256:b69e3f5527ec32fc5196028a36376501682973e9620d6175d1c3d4eaf7e95409", size = 214141, upload-time = "2025-11-25T11:07:31.54Z" }, +] + +[[package]] +name = "lark" +version = "1.3.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/da/34/28fff3ab31ccff1fd4f6c7c7b0ceb2b6968d8ea4950663eadcb5720591a0/lark-1.3.1.tar.gz", hash = "sha256:b426a7a6d6d53189d318f2b6236ab5d6429eaf09259f1ca33eb716eed10d2905", size = 382732, upload-time = "2025-10-27T18:25:56.653Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/ef/70/a07dcf4f62598c8ad579df241af55ced65bed76e42e45d3c368a6d82dbc1/kombu-5.5.4-py3-none-any.whl", hash = "sha256:a12ed0557c238897d8e518f1d1fdf84bd1516c5e305af2dacd85c2015115feb8", size = 210034, upload-time = "2025-06-01T10:19:20.436Z" }, + { url = "https://files.pythonhosted.org/packages/82/3d/14ce75ef66813643812f3093ab17e46d3a206942ce7376d31ec2d36229e7/lark-1.3.1-py3-none-any.whl", hash = "sha256:c629b661023a014c37da873b4ff58a817398d12635d3bbb2c5a03be7fe5d1e12", size = 113151, upload-time = "2025-10-27T18:25:54.882Z" }, ] [[package]] name = "latexcodec" -version = "3.0.0" +version = "3.0.1" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/98/e7/ed339caf3662976949e4fdbfdf4a6db818b8d2aa1cf2b5f73af89e936bba/latexcodec-3.0.0.tar.gz", hash = "sha256:917dc5fe242762cc19d963e6548b42d63a118028cdd3361d62397e3b638b6bc5", size = 31023, upload-time = "2024-03-06T14:51:39.283Z" } +sdist = { url = "https://files.pythonhosted.org/packages/27/dd/4270b2c5e2ee49316c3859e62293bd2ea8e382339d63ab7bbe9f39c0ec3b/latexcodec-3.0.1.tar.gz", hash = "sha256:e78a6911cd72f9dec35031c6ec23584de6842bfbc4610a9678868d14cdfb0357", size = 31222, upload-time = "2025-06-17T18:47:34.051Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/b0/bf/ea8887e9f31a8f93ca306699d11909c6140151393a4216f0d9f85a004077/latexcodec-3.0.0-py3-none-any.whl", hash = "sha256:6f3477ad5e61a0a99bd31a6a370c34e88733a6bad9c921a3ffcfacada12f41a7", size = 18150, upload-time = "2024-03-06T14:51:37.872Z" }, + { url = "https://files.pythonhosted.org/packages/b5/40/23569737873cc9637fd488606347e9dd92b9fa37ba4fcda1f98ee5219a97/latexcodec-3.0.1-py3-none-any.whl", hash = "sha256:a9eb8200bff693f0437a69581f7579eb6bca25c4193515c09900ce76451e452e", size = 18532, upload-time = "2025-06-17T18:47:30.726Z" }, ] [[package]] @@ -5036,7 +4075,7 @@ wheels = [ [[package]] name = "lightning" -version = "2.5.1" +version = "2.5.6" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "fsspec", extra = ["http"], marker = "(extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim')" }, @@ -5044,82 +4083,90 @@ dependencies = [ { name = "packaging" }, { name = "pytorch-lightning" }, { name = "pyyaml" }, - { name = "torch", version = "2.2.0", source = { registry = "https://pypi.org/simple" } }, + { name = "torch", version = "2.7.0", source = { registry = "https://pypi.org/simple" } }, { name = "torchmetrics" }, { name = "tqdm" }, { name = "typing-extensions" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/39/53/21a834e03317d04cc3db7307d4c19af94c0db43b9001e8fabb8d150c5e69/lightning-2.5.1.tar.gz", hash = "sha256:aca88f8abf3fc38d8b40c1f82ce481f4379c2b181a6eeeb9217db0aba8e40736", size = 630918, upload-time = "2025-03-19T20:28:24.517Z" } +sdist = { url = "https://files.pythonhosted.org/packages/e9/da/289e17b2d4631b885771ce10ab7fe19c6c0ab2b1208d1dda418818ffbbfd/lightning-2.5.6.tar.gz", hash = "sha256:57b6abe87080895bc237fb7f36b7b4abaa2793760cbca00e3907e56607e0ed27", size = 640106, upload-time = "2025-11-05T20:53:06.823Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/80/eb/45f6629b92cb4ed38854d5b76f9f668ff58404a4b9ec1abefa98502afd98/lightning-2.5.1-py3-none-any.whl", hash = "sha256:512cbf9e80859f331b329536b2e2f90776e6f8a399048745bb4dabacc36e2850", size = 818892, upload-time = "2025-03-19T20:28:21.036Z" }, + { url = "https://files.pythonhosted.org/packages/23/dc/d7804f13928b6a81a0e948cfecbf0071e8cc74e3f341c704e23e75e504ad/lightning-2.5.6-py3-none-any.whl", hash = "sha256:25bb2053078c2efc57c082fda89dfbd975dfa76beb08def191947c2b571a8c8a", size = 827915, upload-time = "2025-11-05T20:53:03.169Z" }, ] [[package]] name = "lightning-utilities" -version = "0.14.3" +version = "0.15.2" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "packaging" }, - { name = "setuptools" }, - { name = "typing-extensions" }, + { name = "packaging", marker = "(extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim')" }, + { name = "setuptools", marker = "(extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim')" }, + { name = "typing-extensions", marker = "(extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim')" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/0f/bb/63a6a8c9e7a96b6ba92647fa5b1595c2dbee29f8178705adb4704d82ecba/lightning_utilities-0.14.3.tar.gz", hash = "sha256:37e2f83f273890052955a44054382c211a303012ee577619efbaa5df9e65e9f5", size = 30346, upload-time = "2025-04-03T15:59:56.928Z" } +sdist = { url = "https://files.pythonhosted.org/packages/b8/39/6fc58ca81492db047149b4b8fd385aa1bfb8c28cd7cacb0c7eb0c44d842f/lightning_utilities-0.15.2.tar.gz", hash = "sha256:cdf12f530214a63dacefd713f180d1ecf5d165338101617b4742e8f22c032e24", size = 31090, upload-time = "2025-08-06T13:57:39.242Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/1a/c1/31b3184cba7b257a4a3b5ca5b88b9204ccb7aa02fe3c992280899293ed54/lightning_utilities-0.14.3-py3-none-any.whl", hash = "sha256:4ab9066aa36cd7b93a05713808901909e96cc3f187ea6fd3052b2fd91313b468", size = 28894, upload-time = "2025-04-03T15:59:55.658Z" }, + { url = "https://files.pythonhosted.org/packages/de/73/3d757cb3fc16f0f9794dd289bcd0c4a031d9cf54d8137d6b984b2d02edf3/lightning_utilities-0.15.2-py3-none-any.whl", hash = "sha256:ad3ab1703775044bbf880dbf7ddaaac899396c96315f3aa1779cec9d618a9841", size = 29431, upload-time = "2025-08-06T13:57:38.046Z" }, ] [[package]] name = "llvmlite" -version = "0.44.0" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/89/6a/95a3d3610d5c75293d5dbbb2a76480d5d4eeba641557b69fe90af6c5b84e/llvmlite-0.44.0.tar.gz", hash = "sha256:07667d66a5d150abed9157ab6c0b9393c9356f229784a4385c02f99e94fc94d4", size = 171880, upload-time = "2025-01-20T11:14:41.342Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/41/75/d4863ddfd8ab5f6e70f4504cf8cc37f4e986ec6910f4ef8502bb7d3c1c71/llvmlite-0.44.0-cp310-cp310-macosx_10_14_x86_64.whl", hash = "sha256:9fbadbfba8422123bab5535b293da1cf72f9f478a65645ecd73e781f962ca614", size = 28132306, upload-time = "2025-01-20T11:12:18.634Z" }, - { url = "https://files.pythonhosted.org/packages/37/d9/6e8943e1515d2f1003e8278819ec03e4e653e2eeb71e4d00de6cfe59424e/llvmlite-0.44.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:cccf8eb28f24840f2689fb1a45f9c0f7e582dd24e088dcf96e424834af11f791", size = 26201096, upload-time = "2025-01-20T11:12:24.544Z" }, - { url = "https://files.pythonhosted.org/packages/aa/46/8ffbc114def88cc698906bf5acab54ca9fdf9214fe04aed0e71731fb3688/llvmlite-0.44.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7202b678cdf904823c764ee0fe2dfe38a76981f4c1e51715b4cb5abb6cf1d9e8", size = 42361859, upload-time = "2025-01-20T11:12:31.839Z" }, - { url = "https://files.pythonhosted.org/packages/30/1c/9366b29ab050a726af13ebaae8d0dff00c3c58562261c79c635ad4f5eb71/llvmlite-0.44.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:40526fb5e313d7b96bda4cbb2c85cd5374e04d80732dd36a282d72a560bb6408", size = 41184199, upload-time = "2025-01-20T11:12:40.049Z" }, - { url = "https://files.pythonhosted.org/packages/69/07/35e7c594b021ecb1938540f5bce543ddd8713cff97f71d81f021221edc1b/llvmlite-0.44.0-cp310-cp310-win_amd64.whl", hash = "sha256:41e3839150db4330e1b2716c0be3b5c4672525b4c9005e17c7597f835f351ce2", size = 30332381, upload-time = "2025-01-20T11:12:47.054Z" }, - { url = "https://files.pythonhosted.org/packages/b5/e2/86b245397052386595ad726f9742e5223d7aea999b18c518a50e96c3aca4/llvmlite-0.44.0-cp311-cp311-macosx_10_14_x86_64.whl", hash = "sha256:eed7d5f29136bda63b6d7804c279e2b72e08c952b7c5df61f45db408e0ee52f3", size = 28132305, upload-time = "2025-01-20T11:12:53.936Z" }, - { url = "https://files.pythonhosted.org/packages/ff/ec/506902dc6870249fbe2466d9cf66d531265d0f3a1157213c8f986250c033/llvmlite-0.44.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ace564d9fa44bb91eb6e6d8e7754977783c68e90a471ea7ce913bff30bd62427", size = 26201090, upload-time = "2025-01-20T11:12:59.847Z" }, - { url = "https://files.pythonhosted.org/packages/99/fe/d030f1849ebb1f394bb3f7adad5e729b634fb100515594aca25c354ffc62/llvmlite-0.44.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c5d22c3bfc842668168a786af4205ec8e3ad29fb1bc03fd11fd48460d0df64c1", size = 42361858, upload-time = "2025-01-20T11:13:07.623Z" }, - { url = "https://files.pythonhosted.org/packages/d7/7a/ce6174664b9077fc673d172e4c888cb0b128e707e306bc33fff8c2035f0d/llvmlite-0.44.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f01a394e9c9b7b1d4e63c327b096d10f6f0ed149ef53d38a09b3749dcf8c9610", size = 41184200, upload-time = "2025-01-20T11:13:20.058Z" }, - { url = "https://files.pythonhosted.org/packages/5f/c6/258801143975a6d09a373f2641237992496e15567b907a4d401839d671b8/llvmlite-0.44.0-cp311-cp311-win_amd64.whl", hash = "sha256:d8489634d43c20cd0ad71330dde1d5bc7b9966937a263ff1ec1cebb90dc50955", size = 30331193, upload-time = "2025-01-20T11:13:26.976Z" }, - { url = "https://files.pythonhosted.org/packages/15/86/e3c3195b92e6e492458f16d233e58a1a812aa2bfbef9bdd0fbafcec85c60/llvmlite-0.44.0-cp312-cp312-macosx_10_14_x86_64.whl", hash = "sha256:1d671a56acf725bf1b531d5ef76b86660a5ab8ef19bb6a46064a705c6ca80aad", size = 28132297, upload-time = "2025-01-20T11:13:32.57Z" }, - { url = "https://files.pythonhosted.org/packages/d6/53/373b6b8be67b9221d12b24125fd0ec56b1078b660eeae266ec388a6ac9a0/llvmlite-0.44.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:5f79a728e0435493611c9f405168682bb75ffd1fbe6fc360733b850c80a026db", size = 26201105, upload-time = "2025-01-20T11:13:38.744Z" }, - { url = "https://files.pythonhosted.org/packages/cb/da/8341fd3056419441286c8e26bf436923021005ece0bff5f41906476ae514/llvmlite-0.44.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0143a5ef336da14deaa8ec26c5449ad5b6a2b564df82fcef4be040b9cacfea9", size = 42361901, upload-time = "2025-01-20T11:13:46.711Z" }, - { url = "https://files.pythonhosted.org/packages/53/ad/d79349dc07b8a395a99153d7ce8b01d6fcdc9f8231355a5df55ded649b61/llvmlite-0.44.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d752f89e31b66db6f8da06df8b39f9b91e78c5feea1bf9e8c1fba1d1c24c065d", size = 41184247, upload-time = "2025-01-20T11:13:56.159Z" }, - { url = "https://files.pythonhosted.org/packages/e2/3b/a9a17366af80127bd09decbe2a54d8974b6d8b274b39bf47fbaedeec6307/llvmlite-0.44.0-cp312-cp312-win_amd64.whl", hash = "sha256:eae7e2d4ca8f88f89d315b48c6b741dcb925d6a1042da694aa16ab3dd4cbd3a1", size = 30332380, upload-time = "2025-01-20T11:14:02.442Z" }, - { url = "https://files.pythonhosted.org/packages/89/24/4c0ca705a717514c2092b18476e7a12c74d34d875e05e4d742618ebbf449/llvmlite-0.44.0-cp313-cp313-macosx_10_14_x86_64.whl", hash = "sha256:319bddd44e5f71ae2689859b7203080716448a3cd1128fb144fe5c055219d516", size = 28132306, upload-time = "2025-01-20T11:14:09.035Z" }, - { url = "https://files.pythonhosted.org/packages/01/cf/1dd5a60ba6aee7122ab9243fd614abcf22f36b0437cbbe1ccf1e3391461c/llvmlite-0.44.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:9c58867118bad04a0bb22a2e0068c693719658105e40009ffe95c7000fcde88e", size = 26201090, upload-time = "2025-01-20T11:14:15.401Z" }, - { url = "https://files.pythonhosted.org/packages/d2/1b/656f5a357de7135a3777bd735cc7c9b8f23b4d37465505bd0eaf4be9befe/llvmlite-0.44.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:46224058b13c96af1365290bdfebe9a6264ae62fb79b2b55693deed11657a8bf", size = 42361904, upload-time = "2025-01-20T11:14:22.949Z" }, - { url = "https://files.pythonhosted.org/packages/d8/e1/12c5f20cb9168fb3464a34310411d5ad86e4163c8ff2d14a2b57e5cc6bac/llvmlite-0.44.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:aa0097052c32bf721a4efc03bd109d335dfa57d9bffb3d4c24cc680711b8b4fc", size = 41184245, upload-time = "2025-01-20T11:14:31.731Z" }, - { url = "https://files.pythonhosted.org/packages/d0/81/e66fc86539293282fd9cb7c9417438e897f369e79ffb62e1ae5e5154d4dd/llvmlite-0.44.0-cp313-cp313-win_amd64.whl", hash = "sha256:2fb7c4f2fb86cbae6dca3db9ab203eeea0e22d73b99bc2341cdf9de93612e930", size = 30331193, upload-time = "2025-01-20T11:14:38.578Z" }, +version = "0.45.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/99/8d/5baf1cef7f9c084fb35a8afbde88074f0d6a727bc63ef764fe0e7543ba40/llvmlite-0.45.1.tar.gz", hash = "sha256:09430bb9d0bb58fc45a45a57c7eae912850bedc095cd0810a57de109c69e1c32", size = 185600, upload-time = "2025-10-01T17:59:52.046Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/04/ad/9bdc87b2eb34642c1cfe6bcb4f5db64c21f91f26b010f263e7467e7536a3/llvmlite-0.45.1-cp311-cp311-macosx_10_15_x86_64.whl", hash = "sha256:60f92868d5d3af30b4239b50e1717cb4e4e54f6ac1c361a27903b318d0f07f42", size = 43043526, upload-time = "2025-10-01T18:03:15.051Z" }, + { url = "https://files.pythonhosted.org/packages/a5/ea/c25c6382f452a943b4082da5e8c1665ce29a62884e2ec80608533e8e82d5/llvmlite-0.45.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:98baab513e19beb210f1ef39066288784839a44cd504e24fff5d17f1b3cf0860", size = 37253118, upload-time = "2025-10-01T18:04:06.783Z" }, + { url = "https://files.pythonhosted.org/packages/fe/af/85fc237de98b181dbbe8647324331238d6c52a3554327ccdc83ced28efba/llvmlite-0.45.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:3adc2355694d6a6fbcc024d59bb756677e7de506037c878022d7b877e7613a36", size = 56288209, upload-time = "2025-10-01T18:01:00.168Z" }, + { url = "https://files.pythonhosted.org/packages/0a/df/3daf95302ff49beff4230065e3178cd40e71294968e8d55baf4a9e560814/llvmlite-0.45.1-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:2f3377a6db40f563058c9515dedcc8a3e562d8693a106a28f2ddccf2c8fcf6ca", size = 55140958, upload-time = "2025-10-01T18:02:11.199Z" }, + { url = "https://files.pythonhosted.org/packages/a4/56/4c0d503fe03bac820ecdeb14590cf9a248e120f483bcd5c009f2534f23f0/llvmlite-0.45.1-cp311-cp311-win_amd64.whl", hash = "sha256:f9c272682d91e0d57f2a76c6d9ebdfccc603a01828cdbe3d15273bdca0c3363a", size = 38132232, upload-time = "2025-10-01T18:04:52.181Z" }, + { url = "https://files.pythonhosted.org/packages/e2/7c/82cbd5c656e8991bcc110c69d05913be2229302a92acb96109e166ae31fb/llvmlite-0.45.1-cp312-cp312-macosx_10_15_x86_64.whl", hash = "sha256:28e763aba92fe9c72296911e040231d486447c01d4f90027c8e893d89d49b20e", size = 43043524, upload-time = "2025-10-01T18:03:30.666Z" }, + { url = "https://files.pythonhosted.org/packages/9d/bc/5314005bb2c7ee9f33102c6456c18cc81745d7055155d1218f1624463774/llvmlite-0.45.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:1a53f4b74ee9fd30cb3d27d904dadece67a7575198bd80e687ee76474620735f", size = 37253123, upload-time = "2025-10-01T18:04:18.177Z" }, + { url = "https://files.pythonhosted.org/packages/96/76/0f7154952f037cb320b83e1c952ec4a19d5d689cf7d27cb8a26887d7bbc1/llvmlite-0.45.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:5b3796b1b1e1c14dcae34285d2f4ea488402fbd2c400ccf7137603ca3800864f", size = 56288211, upload-time = "2025-10-01T18:01:24.079Z" }, + { url = "https://files.pythonhosted.org/packages/00/b1/0b581942be2683ceb6862d558979e87387e14ad65a1e4db0e7dd671fa315/llvmlite-0.45.1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:779e2f2ceefef0f4368548685f0b4adde34e5f4b457e90391f570a10b348d433", size = 55140958, upload-time = "2025-10-01T18:02:30.482Z" }, + { url = "https://files.pythonhosted.org/packages/33/94/9ba4ebcf4d541a325fd8098ddc073b663af75cc8b065b6059848f7d4dce7/llvmlite-0.45.1-cp312-cp312-win_amd64.whl", hash = "sha256:9e6c9949baf25d9aa9cd7cf0f6d011b9ca660dd17f5ba2b23bdbdb77cc86b116", size = 38132231, upload-time = "2025-10-01T18:05:03.664Z" }, + { url = "https://files.pythonhosted.org/packages/1d/e2/c185bb7e88514d5025f93c6c4092f6120c6cea8fe938974ec9860fb03bbb/llvmlite-0.45.1-cp313-cp313-macosx_10_15_x86_64.whl", hash = "sha256:d9ea9e6f17569a4253515cc01dade70aba536476e3d750b2e18d81d7e670eb15", size = 43043524, upload-time = "2025-10-01T18:03:43.249Z" }, + { url = "https://files.pythonhosted.org/packages/09/b8/b5437b9ecb2064e89ccf67dccae0d02cd38911705112dd0dcbfa9cd9a9de/llvmlite-0.45.1-cp313-cp313-macosx_12_0_arm64.whl", hash = "sha256:c9f3cadee1630ce4ac18ea38adebf2a4f57a89bd2740ce83746876797f6e0bfb", size = 37253121, upload-time = "2025-10-01T18:04:30.557Z" }, + { url = "https://files.pythonhosted.org/packages/f7/97/ad1a907c0173a90dd4df7228f24a3ec61058bc1a9ff8a0caec20a0cc622e/llvmlite-0.45.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:57c48bf2e1083eedbc9406fb83c4e6483017879714916fe8be8a72a9672c995a", size = 56288210, upload-time = "2025-10-01T18:01:40.26Z" }, + { url = "https://files.pythonhosted.org/packages/32/d8/c99c8ac7a326e9735401ead3116f7685a7ec652691aeb2615aa732b1fc4a/llvmlite-0.45.1-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:3aa3dfceda4219ae39cf18806c60eeb518c1680ff834b8b311bd784160b9ce40", size = 55140957, upload-time = "2025-10-01T18:02:46.244Z" }, + { url = "https://files.pythonhosted.org/packages/09/56/ed35668130e32dbfad2eb37356793b0a95f23494ab5be7d9bf5cb75850ee/llvmlite-0.45.1-cp313-cp313-win_amd64.whl", hash = "sha256:080e6f8d0778a8239cd47686d402cb66eb165e421efa9391366a9b7e5810a38b", size = 38132232, upload-time = "2025-10-01T18:05:14.477Z" }, ] [[package]] name = "lmdb" -version = "1.6.2" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/71/54/fb1d5918406a72fcf46fbfaece7c0349d88cd8685f5443a142ddd7dac05b/lmdb-1.6.2.tar.gz", hash = "sha256:d28e3fa59935ff688858760ec52f202ecb8c1089a3f68d1f162ea3078d151e73", size = 881434, upload-time = "2025-01-06T06:25:02.517Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/01/03/2c6d95c9f450ad57e8264c0fa92f7b49cbaef6fc1b5963bf6c4872a7140b/lmdb-1.6.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:18422de2b4e70fc91b6d845a83f5b7355f85ea1c02f8180be0ab42c15191bead", size = 166252, upload-time = "2025-01-06T06:24:21.405Z" }, - { url = "https://files.pythonhosted.org/packages/e9/a6/f46e761bbb90b06d855a57a55de302c7adedc2a87eea5af99f793c6bc81a/lmdb-1.6.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:167328892282950cbb5a358fa6c05b60ffa00b2f40fb240e2e676359720256ac", size = 293462, upload-time = "2025-01-06T06:24:20.266Z" }, - { url = "https://files.pythonhosted.org/packages/75/78/2e04a41f12e8def7c9fa519e68b9cfd2554f030fbada24d747f9f9fe76d4/lmdb-1.6.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9d3efbbded74b9d213059a5a4048fb5bb47b5b7c4c2b366e43685cb6dd9d3100", size = 294825, upload-time = "2025-01-06T06:24:38.389Z" }, - { url = "https://files.pythonhosted.org/packages/f6/b9/99e3770afb8ca723dea6f65d97e2919f02765e084f767aa8008fdda9e561/lmdb-1.6.2-cp310-cp310-win_amd64.whl", hash = "sha256:13d4fdab8ac9ea90c317d2a5711feb9977e675b4ce50cf4706860d3617ade996", size = 100812, upload-time = "2025-01-06T06:24:22.95Z" }, - { url = "https://files.pythonhosted.org/packages/6a/d7/8747c7fd7665aed9f09fa1657a751a363729b098c2838a0b32e6b2719e68/lmdb-1.6.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:c42b3eae0437edb95dda96e582816766a9964436f844cc9c8ddb5d4219a63ff8", size = 166313, upload-time = "2025-01-06T06:24:19.917Z" }, - { url = "https://files.pythonhosted.org/packages/f7/c4/e0878a605e9ab033e2946f0964a0ade27897f426a7bafc86e5170ff36563/lmdb-1.6.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e365a09be1926dbc3ed2d4eacd9ab6125cb1f211c37e417917c26494dea24b64", size = 296529, upload-time = "2025-01-06T06:24:39.878Z" }, - { url = "https://files.pythonhosted.org/packages/56/e2/c6a21f398125855409c693e302ec4248567a09d4407f9975ee69ddf85eae/lmdb-1.6.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eae318f72cac81363f5218f529016c2fde6fcf7acc0d1cde55c18e2952cbf34a", size = 297812, upload-time = "2025-01-06T06:24:41.561Z" }, - { url = "https://files.pythonhosted.org/packages/a8/be/38568b361f476b96f422b559af0ee6179577492708c633bfce8baa31ad4f/lmdb-1.6.2-cp311-cp311-win_amd64.whl", hash = "sha256:40f7824888a8821adc4028cf70bd031395463aaf832d4c0460f5dab8ca0e0c7a", size = 100761, upload-time = "2025-01-06T06:24:14.04Z" }, - { url = "https://files.pythonhosted.org/packages/63/51/865bebe671305ae05fc42a65f4a2282a0f30c93ad1cad3d47ba863db2c8e/lmdb-1.6.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:5dc6885b764aaccd2ecb6b244dc3ecbcce8b65d6f7e5b36fb39a603359909650", size = 166526, upload-time = "2025-01-06T06:24:18.67Z" }, - { url = "https://files.pythonhosted.org/packages/bc/0a/b8055af1668b16e513ed476caa06578e7d942f665c2b11b4dbbbb8de048a/lmdb-1.6.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:de252e4a7895a0f1f8422b30c7f5b432612145538cf09e073b57f68fc5a88977", size = 298099, upload-time = "2025-01-06T06:24:42.829Z" }, - { url = "https://files.pythonhosted.org/packages/61/08/002b7a3d165115b214aff2e8333e511dc54ce64c02ece5500542f13c080b/lmdb-1.6.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4c45d63a49a17ab2caa5ec0d1da35bc81c5c85fa38dfb6ab7eacf817242334a7", size = 300995, upload-time = "2025-01-06T06:24:44.125Z" }, - { url = "https://files.pythonhosted.org/packages/4f/9a/180a933735df820680160ce86d49dab3fe6a2ae557c256b85b8177b98843/lmdb-1.6.2-cp312-cp312-win_amd64.whl", hash = "sha256:129379009c65e67187208eff75cdad74f4ae6f840521498f3e2da407ce5aaf66", size = 100604, upload-time = "2025-01-06T06:24:24.36Z" }, - { url = "https://files.pythonhosted.org/packages/4e/c8/78631801528f70ea8ded2a840b5e9064742fbcbe73f44ad31794214fae22/lmdb-1.6.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:3be24aa18f160958b90605fe5882b66998f9fa3d97221478d49782bd8f88392a", size = 168187, upload-time = "2025-01-06T06:24:17.095Z" }, - { url = "https://files.pythonhosted.org/packages/cd/64/38cef7aa933d8f50bd8e54b9e5479de5ac13cd6af5adf61310893c0b8831/lmdb-1.6.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:32154f561d5cdbe833798401a752868bb1a9c056d8de1e8faf92e62ca8f22999", size = 299537, upload-time = "2025-01-06T06:24:45.373Z" }, - { url = "https://files.pythonhosted.org/packages/54/69/7116305b2f6fde1d79695d9ea40b29ec2b9d4e2f7b8f36d24eb0ee4e9797/lmdb-1.6.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:45c772f24089a7ff1ebd8c59c6dc7f2da0c7b8b704b5e83ee9687c44c764554b", size = 302100, upload-time = "2025-01-06T06:24:46.732Z" }, - { url = "https://files.pythonhosted.org/packages/6e/16/d3c00e86c6dd6a0e09e247e64cf169cfe02ccb55ba2bb63663bcaf79d012/lmdb-1.6.2-cp313-cp313-win_amd64.whl", hash = "sha256:d9676fcba2cd388f24a5d15055e4a6de351e1df9febf5b176c93cd39cc80585e", size = 100665, upload-time = "2025-01-06T06:24:17.566Z" }, - { url = "https://files.pythonhosted.org/packages/43/2a/5f53d8a480eca1e06bb57501e051f067d484295012a965a5f743459f8308/lmdb-1.6.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:b2730b7be6667beb77b26dcc5e5668bfb16673715ca173af82c49be1783ae218", size = 78633, upload-time = "2025-01-06T06:24:20.171Z" }, - { url = "https://files.pythonhosted.org/packages/65/38/7e82d4ca177c8430ce7a979ca4cb64a9a65242e531c3e276707053e6e61b/lmdb-1.6.2-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:d1d1d2eef0f898b7f6b37b8c72d57c6ce67b56dc4a854ee64ddbbdd3cc07a7fb", size = 82696, upload-time = "2025-01-06T06:24:18.203Z" }, +version = "1.7.5" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/c7/a3/3756f2c6adba4a1413dba55e6c81a20b38a868656517308533e33cb59e1c/lmdb-1.7.5.tar.gz", hash = "sha256:f0604751762cb097059d5412444c4057b95f386c7ed958363cf63f453e5108da", size = 883490, upload-time = "2025-10-15T03:39:44.038Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/97/65/7a5776ae6b32e7a752c6df8112c8f9ae7f97d22d381c62a240fc464bc79c/lmdb-1.7.5-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b1a1be54f8c89f979c22c30b98ccb5d9478acdc9a0acb37f9a374a5adfd82e4b", size = 100773, upload-time = "2025-10-15T03:38:54.117Z" }, + { url = "https://files.pythonhosted.org/packages/60/93/ac197909df7bb7842d2d8020accea674e75ad70ddfabfbab2c9703241c58/lmdb-1.7.5-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:01907a5e9346d58fe29651f44119fe3aa33e1b248bb2ac27b48289cdfb552e68", size = 99294, upload-time = "2025-10-15T03:38:55.109Z" }, + { url = "https://files.pythonhosted.org/packages/95/4b/e0230ed03233732e5e87d6ebc0bd4e3a6ba463e33f3e1bc9d953e19ec765/lmdb-1.7.5-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:bb5d820d528dc1ec73e5e4b6c8d9d54103779256d504c1a84261ca944e749160", size = 294350, upload-time = "2025-10-15T03:38:56.162Z" }, + { url = "https://files.pythonhosted.org/packages/b8/96/53cf72032516fd77b94ccbc00c92e58a220f5d9f7295672bc13e62e3adb6/lmdb-1.7.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:716c93d170be22630e2e560c67081f80095b951b32de032a876b9c20dff8cc07", size = 295126, upload-time = "2025-10-15T03:38:57.306Z" }, + { url = "https://files.pythonhosted.org/packages/02/4d/af393c476a630331d6b5fb27ed5fac20f1597c8dcef877f5ddcccc58b4e5/lmdb-1.7.5-cp311-cp311-win_amd64.whl", hash = "sha256:2e0d17e917011fb303ece772e64adcbad409aea8ff4c53806511a6283290ae18", size = 99277, upload-time = "2025-10-15T03:38:58.428Z" }, + { url = "https://files.pythonhosted.org/packages/54/a9/82e506906f3fd7c12de97ac64f3b33f45fc8091ec6c915f58eb7660491bb/lmdb-1.7.5-cp311-cp311-win_arm64.whl", hash = "sha256:e6adff25d298df9bc1c9b9e9625a126d3b9e0c6b86c1d633d1a82152bcaf0afe", size = 94127, upload-time = "2025-10-15T03:38:59.789Z" }, + { url = "https://files.pythonhosted.org/packages/34/b4/8b862c4d7fd6f68cb33e2a919169fda8924121dc5ff61e3cc105304a6dd4/lmdb-1.7.5-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:b48c2359eea876d7b634b49f84019ecc8c1626da97c795fc7b39a793676815df", size = 100910, upload-time = "2025-10-15T03:39:00.727Z" }, + { url = "https://files.pythonhosted.org/packages/27/64/8ab5da48180d5f13a293ea00a9f8758b1bee080e76ea0ab0d6be0d51b55f/lmdb-1.7.5-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:2f84793baeb430ba984eb6c1b4e08c0a508b1c03e79ce79fcda0f29ecc06a95a", size = 99376, upload-time = "2025-10-15T03:39:01.791Z" }, + { url = "https://files.pythonhosted.org/packages/43/e0/51bc942fe5ed3fce69c631b54f52d97785de3d94487376139be6de1e199a/lmdb-1.7.5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:68cc21314a33faac1b749645a976b7655e7fa7cc104a72365d2429d2db7f6342", size = 298556, upload-time = "2025-10-15T03:39:02.787Z" }, + { url = "https://files.pythonhosted.org/packages/66/c5/19ea75c88b91d12da5c6f4bbe2aca633047b6b270fd613d557583d32cc5c/lmdb-1.7.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:f2d9b7e102fcfe5e0cfb3acdebd403eb55ccbe5f7202d8f49d60bdafb1546d1e", size = 299449, upload-time = "2025-10-15T03:39:03.903Z" }, + { url = "https://files.pythonhosted.org/packages/1b/74/365194203dbff47d3a1621366d6a1133cdcce261f4ac0e1d0496f01e6ace/lmdb-1.7.5-cp312-cp312-win_amd64.whl", hash = "sha256:69de89cc79e03e191fc6f95797f1bef91b45c415d1ea9d38872b00b2d989a50f", size = 99328, upload-time = "2025-10-15T03:39:04.949Z" }, + { url = "https://files.pythonhosted.org/packages/3f/3a/a441afebff5bd761f7f58d194fed7ac265279964957479a5c8a51c42f9ad/lmdb-1.7.5-cp312-cp312-win_arm64.whl", hash = "sha256:0c880ee4b309e900f2d58a710701f5e6316a351878588c6a95a9c0bcb640680b", size = 94191, upload-time = "2025-10-15T03:39:05.975Z" }, + { url = "https://files.pythonhosted.org/packages/38/f8/03275084218eacdbdf7e185d693e1db4cb79c35d18fac47fa0d388522a0d/lmdb-1.7.5-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:66ae02fa6179e46bb69fe446b7e956afe8706ae17ec1d4cd9f7056e161019156", size = 101508, upload-time = "2025-10-15T03:39:07.228Z" }, + { url = "https://files.pythonhosted.org/packages/20/b9/bc33ae2e4940359ba2fc412e6a755a2f126bc5062b4aaf35edd3a791f9a5/lmdb-1.7.5-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:bf65c573311ac8330c7908257f76b28ae3576020123400a81a6b650990dc028c", size = 100105, upload-time = "2025-10-15T03:39:08.491Z" }, + { url = "https://files.pythonhosted.org/packages/fa/f6/22f84b776a64d3992f052ecb637c35f1764a39df4f2190ecc5a3a1295bd7/lmdb-1.7.5-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:97bcb3fc12841a8828db918e494fe0fd016a73d2680ad830d75719bb3bf4e76a", size = 301500, upload-time = "2025-10-15T03:39:09.463Z" }, + { url = "https://files.pythonhosted.org/packages/2a/4d/8e6be8d7d5a30d47fa0ce4b55e3a8050ad689556e6e979d206b4ac67b733/lmdb-1.7.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:865f374f6206ab4aacb92ffb1dc612ee1a31a421db7c89733abe06b81ac87cb0", size = 302285, upload-time = "2025-10-15T03:39:10.856Z" }, + { url = "https://files.pythonhosted.org/packages/5e/dc/7e04fb31a8f88951db81ac677e3ccb3e09248eda40e6ad52f74fd9370c32/lmdb-1.7.5-cp313-cp313-win_amd64.whl", hash = "sha256:82a04d5ca2a6a799c8db7f209354c48aebb49ff338530f5813721fc4c68e4450", size = 99447, upload-time = "2025-10-15T03:39:12.151Z" }, + { url = "https://files.pythonhosted.org/packages/5b/50/e3f97efab17b3fad4afde99b3c957ecac4ffbefada6874a57ad0c695660a/lmdb-1.7.5-cp313-cp313-win_arm64.whl", hash = "sha256:0ad85a15acbfe8a42fdef92ee5e869610286d38507e976755f211be0fc905ca7", size = 94145, upload-time = "2025-10-15T03:39:13.461Z" }, + { url = "https://files.pythonhosted.org/packages/b9/03/4db578e0031fc4991b6e26ba023123d47a7f85614927cddc60c9c0e68249/lmdb-1.7.5-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:f7407ad1c02fba22d0f9b68e40fef0099992fe0ec4ab0ab0ccbe69f4ffea2f61", size = 101626, upload-time = "2025-10-15T03:39:14.386Z" }, + { url = "https://files.pythonhosted.org/packages/d1/79/e3572dd9f04eb9c68066ba158ea4f32754728882a6f2e7891cdb5b41691e/lmdb-1.7.5-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:f7553ef5fa6ffa5c7476b5d9a2415137b6b05a7456d1c94b51630d89e89e1c21", size = 100221, upload-time = "2025-10-15T03:39:15.653Z" }, + { url = "https://files.pythonhosted.org/packages/c3/4b/af08cf9930afa504011b73c4470788f63a2d1500f413c4d88e12d9f07194/lmdb-1.7.5-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:cef75c5a21cb6fa53e766396ab71b0d10efbedd61e80018666cd26ee099f1c13", size = 301179, upload-time = "2025-10-15T03:39:16.995Z" }, + { url = "https://files.pythonhosted.org/packages/28/5a/ff0cb35519e991dd1737e45d50e16e356b49c4c6d5de3f8915644f9f667d/lmdb-1.7.5-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:f201190ce528bf6e6ce564dae56bc235358df83099a55a9ec3f5f9c2e97d50d6", size = 303089, upload-time = "2025-10-15T03:39:18.369Z" }, + { url = "https://files.pythonhosted.org/packages/c6/49/a9bd905b4aaf71e251175f66d84235a777b349ef6e7c74d0d9f1eb8cd8ba/lmdb-1.7.5-cp314-cp314-win_amd64.whl", hash = "sha256:4121908b2a635aac71c9ca80a45233829223d07d0265801f629c3bd275d1614c", size = 101159, upload-time = "2025-10-15T03:39:19.516Z" }, + { url = "https://files.pythonhosted.org/packages/06/a9/1d26d67c78f154d954b8af49045b5cae587b5209b82c0fe49ce1a6f3f0db/lmdb-1.7.5-cp314-cp314-win_arm64.whl", hash = "sha256:8ee77e98ae968d29d254b0b609708aa03b1277ceb4d95711495faf9993e755a9", size = 96439, upload-time = "2025-10-15T03:39:20.502Z" }, + { url = "https://files.pythonhosted.org/packages/5b/41/0ab869d5fcfbc52a6eef3728a787d84a207c6b931cfa954c07495e7928e3/lmdb-1.7.5-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:db041344512fa8b7c78dcb97fd5d01ffd280bf408a400db6934688ff4216aed5", size = 102816, upload-time = "2025-10-15T03:39:21.788Z" }, + { url = "https://files.pythonhosted.org/packages/9b/0f/11ab447366d55f2d5ae7f70e8cbb1b84501fdea455a5dd1c382abaa03852/lmdb-1.7.5-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:484b3ff676a78f7a33aaeca35e273634a093da282e0eb0a9e9c4f69cfe28d702", size = 101136, upload-time = "2025-10-15T03:39:23.078Z" }, + { url = "https://files.pythonhosted.org/packages/fb/8d/b02f5d7b6ea08dfa847bb27c839d98e248ed5bb7f6211731dece78526ee9/lmdb-1.7.5-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:a73e8b7a748c0bbfeecf7d9be19da1d207736f7d613102c364512674390e6189", size = 321282, upload-time = "2025-10-15T03:39:24.085Z" }, + { url = "https://files.pythonhosted.org/packages/ab/55/31f2b31ab67f5af46121f2fbb123f97bdf01677af30320e3740a751d0961/lmdb-1.7.5-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:d0beb884f9af290efade5043899fc60a0b2b7c64fd1c2fde663cf584f7953fd7", size = 320360, upload-time = "2025-10-15T03:39:25.231Z" }, + { url = "https://files.pythonhosted.org/packages/4e/b5/8e762c972817669967146425fcd34bedaa169badda8ae7a1fbf630ef9ec5/lmdb-1.7.5-cp314-cp314t-win_amd64.whl", hash = "sha256:c8770d57233853eaa6ccc16b0ff885f7b7af0c2618a5f0cc3e90370b78a4399a", size = 100947, upload-time = "2025-10-15T03:39:26.505Z" }, + { url = "https://files.pythonhosted.org/packages/ba/c0/dc66cd1981de260ce14815a6821e33caf9003c206f43d50ae09052edb311/lmdb-1.7.5-cp314-cp314t-win_arm64.whl", hash = "sha256:742ed8fba936a10d13c72e5b168736c3d51656bd7b054d931daea17bcfcd7b41", size = 96895, upload-time = "2025-10-15T03:39:27.685Z" }, + { url = "https://files.pythonhosted.org/packages/bd/2c/982cb5afed533d0cb8038232b40c19b5b85a2d887dec74dfd39e8351ef4b/lmdb-1.7.5-py3-none-any.whl", hash = "sha256:fc344bb8bc0786c87c4ccb19b31f09a38c08bd159ada6f037d669426fea06f03", size = 148539, upload-time = "2025-10-15T03:39:42.982Z" }, ] [[package]] @@ -5137,7 +4184,7 @@ wheels = [ [[package]] name = "mace-torch" -version = "0.3.13" +version = "0.3.14" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "ase" }, @@ -5147,25 +4194,24 @@ dependencies = [ { name = "h5py" }, { name = "lmdb" }, { name = "matplotlib" }, - { name = "matscipy", version = "1.1.0", source = { registry = "https://pypi.org/simple" }, marker = "(extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "matscipy", version = "1.1.1", source = { registry = "https://pypi.org/simple" }, marker = "(extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, - { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, + { name = "matscipy", version = "1.1.1", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "matscipy", version = "1.2.0", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'linux' and extra == 'extra-5-mlipx-mace') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "numpy", version = "2.1.3", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'linux' and extra == 'extra-5-mlipx-mace') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, { name = "opt-einsum" }, { name = "orjson" }, { name = "pandas" }, { name = "prettytable" }, { name = "python-hostlist" }, { name = "pyyaml" }, - { name = "torch", version = "2.2.0", source = { registry = "https://pypi.org/simple" }, marker = "(extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, - { name = "torch", version = "2.7.1", source = { registry = "https://pypi.org/simple" }, marker = "(extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, + { name = "torch", version = "2.7.0", source = { registry = "https://pypi.org/simple" } }, { name = "torch-ema" }, { name = "torchmetrics" }, { name = "tqdm" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/a1/5d/a4f6edf70c9383208ed74abe758ee17c9f6d785d8695eb51889cdd62c525/mace_torch-0.3.13.tar.gz", hash = "sha256:32b44478cb40ffe625216a81bcbac001165baff1fa9378a47ad50c4550806da5", size = 175537, upload-time = "2025-05-01T15:43:49.828Z" } +sdist = { url = "https://files.pythonhosted.org/packages/c2/c5/41fcb72b386e4b864501430ca2075f0797a5915adca3c0f3022a20427d1a/mace_torch-0.3.14.tar.gz", hash = "sha256:7e05372b50b5ee3da2973d7da860bde0facbc0934bb672af264af303d3596d05", size = 206925, upload-time = "2025-08-06T17:30:15.272Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/88/e2/bbb81a1a03c539a38402c1a21debc8e6f09b4d8bbfd84fa54b3d43838f82/mace_torch-0.3.13-py3-none-any.whl", hash = "sha256:e0aeef5fdb493f94436e4a806f89e051240d79202bccd6bacf5c6007d9adf75a", size = 202043, upload-time = "2025-05-01T15:43:47.439Z" }, + { url = "https://files.pythonhosted.org/packages/c6/53/7d7b1de354a43e11cb19b370f81833f078f931aff4555b24e869013eea1a/mace_torch-0.3.14-py3-none-any.whl", hash = "sha256:9a7a00a79b3fa3448a13961e2a4af616ff10466fa193aeb4579dc83be9da1b00", size = 237087, upload-time = "2025-08-06T17:30:11.377Z" }, ] [[package]] @@ -5181,8 +4227,8 @@ dependencies = [ { name = "mongomock" }, { name = "monty" }, { name = "msgpack" }, - { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-5-mlipx-grace' or extra == 'extra-5-mlipx-matpes' or extra == 'extra-5-mlipx-mattersim' or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-5-mlipx-fairchem' or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb')" }, + { name = "numpy", version = "2.1.3", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'linux' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb')" }, { name = "orjson" }, { name = "pandas" }, { name = "pydantic" }, @@ -5203,101 +4249,118 @@ wheels = [ [[package]] name = "markdown" -version = "3.8" +version = "3.10" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/2f/15/222b423b0b88689c266d9eac4e61396fe2cc53464459d6a37618ac863b24/markdown-3.8.tar.gz", hash = "sha256:7df81e63f0df5c4b24b7d156eb81e4690595239b7d70937d0409f1b0de319c6f", size = 360906, upload-time = "2025-04-11T14:42:50.928Z" } +sdist = { url = "https://files.pythonhosted.org/packages/7d/ab/7dd27d9d863b3376fcf23a5a13cb5d024aed1db46f963f1b5735ae43b3be/markdown-3.10.tar.gz", hash = "sha256:37062d4f2aa4b2b6b32aefb80faa300f82cc790cb949a35b8caede34f2b68c0e", size = 364931, upload-time = "2025-11-03T19:51:15.007Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/51/3f/afe76f8e2246ffbc867440cbcf90525264df0e658f8a5ca1f872b3f6192a/markdown-3.8-py3-none-any.whl", hash = "sha256:794a929b79c5af141ef5ab0f2f642d0f7b1872981250230e72682346f7cc90dc", size = 106210, upload-time = "2025-04-11T14:42:49.178Z" }, + { url = "https://files.pythonhosted.org/packages/70/81/54e3ce63502cd085a0c556652a4e1b919c45a446bd1e5300e10c44c8c521/markdown-3.10-py3-none-any.whl", hash = "sha256:b5b99d6951e2e4948d939255596523444c0e677c669700b1d17aa4a8a464cb7c", size = 107678, upload-time = "2025-11-03T19:51:13.887Z" }, ] [[package]] name = "markdown-it-py" -version = "3.0.0" +version = "4.0.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "mdurl" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/38/71/3b932df36c1a044d397a1f92d1cf91ee0a503d91e470cbd670aa66b07ed0/markdown-it-py-3.0.0.tar.gz", hash = "sha256:e3f60a94fa066dc52ec76661e37c851cb232d92f9886b15cb560aaada2df8feb", size = 74596, upload-time = "2023-06-03T06:41:14.443Z" } +sdist = { url = "https://files.pythonhosted.org/packages/5b/f5/4ec618ed16cc4f8fb3b701563655a69816155e79e24a17b651541804721d/markdown_it_py-4.0.0.tar.gz", hash = "sha256:cb0a2b4aa34f932c007117b194e945bd74e0ec24133ceb5bac59009cda1cb9f3", size = 73070, upload-time = "2025-08-11T12:57:52.854Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/42/d7/1ec15b46af6af88f19b8e5ffea08fa375d433c998b8a7639e76935c14f1f/markdown_it_py-3.0.0-py3-none-any.whl", hash = "sha256:355216845c60bd96232cd8d8c40e8f9765cc86f46880e43a8fd22dc1a1a8cab1", size = 87528, upload-time = "2023-06-03T06:41:11.019Z" }, + { url = "https://files.pythonhosted.org/packages/94/54/e7d793b573f298e1c9013b8c4dade17d481164aa517d1d7148619c2cedbf/markdown_it_py-4.0.0-py3-none-any.whl", hash = "sha256:87327c59b172c5011896038353a81343b6754500a08cd7a4973bb48c6d578147", size = 87321, upload-time = "2025-08-11T12:57:51.923Z" }, ] [[package]] name = "markupsafe" -version = "3.0.2" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/b2/97/5d42485e71dfc078108a86d6de8fa46db44a1a9295e89c5d6d4a06e23a62/markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0", size = 20537, upload-time = "2024-10-18T15:21:54.129Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/04/90/d08277ce111dd22f77149fd1a5d4653eeb3b3eaacbdfcbae5afb2600eebd/MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8", size = 14357, upload-time = "2024-10-18T15:20:51.44Z" }, - { url = "https://files.pythonhosted.org/packages/04/e1/6e2194baeae0bca1fae6629dc0cbbb968d4d941469cbab11a3872edff374/MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158", size = 12393, upload-time = "2024-10-18T15:20:52.426Z" }, - { url = "https://files.pythonhosted.org/packages/1d/69/35fa85a8ece0a437493dc61ce0bb6d459dcba482c34197e3efc829aa357f/MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579", size = 21732, upload-time = "2024-10-18T15:20:53.578Z" }, - { url = "https://files.pythonhosted.org/packages/22/35/137da042dfb4720b638d2937c38a9c2df83fe32d20e8c8f3185dbfef05f7/MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d", size = 20866, upload-time = "2024-10-18T15:20:55.06Z" }, - { url = "https://files.pythonhosted.org/packages/29/28/6d029a903727a1b62edb51863232152fd335d602def598dade38996887f0/MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb", size = 20964, upload-time = "2024-10-18T15:20:55.906Z" }, - { url = "https://files.pythonhosted.org/packages/cc/cd/07438f95f83e8bc028279909d9c9bd39e24149b0d60053a97b2bc4f8aa51/MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b", size = 21977, upload-time = "2024-10-18T15:20:57.189Z" }, - { url = "https://files.pythonhosted.org/packages/29/01/84b57395b4cc062f9c4c55ce0df7d3108ca32397299d9df00fedd9117d3d/MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c", size = 21366, upload-time = "2024-10-18T15:20:58.235Z" }, - { url = "https://files.pythonhosted.org/packages/bd/6e/61ebf08d8940553afff20d1fb1ba7294b6f8d279df9fd0c0db911b4bbcfd/MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171", size = 21091, upload-time = "2024-10-18T15:20:59.235Z" }, - { url = "https://files.pythonhosted.org/packages/11/23/ffbf53694e8c94ebd1e7e491de185124277964344733c45481f32ede2499/MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50", size = 15065, upload-time = "2024-10-18T15:21:00.307Z" }, - { url = "https://files.pythonhosted.org/packages/44/06/e7175d06dd6e9172d4a69a72592cb3f7a996a9c396eee29082826449bbc3/MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a", size = 15514, upload-time = "2024-10-18T15:21:01.122Z" }, - { url = "https://files.pythonhosted.org/packages/6b/28/bbf83e3f76936960b850435576dd5e67034e200469571be53f69174a2dfd/MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d", size = 14353, upload-time = "2024-10-18T15:21:02.187Z" }, - { url = "https://files.pythonhosted.org/packages/6c/30/316d194b093cde57d448a4c3209f22e3046c5bb2fb0820b118292b334be7/MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93", size = 12392, upload-time = "2024-10-18T15:21:02.941Z" }, - { url = "https://files.pythonhosted.org/packages/f2/96/9cdafba8445d3a53cae530aaf83c38ec64c4d5427d975c974084af5bc5d2/MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832", size = 23984, upload-time = "2024-10-18T15:21:03.953Z" }, - { url = "https://files.pythonhosted.org/packages/f1/a4/aefb044a2cd8d7334c8a47d3fb2c9f328ac48cb349468cc31c20b539305f/MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84", size = 23120, upload-time = "2024-10-18T15:21:06.495Z" }, - { url = "https://files.pythonhosted.org/packages/8d/21/5e4851379f88f3fad1de30361db501300d4f07bcad047d3cb0449fc51f8c/MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca", size = 23032, upload-time = "2024-10-18T15:21:07.295Z" }, - { url = "https://files.pythonhosted.org/packages/00/7b/e92c64e079b2d0d7ddf69899c98842f3f9a60a1ae72657c89ce2655c999d/MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798", size = 24057, upload-time = "2024-10-18T15:21:08.073Z" }, - { url = "https://files.pythonhosted.org/packages/f9/ac/46f960ca323037caa0a10662ef97d0a4728e890334fc156b9f9e52bcc4ca/MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e", size = 23359, upload-time = "2024-10-18T15:21:09.318Z" }, - { url = "https://files.pythonhosted.org/packages/69/84/83439e16197337b8b14b6a5b9c2105fff81d42c2a7c5b58ac7b62ee2c3b1/MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4", size = 23306, upload-time = "2024-10-18T15:21:10.185Z" }, - { url = "https://files.pythonhosted.org/packages/9a/34/a15aa69f01e2181ed8d2b685c0d2f6655d5cca2c4db0ddea775e631918cd/MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d", size = 15094, upload-time = "2024-10-18T15:21:11.005Z" }, - { url = "https://files.pythonhosted.org/packages/da/b8/3a3bd761922d416f3dc5d00bfbed11f66b1ab89a0c2b6e887240a30b0f6b/MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b", size = 15521, upload-time = "2024-10-18T15:21:12.911Z" }, - { url = "https://files.pythonhosted.org/packages/22/09/d1f21434c97fc42f09d290cbb6350d44eb12f09cc62c9476effdb33a18aa/MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf", size = 14274, upload-time = "2024-10-18T15:21:13.777Z" }, - { url = "https://files.pythonhosted.org/packages/6b/b0/18f76bba336fa5aecf79d45dcd6c806c280ec44538b3c13671d49099fdd0/MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225", size = 12348, upload-time = "2024-10-18T15:21:14.822Z" }, - { url = "https://files.pythonhosted.org/packages/e0/25/dd5c0f6ac1311e9b40f4af06c78efde0f3b5cbf02502f8ef9501294c425b/MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028", size = 24149, upload-time = "2024-10-18T15:21:15.642Z" }, - { url = "https://files.pythonhosted.org/packages/f3/f0/89e7aadfb3749d0f52234a0c8c7867877876e0a20b60e2188e9850794c17/MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8", size = 23118, upload-time = "2024-10-18T15:21:17.133Z" }, - { url = "https://files.pythonhosted.org/packages/d5/da/f2eeb64c723f5e3777bc081da884b414671982008c47dcc1873d81f625b6/MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c", size = 22993, upload-time = "2024-10-18T15:21:18.064Z" }, - { url = "https://files.pythonhosted.org/packages/da/0e/1f32af846df486dce7c227fe0f2398dc7e2e51d4a370508281f3c1c5cddc/MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557", size = 24178, upload-time = "2024-10-18T15:21:18.859Z" }, - { url = "https://files.pythonhosted.org/packages/c4/f6/bb3ca0532de8086cbff5f06d137064c8410d10779c4c127e0e47d17c0b71/MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22", size = 23319, upload-time = "2024-10-18T15:21:19.671Z" }, - { url = "https://files.pythonhosted.org/packages/a2/82/8be4c96ffee03c5b4a034e60a31294daf481e12c7c43ab8e34a1453ee48b/MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48", size = 23352, upload-time = "2024-10-18T15:21:20.971Z" }, - { url = "https://files.pythonhosted.org/packages/51/ae/97827349d3fcffee7e184bdf7f41cd6b88d9919c80f0263ba7acd1bbcb18/MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30", size = 15097, upload-time = "2024-10-18T15:21:22.646Z" }, - { url = "https://files.pythonhosted.org/packages/c1/80/a61f99dc3a936413c3ee4e1eecac96c0da5ed07ad56fd975f1a9da5bc630/MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87", size = 15601, upload-time = "2024-10-18T15:21:23.499Z" }, - { url = "https://files.pythonhosted.org/packages/83/0e/67eb10a7ecc77a0c2bbe2b0235765b98d164d81600746914bebada795e97/MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd", size = 14274, upload-time = "2024-10-18T15:21:24.577Z" }, - { url = "https://files.pythonhosted.org/packages/2b/6d/9409f3684d3335375d04e5f05744dfe7e9f120062c9857df4ab490a1031a/MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430", size = 12352, upload-time = "2024-10-18T15:21:25.382Z" }, - { url = "https://files.pythonhosted.org/packages/d2/f5/6eadfcd3885ea85fe2a7c128315cc1bb7241e1987443d78c8fe712d03091/MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094", size = 24122, upload-time = "2024-10-18T15:21:26.199Z" }, - { url = "https://files.pythonhosted.org/packages/0c/91/96cf928db8236f1bfab6ce15ad070dfdd02ed88261c2afafd4b43575e9e9/MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396", size = 23085, upload-time = "2024-10-18T15:21:27.029Z" }, - { url = "https://files.pythonhosted.org/packages/c2/cf/c9d56af24d56ea04daae7ac0940232d31d5a8354f2b457c6d856b2057d69/MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79", size = 22978, upload-time = "2024-10-18T15:21:27.846Z" }, - { url = "https://files.pythonhosted.org/packages/2a/9f/8619835cd6a711d6272d62abb78c033bda638fdc54c4e7f4272cf1c0962b/MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a", size = 24208, upload-time = "2024-10-18T15:21:28.744Z" }, - { url = "https://files.pythonhosted.org/packages/f9/bf/176950a1792b2cd2102b8ffeb5133e1ed984547b75db47c25a67d3359f77/MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca", size = 23357, upload-time = "2024-10-18T15:21:29.545Z" }, - { url = "https://files.pythonhosted.org/packages/ce/4f/9a02c1d335caabe5c4efb90e1b6e8ee944aa245c1aaaab8e8a618987d816/MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c", size = 23344, upload-time = "2024-10-18T15:21:30.366Z" }, - { url = "https://files.pythonhosted.org/packages/ee/55/c271b57db36f748f0e04a759ace9f8f759ccf22b4960c270c78a394f58be/MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1", size = 15101, upload-time = "2024-10-18T15:21:31.207Z" }, - { url = "https://files.pythonhosted.org/packages/29/88/07df22d2dd4df40aba9f3e402e6dc1b8ee86297dddbad4872bd5e7b0094f/MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f", size = 15603, upload-time = "2024-10-18T15:21:32.032Z" }, - { url = "https://files.pythonhosted.org/packages/62/6a/8b89d24db2d32d433dffcd6a8779159da109842434f1dd2f6e71f32f738c/MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c", size = 14510, upload-time = "2024-10-18T15:21:33.625Z" }, - { url = "https://files.pythonhosted.org/packages/7a/06/a10f955f70a2e5a9bf78d11a161029d278eeacbd35ef806c3fd17b13060d/MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb", size = 12486, upload-time = "2024-10-18T15:21:34.611Z" }, - { url = "https://files.pythonhosted.org/packages/34/cf/65d4a571869a1a9078198ca28f39fba5fbb910f952f9dbc5220afff9f5e6/MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c", size = 25480, upload-time = "2024-10-18T15:21:35.398Z" }, - { url = "https://files.pythonhosted.org/packages/0c/e3/90e9651924c430b885468b56b3d597cabf6d72be4b24a0acd1fa0e12af67/MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d", size = 23914, upload-time = "2024-10-18T15:21:36.231Z" }, - { url = "https://files.pythonhosted.org/packages/66/8c/6c7cf61f95d63bb866db39085150df1f2a5bd3335298f14a66b48e92659c/MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe", size = 23796, upload-time = "2024-10-18T15:21:37.073Z" }, - { url = "https://files.pythonhosted.org/packages/bb/35/cbe9238ec3f47ac9a7c8b3df7a808e7cb50fe149dc7039f5f454b3fba218/MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5", size = 25473, upload-time = "2024-10-18T15:21:37.932Z" }, - { url = "https://files.pythonhosted.org/packages/e6/32/7621a4382488aa283cc05e8984a9c219abad3bca087be9ec77e89939ded9/MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a", size = 24114, upload-time = "2024-10-18T15:21:39.799Z" }, - { url = "https://files.pythonhosted.org/packages/0d/80/0985960e4b89922cb5a0bac0ed39c5b96cbc1a536a99f30e8c220a996ed9/MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9", size = 24098, upload-time = "2024-10-18T15:21:40.813Z" }, - { url = "https://files.pythonhosted.org/packages/82/78/fedb03c7d5380df2427038ec8d973587e90561b2d90cd472ce9254cf348b/MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6", size = 15208, upload-time = "2024-10-18T15:21:41.814Z" }, - { url = "https://files.pythonhosted.org/packages/4f/65/6079a46068dfceaeabb5dcad6d674f5f5c61a6fa5673746f42a9f4c233b3/MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f", size = 15739, upload-time = "2024-10-18T15:21:42.784Z" }, +version = "3.0.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/7e/99/7690b6d4034fffd95959cbe0c02de8deb3098cc577c67bb6a24fe5d7caa7/markupsafe-3.0.3.tar.gz", hash = "sha256:722695808f4b6457b320fdc131280796bdceb04ab50fe1795cd540799ebe1698", size = 80313, upload-time = "2025-09-27T18:37:40.426Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/08/db/fefacb2136439fc8dd20e797950e749aa1f4997ed584c62cfb8ef7c2be0e/markupsafe-3.0.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:1cc7ea17a6824959616c525620e387f6dd30fec8cb44f649e31712db02123dad", size = 11631, upload-time = "2025-09-27T18:36:18.185Z" }, + { url = "https://files.pythonhosted.org/packages/e1/2e/5898933336b61975ce9dc04decbc0a7f2fee78c30353c5efba7f2d6ff27a/markupsafe-3.0.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:4bd4cd07944443f5a265608cc6aab442e4f74dff8088b0dfc8238647b8f6ae9a", size = 12058, upload-time = "2025-09-27T18:36:19.444Z" }, + { url = "https://files.pythonhosted.org/packages/1d/09/adf2df3699d87d1d8184038df46a9c80d78c0148492323f4693df54e17bb/markupsafe-3.0.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6b5420a1d9450023228968e7e6a9ce57f65d148ab56d2313fcd589eee96a7a50", size = 24287, upload-time = "2025-09-27T18:36:20.768Z" }, + { url = "https://files.pythonhosted.org/packages/30/ac/0273f6fcb5f42e314c6d8cd99effae6a5354604d461b8d392b5ec9530a54/markupsafe-3.0.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:0bf2a864d67e76e5c9a34dc26ec616a66b9888e25e7b9460e1c76d3293bd9dbf", size = 22940, upload-time = "2025-09-27T18:36:22.249Z" }, + { url = "https://files.pythonhosted.org/packages/19/ae/31c1be199ef767124c042c6c3e904da327a2f7f0cd63a0337e1eca2967a8/markupsafe-3.0.3-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:bc51efed119bc9cfdf792cdeaa4d67e8f6fcccab66ed4bfdd6bde3e59bfcbb2f", size = 21887, upload-time = "2025-09-27T18:36:23.535Z" }, + { url = "https://files.pythonhosted.org/packages/b2/76/7edcab99d5349a4532a459e1fe64f0b0467a3365056ae550d3bcf3f79e1e/markupsafe-3.0.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:068f375c472b3e7acbe2d5318dea141359e6900156b5b2ba06a30b169086b91a", size = 23692, upload-time = "2025-09-27T18:36:24.823Z" }, + { url = "https://files.pythonhosted.org/packages/a4/28/6e74cdd26d7514849143d69f0bf2399f929c37dc2b31e6829fd2045b2765/markupsafe-3.0.3-cp311-cp311-musllinux_1_2_riscv64.whl", hash = "sha256:7be7b61bb172e1ed687f1754f8e7484f1c8019780f6f6b0786e76bb01c2ae115", size = 21471, upload-time = "2025-09-27T18:36:25.95Z" }, + { url = "https://files.pythonhosted.org/packages/62/7e/a145f36a5c2945673e590850a6f8014318d5577ed7e5920a4b3448e0865d/markupsafe-3.0.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:f9e130248f4462aaa8e2552d547f36ddadbeaa573879158d721bbd33dfe4743a", size = 22923, upload-time = "2025-09-27T18:36:27.109Z" }, + { url = "https://files.pythonhosted.org/packages/0f/62/d9c46a7f5c9adbeeeda52f5b8d802e1094e9717705a645efc71b0913a0a8/markupsafe-3.0.3-cp311-cp311-win32.whl", hash = "sha256:0db14f5dafddbb6d9208827849fad01f1a2609380add406671a26386cdf15a19", size = 14572, upload-time = "2025-09-27T18:36:28.045Z" }, + { url = "https://files.pythonhosted.org/packages/83/8a/4414c03d3f891739326e1783338e48fb49781cc915b2e0ee052aa490d586/markupsafe-3.0.3-cp311-cp311-win_amd64.whl", hash = "sha256:de8a88e63464af587c950061a5e6a67d3632e36df62b986892331d4620a35c01", size = 15077, upload-time = "2025-09-27T18:36:29.025Z" }, + { url = "https://files.pythonhosted.org/packages/35/73/893072b42e6862f319b5207adc9ae06070f095b358655f077f69a35601f0/markupsafe-3.0.3-cp311-cp311-win_arm64.whl", hash = "sha256:3b562dd9e9ea93f13d53989d23a7e775fdfd1066c33494ff43f5418bc8c58a5c", size = 13876, upload-time = "2025-09-27T18:36:29.954Z" }, + { url = "https://files.pythonhosted.org/packages/5a/72/147da192e38635ada20e0a2e1a51cf8823d2119ce8883f7053879c2199b5/markupsafe-3.0.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:d53197da72cc091b024dd97249dfc7794d6a56530370992a5e1a08983ad9230e", size = 11615, upload-time = "2025-09-27T18:36:30.854Z" }, + { url = "https://files.pythonhosted.org/packages/9a/81/7e4e08678a1f98521201c3079f77db69fb552acd56067661f8c2f534a718/markupsafe-3.0.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:1872df69a4de6aead3491198eaf13810b565bdbeec3ae2dc8780f14458ec73ce", size = 12020, upload-time = "2025-09-27T18:36:31.971Z" }, + { url = "https://files.pythonhosted.org/packages/1e/2c/799f4742efc39633a1b54a92eec4082e4f815314869865d876824c257c1e/markupsafe-3.0.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:3a7e8ae81ae39e62a41ec302f972ba6ae23a5c5396c8e60113e9066ef893da0d", size = 24332, upload-time = "2025-09-27T18:36:32.813Z" }, + { url = "https://files.pythonhosted.org/packages/3c/2e/8d0c2ab90a8c1d9a24f0399058ab8519a3279d1bd4289511d74e909f060e/markupsafe-3.0.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:d6dd0be5b5b189d31db7cda48b91d7e0a9795f31430b7f271219ab30f1d3ac9d", size = 22947, upload-time = "2025-09-27T18:36:33.86Z" }, + { url = "https://files.pythonhosted.org/packages/2c/54/887f3092a85238093a0b2154bd629c89444f395618842e8b0c41783898ea/markupsafe-3.0.3-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:94c6f0bb423f739146aec64595853541634bde58b2135f27f61c1ffd1cd4d16a", size = 21962, upload-time = "2025-09-27T18:36:35.099Z" }, + { url = "https://files.pythonhosted.org/packages/c9/2f/336b8c7b6f4a4d95e91119dc8521402461b74a485558d8f238a68312f11c/markupsafe-3.0.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:be8813b57049a7dc738189df53d69395eba14fb99345e0a5994914a3864c8a4b", size = 23760, upload-time = "2025-09-27T18:36:36.001Z" }, + { url = "https://files.pythonhosted.org/packages/32/43/67935f2b7e4982ffb50a4d169b724d74b62a3964bc1a9a527f5ac4f1ee2b/markupsafe-3.0.3-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:83891d0e9fb81a825d9a6d61e3f07550ca70a076484292a70fde82c4b807286f", size = 21529, upload-time = "2025-09-27T18:36:36.906Z" }, + { url = "https://files.pythonhosted.org/packages/89/e0/4486f11e51bbba8b0c041098859e869e304d1c261e59244baa3d295d47b7/markupsafe-3.0.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:77f0643abe7495da77fb436f50f8dab76dbc6e5fd25d39589a0f1fe6548bfa2b", size = 23015, upload-time = "2025-09-27T18:36:37.868Z" }, + { url = "https://files.pythonhosted.org/packages/2f/e1/78ee7a023dac597a5825441ebd17170785a9dab23de95d2c7508ade94e0e/markupsafe-3.0.3-cp312-cp312-win32.whl", hash = "sha256:d88b440e37a16e651bda4c7c2b930eb586fd15ca7406cb39e211fcff3bf3017d", size = 14540, upload-time = "2025-09-27T18:36:38.761Z" }, + { url = "https://files.pythonhosted.org/packages/aa/5b/bec5aa9bbbb2c946ca2733ef9c4ca91c91b6a24580193e891b5f7dbe8e1e/markupsafe-3.0.3-cp312-cp312-win_amd64.whl", hash = "sha256:26a5784ded40c9e318cfc2bdb30fe164bdb8665ded9cd64d500a34fb42067b1c", size = 15105, upload-time = "2025-09-27T18:36:39.701Z" }, + { url = "https://files.pythonhosted.org/packages/e5/f1/216fc1bbfd74011693a4fd837e7026152e89c4bcf3e77b6692fba9923123/markupsafe-3.0.3-cp312-cp312-win_arm64.whl", hash = "sha256:35add3b638a5d900e807944a078b51922212fb3dedb01633a8defc4b01a3c85f", size = 13906, upload-time = "2025-09-27T18:36:40.689Z" }, + { url = "https://files.pythonhosted.org/packages/38/2f/907b9c7bbba283e68f20259574b13d005c121a0fa4c175f9bed27c4597ff/markupsafe-3.0.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:e1cf1972137e83c5d4c136c43ced9ac51d0e124706ee1c8aa8532c1287fa8795", size = 11622, upload-time = "2025-09-27T18:36:41.777Z" }, + { url = "https://files.pythonhosted.org/packages/9c/d9/5f7756922cdd676869eca1c4e3c0cd0df60ed30199ffd775e319089cb3ed/markupsafe-3.0.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:116bb52f642a37c115f517494ea5feb03889e04df47eeff5b130b1808ce7c219", size = 12029, upload-time = "2025-09-27T18:36:43.257Z" }, + { url = "https://files.pythonhosted.org/packages/00/07/575a68c754943058c78f30db02ee03a64b3c638586fba6a6dd56830b30a3/markupsafe-3.0.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:133a43e73a802c5562be9bbcd03d090aa5a1fe899db609c29e8c8d815c5f6de6", size = 24374, upload-time = "2025-09-27T18:36:44.508Z" }, + { url = "https://files.pythonhosted.org/packages/a9/21/9b05698b46f218fc0e118e1f8168395c65c8a2c750ae2bab54fc4bd4e0e8/markupsafe-3.0.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ccfcd093f13f0f0b7fdd0f198b90053bf7b2f02a3927a30e63f3ccc9df56b676", size = 22980, upload-time = "2025-09-27T18:36:45.385Z" }, + { url = "https://files.pythonhosted.org/packages/7f/71/544260864f893f18b6827315b988c146b559391e6e7e8f7252839b1b846a/markupsafe-3.0.3-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:509fa21c6deb7a7a273d629cf5ec029bc209d1a51178615ddf718f5918992ab9", size = 21990, upload-time = "2025-09-27T18:36:46.916Z" }, + { url = "https://files.pythonhosted.org/packages/c2/28/b50fc2f74d1ad761af2f5dcce7492648b983d00a65b8c0e0cb457c82ebbe/markupsafe-3.0.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:a4afe79fb3de0b7097d81da19090f4df4f8d3a2b3adaa8764138aac2e44f3af1", size = 23784, upload-time = "2025-09-27T18:36:47.884Z" }, + { url = "https://files.pythonhosted.org/packages/ed/76/104b2aa106a208da8b17a2fb72e033a5a9d7073c68f7e508b94916ed47a9/markupsafe-3.0.3-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:795e7751525cae078558e679d646ae45574b47ed6e7771863fcc079a6171a0fc", size = 21588, upload-time = "2025-09-27T18:36:48.82Z" }, + { url = "https://files.pythonhosted.org/packages/b5/99/16a5eb2d140087ebd97180d95249b00a03aa87e29cc224056274f2e45fd6/markupsafe-3.0.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:8485f406a96febb5140bfeca44a73e3ce5116b2501ac54fe953e488fb1d03b12", size = 23041, upload-time = "2025-09-27T18:36:49.797Z" }, + { url = "https://files.pythonhosted.org/packages/19/bc/e7140ed90c5d61d77cea142eed9f9c303f4c4806f60a1044c13e3f1471d0/markupsafe-3.0.3-cp313-cp313-win32.whl", hash = "sha256:bdd37121970bfd8be76c5fb069c7751683bdf373db1ed6c010162b2a130248ed", size = 14543, upload-time = "2025-09-27T18:36:51.584Z" }, + { url = "https://files.pythonhosted.org/packages/05/73/c4abe620b841b6b791f2edc248f556900667a5a1cf023a6646967ae98335/markupsafe-3.0.3-cp313-cp313-win_amd64.whl", hash = "sha256:9a1abfdc021a164803f4d485104931fb8f8c1efd55bc6b748d2f5774e78b62c5", size = 15113, upload-time = "2025-09-27T18:36:52.537Z" }, + { url = "https://files.pythonhosted.org/packages/f0/3a/fa34a0f7cfef23cf9500d68cb7c32dd64ffd58a12b09225fb03dd37d5b80/markupsafe-3.0.3-cp313-cp313-win_arm64.whl", hash = "sha256:7e68f88e5b8799aa49c85cd116c932a1ac15caaa3f5db09087854d218359e485", size = 13911, upload-time = "2025-09-27T18:36:53.513Z" }, + { url = "https://files.pythonhosted.org/packages/e4/d7/e05cd7efe43a88a17a37b3ae96e79a19e846f3f456fe79c57ca61356ef01/markupsafe-3.0.3-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:218551f6df4868a8d527e3062d0fb968682fe92054e89978594c28e642c43a73", size = 11658, upload-time = "2025-09-27T18:36:54.819Z" }, + { url = "https://files.pythonhosted.org/packages/99/9e/e412117548182ce2148bdeacdda3bb494260c0b0184360fe0d56389b523b/markupsafe-3.0.3-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:3524b778fe5cfb3452a09d31e7b5adefeea8c5be1d43c4f810ba09f2ceb29d37", size = 12066, upload-time = "2025-09-27T18:36:55.714Z" }, + { url = "https://files.pythonhosted.org/packages/bc/e6/fa0ffcda717ef64a5108eaa7b4f5ed28d56122c9a6d70ab8b72f9f715c80/markupsafe-3.0.3-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:4e885a3d1efa2eadc93c894a21770e4bc67899e3543680313b09f139e149ab19", size = 25639, upload-time = "2025-09-27T18:36:56.908Z" }, + { url = "https://files.pythonhosted.org/packages/96/ec/2102e881fe9d25fc16cb4b25d5f5cde50970967ffa5dddafdb771237062d/markupsafe-3.0.3-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:8709b08f4a89aa7586de0aadc8da56180242ee0ada3999749b183aa23df95025", size = 23569, upload-time = "2025-09-27T18:36:57.913Z" }, + { url = "https://files.pythonhosted.org/packages/4b/30/6f2fce1f1f205fc9323255b216ca8a235b15860c34b6798f810f05828e32/markupsafe-3.0.3-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:b8512a91625c9b3da6f127803b166b629725e68af71f8184ae7e7d54686a56d6", size = 23284, upload-time = "2025-09-27T18:36:58.833Z" }, + { url = "https://files.pythonhosted.org/packages/58/47/4a0ccea4ab9f5dcb6f79c0236d954acb382202721e704223a8aafa38b5c8/markupsafe-3.0.3-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:9b79b7a16f7fedff2495d684f2b59b0457c3b493778c9eed31111be64d58279f", size = 24801, upload-time = "2025-09-27T18:36:59.739Z" }, + { url = "https://files.pythonhosted.org/packages/6a/70/3780e9b72180b6fecb83a4814d84c3bf4b4ae4bf0b19c27196104149734c/markupsafe-3.0.3-cp313-cp313t-musllinux_1_2_riscv64.whl", hash = "sha256:12c63dfb4a98206f045aa9563db46507995f7ef6d83b2f68eda65c307c6829eb", size = 22769, upload-time = "2025-09-27T18:37:00.719Z" }, + { url = "https://files.pythonhosted.org/packages/98/c5/c03c7f4125180fc215220c035beac6b9cb684bc7a067c84fc69414d315f5/markupsafe-3.0.3-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:8f71bc33915be5186016f675cd83a1e08523649b0e33efdb898db577ef5bb009", size = 23642, upload-time = "2025-09-27T18:37:01.673Z" }, + { url = "https://files.pythonhosted.org/packages/80/d6/2d1b89f6ca4bff1036499b1e29a1d02d282259f3681540e16563f27ebc23/markupsafe-3.0.3-cp313-cp313t-win32.whl", hash = "sha256:69c0b73548bc525c8cb9a251cddf1931d1db4d2258e9599c28c07ef3580ef354", size = 14612, upload-time = "2025-09-27T18:37:02.639Z" }, + { url = "https://files.pythonhosted.org/packages/2b/98/e48a4bfba0a0ffcf9925fe2d69240bfaa19c6f7507b8cd09c70684a53c1e/markupsafe-3.0.3-cp313-cp313t-win_amd64.whl", hash = "sha256:1b4b79e8ebf6b55351f0d91fe80f893b4743f104bff22e90697db1590e47a218", size = 15200, upload-time = "2025-09-27T18:37:03.582Z" }, + { url = "https://files.pythonhosted.org/packages/0e/72/e3cc540f351f316e9ed0f092757459afbc595824ca724cbc5a5d4263713f/markupsafe-3.0.3-cp313-cp313t-win_arm64.whl", hash = "sha256:ad2cf8aa28b8c020ab2fc8287b0f823d0a7d8630784c31e9ee5edea20f406287", size = 13973, upload-time = "2025-09-27T18:37:04.929Z" }, + { url = "https://files.pythonhosted.org/packages/33/8a/8e42d4838cd89b7dde187011e97fe6c3af66d8c044997d2183fbd6d31352/markupsafe-3.0.3-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:eaa9599de571d72e2daf60164784109f19978b327a3910d3e9de8c97b5b70cfe", size = 11619, upload-time = "2025-09-27T18:37:06.342Z" }, + { url = "https://files.pythonhosted.org/packages/b5/64/7660f8a4a8e53c924d0fa05dc3a55c9cee10bbd82b11c5afb27d44b096ce/markupsafe-3.0.3-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:c47a551199eb8eb2121d4f0f15ae0f923d31350ab9280078d1e5f12b249e0026", size = 12029, upload-time = "2025-09-27T18:37:07.213Z" }, + { url = "https://files.pythonhosted.org/packages/da/ef/e648bfd021127bef5fa12e1720ffed0c6cbb8310c8d9bea7266337ff06de/markupsafe-3.0.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f34c41761022dd093b4b6896d4810782ffbabe30f2d443ff5f083e0cbbb8c737", size = 24408, upload-time = "2025-09-27T18:37:09.572Z" }, + { url = "https://files.pythonhosted.org/packages/41/3c/a36c2450754618e62008bf7435ccb0f88053e07592e6028a34776213d877/markupsafe-3.0.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:457a69a9577064c05a97c41f4e65148652db078a3a509039e64d3467b9e7ef97", size = 23005, upload-time = "2025-09-27T18:37:10.58Z" }, + { url = "https://files.pythonhosted.org/packages/bc/20/b7fdf89a8456b099837cd1dc21974632a02a999ec9bf7ca3e490aacd98e7/markupsafe-3.0.3-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:e8afc3f2ccfa24215f8cb28dcf43f0113ac3c37c2f0f0806d8c70e4228c5cf4d", size = 22048, upload-time = "2025-09-27T18:37:11.547Z" }, + { url = "https://files.pythonhosted.org/packages/9a/a7/591f592afdc734f47db08a75793a55d7fbcc6902a723ae4cfbab61010cc5/markupsafe-3.0.3-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:ec15a59cf5af7be74194f7ab02d0f59a62bdcf1a537677ce67a2537c9b87fcda", size = 23821, upload-time = "2025-09-27T18:37:12.48Z" }, + { url = "https://files.pythonhosted.org/packages/7d/33/45b24e4f44195b26521bc6f1a82197118f74df348556594bd2262bda1038/markupsafe-3.0.3-cp314-cp314-musllinux_1_2_riscv64.whl", hash = "sha256:0eb9ff8191e8498cca014656ae6b8d61f39da5f95b488805da4bb029cccbfbaf", size = 21606, upload-time = "2025-09-27T18:37:13.485Z" }, + { url = "https://files.pythonhosted.org/packages/ff/0e/53dfaca23a69fbfbbf17a4b64072090e70717344c52eaaaa9c5ddff1e5f0/markupsafe-3.0.3-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:2713baf880df847f2bece4230d4d094280f4e67b1e813eec43b4c0e144a34ffe", size = 23043, upload-time = "2025-09-27T18:37:14.408Z" }, + { url = "https://files.pythonhosted.org/packages/46/11/f333a06fc16236d5238bfe74daccbca41459dcd8d1fa952e8fbd5dccfb70/markupsafe-3.0.3-cp314-cp314-win32.whl", hash = "sha256:729586769a26dbceff69f7a7dbbf59ab6572b99d94576a5592625d5b411576b9", size = 14747, upload-time = "2025-09-27T18:37:15.36Z" }, + { url = "https://files.pythonhosted.org/packages/28/52/182836104b33b444e400b14f797212f720cbc9ed6ba34c800639d154e821/markupsafe-3.0.3-cp314-cp314-win_amd64.whl", hash = "sha256:bdc919ead48f234740ad807933cdf545180bfbe9342c2bb451556db2ed958581", size = 15341, upload-time = "2025-09-27T18:37:16.496Z" }, + { url = "https://files.pythonhosted.org/packages/6f/18/acf23e91bd94fd7b3031558b1f013adfa21a8e407a3fdb32745538730382/markupsafe-3.0.3-cp314-cp314-win_arm64.whl", hash = "sha256:5a7d5dc5140555cf21a6fefbdbf8723f06fcd2f63ef108f2854de715e4422cb4", size = 14073, upload-time = "2025-09-27T18:37:17.476Z" }, + { url = "https://files.pythonhosted.org/packages/3c/f0/57689aa4076e1b43b15fdfa646b04653969d50cf30c32a102762be2485da/markupsafe-3.0.3-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:1353ef0c1b138e1907ae78e2f6c63ff67501122006b0f9abad68fda5f4ffc6ab", size = 11661, upload-time = "2025-09-27T18:37:18.453Z" }, + { url = "https://files.pythonhosted.org/packages/89/c3/2e67a7ca217c6912985ec766c6393b636fb0c2344443ff9d91404dc4c79f/markupsafe-3.0.3-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:1085e7fbddd3be5f89cc898938f42c0b3c711fdcb37d75221de2666af647c175", size = 12069, upload-time = "2025-09-27T18:37:19.332Z" }, + { url = "https://files.pythonhosted.org/packages/f0/00/be561dce4e6ca66b15276e184ce4b8aec61fe83662cce2f7d72bd3249d28/markupsafe-3.0.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1b52b4fb9df4eb9ae465f8d0c228a00624de2334f216f178a995ccdcf82c4634", size = 25670, upload-time = "2025-09-27T18:37:20.245Z" }, + { url = "https://files.pythonhosted.org/packages/50/09/c419f6f5a92e5fadde27efd190eca90f05e1261b10dbd8cbcb39cd8ea1dc/markupsafe-3.0.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:fed51ac40f757d41b7c48425901843666a6677e3e8eb0abcff09e4ba6e664f50", size = 23598, upload-time = "2025-09-27T18:37:21.177Z" }, + { url = "https://files.pythonhosted.org/packages/22/44/a0681611106e0b2921b3033fc19bc53323e0b50bc70cffdd19f7d679bb66/markupsafe-3.0.3-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:f190daf01f13c72eac4efd5c430a8de82489d9cff23c364c3ea822545032993e", size = 23261, upload-time = "2025-09-27T18:37:22.167Z" }, + { url = "https://files.pythonhosted.org/packages/5f/57/1b0b3f100259dc9fffe780cfb60d4be71375510e435efec3d116b6436d43/markupsafe-3.0.3-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:e56b7d45a839a697b5eb268c82a71bd8c7f6c94d6fd50c3d577fa39a9f1409f5", size = 24835, upload-time = "2025-09-27T18:37:23.296Z" }, + { url = "https://files.pythonhosted.org/packages/26/6a/4bf6d0c97c4920f1597cc14dd720705eca0bf7c787aebc6bb4d1bead5388/markupsafe-3.0.3-cp314-cp314t-musllinux_1_2_riscv64.whl", hash = "sha256:f3e98bb3798ead92273dc0e5fd0f31ade220f59a266ffd8a4f6065e0a3ce0523", size = 22733, upload-time = "2025-09-27T18:37:24.237Z" }, + { url = "https://files.pythonhosted.org/packages/14/c7/ca723101509b518797fedc2fdf79ba57f886b4aca8a7d31857ba3ee8281f/markupsafe-3.0.3-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:5678211cb9333a6468fb8d8be0305520aa073f50d17f089b5b4b477ea6e67fdc", size = 23672, upload-time = "2025-09-27T18:37:25.271Z" }, + { url = "https://files.pythonhosted.org/packages/fb/df/5bd7a48c256faecd1d36edc13133e51397e41b73bb77e1a69deab746ebac/markupsafe-3.0.3-cp314-cp314t-win32.whl", hash = "sha256:915c04ba3851909ce68ccc2b8e2cd691618c4dc4c4232fb7982bca3f41fd8c3d", size = 14819, upload-time = "2025-09-27T18:37:26.285Z" }, + { url = "https://files.pythonhosted.org/packages/1a/8a/0402ba61a2f16038b48b39bccca271134be00c5c9f0f623208399333c448/markupsafe-3.0.3-cp314-cp314t-win_amd64.whl", hash = "sha256:4faffd047e07c38848ce017e8725090413cd80cbc23d86e55c587bf979e579c9", size = 15426, upload-time = "2025-09-27T18:37:27.316Z" }, + { url = "https://files.pythonhosted.org/packages/70/bc/6f1c2f612465f5fa89b95bead1f44dcb607670fd42891d8fdcd5d039f4f4/markupsafe-3.0.3-cp314-cp314t-win_arm64.whl", hash = "sha256:32001d6a8fc98c8cb5c947787c5d08b0a50663d139f1305bac5885d98d9b40fa", size = 14146, upload-time = "2025-09-27T18:37:28.327Z" }, ] [[package]] name = "matgl" -version = "1.2.7" +version = "2.0.4" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "ase" }, { name = "boto3" }, - { name = "dgl", marker = "sys_platform == 'darwin' or sys_platform == 'linux' or sys_platform == 'win32' or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn')" }, { name = "lightning" }, - { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" } }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, + { name = "numpy", version = "2.1.3", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (sys_platform != 'linux' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, { name = "pydantic" }, { name = "pymatgen" }, - { name = "torch", version = "2.2.0", source = { registry = "https://pypi.org/simple" } }, + { name = "torch", version = "2.7.0", source = { registry = "https://pypi.org/simple" } }, + { name = "torch-geometric" }, { name = "torchdata" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/12/1a/0f6840261bc3307402bb4b7c1f4965627598993cfe52feeb55cc8e4cf481/matgl-1.2.7.tar.gz", hash = "sha256:1566a04716790f9053c3d9081bad1dd7dc3bf147fcdda79a5a21408a85d419e0", size = 220767, upload-time = "2025-05-19T16:06:48.907Z" } +sdist = { url = "https://files.pythonhosted.org/packages/8f/db/9fa2c0b709a9e16e0f8e6974da3643c910a92efdb0975dfdaafc63a0c00f/matgl-2.0.4.tar.gz", hash = "sha256:8c832bcc3115d40dae623741f09ee952e2c651d1d7f0397be5e0a353530ca019", size = 240049, upload-time = "2025-11-26T15:07:19.677Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/ce/68/e6992cf0c9b8043135591a473ff4b746cb34aaaa4ee833f516b448112fb8/matgl-1.2.7-py3-none-any.whl", hash = "sha256:1e553363515e9ecb7585cf9797a5d8c4a32979112adde76a19c8263672a2b20c", size = 228715, upload-time = "2025-05-20T13:41:41.371Z" }, + { url = "https://files.pythonhosted.org/packages/56/66/6fad09b2651d41bc1f73a0e247a2deb49fcea01c739b789a39bed2135b3c/matgl-2.0.4-py3-none-any.whl", hash = "sha256:f33acfcdf4212c6a29acf9275855b739dd76b1092649695341b3295f391edce3", size = 276071, upload-time = "2025-11-26T15:07:18.127Z" }, ] [[package]] @@ -5317,575 +4380,520 @@ wheels = [ [[package]] name = "matplotlib" -version = "3.10.3" +version = "3.10.7" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "contourpy" }, { name = "cycler" }, { name = "fonttools" }, { name = "kiwisolver" }, - { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-5-mlipx-grace' or extra == 'extra-5-mlipx-matpes' or extra == 'extra-5-mlipx-mattersim' or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-5-mlipx-fairchem' or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'extra-5-mlipx-grace') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "numpy", version = "2.1.3", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform != 'linux' or extra == 'extra-5-mlipx-fairchem' or extra != 'extra-5-mlipx-grace' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, { name = "packaging" }, { name = "pillow" }, { name = "pyparsing" }, { name = "python-dateutil" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/26/91/d49359a21893183ed2a5b6c76bec40e0b1dcbf8ca148f864d134897cfc75/matplotlib-3.10.3.tar.gz", hash = "sha256:2f82d2c5bb7ae93aaaa4cd42aca65d76ce6376f83304fa3a630b569aca274df0", size = 34799811, upload-time = "2025-05-08T19:10:54.39Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/d0/ea/2bba25d289d389c7451f331ecd593944b3705f06ddf593fa7be75037d308/matplotlib-3.10.3-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:213fadd6348d106ca7db99e113f1bea1e65e383c3ba76e8556ba4a3054b65ae7", size = 8167862, upload-time = "2025-05-08T19:09:39.563Z" }, - { url = "https://files.pythonhosted.org/packages/41/81/cc70b5138c926604e8c9ed810ed4c79e8116ba72e02230852f5c12c87ba2/matplotlib-3.10.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d3bec61cb8221f0ca6313889308326e7bb303d0d302c5cc9e523b2f2e6c73deb", size = 8042149, upload-time = "2025-05-08T19:09:42.413Z" }, - { url = "https://files.pythonhosted.org/packages/4a/9a/0ff45b6bfa42bb16de597e6058edf2361c298ad5ef93b327728145161bbf/matplotlib-3.10.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8c21ae75651c0231b3ba014b6d5e08fb969c40cdb5a011e33e99ed0c9ea86ecb", size = 8453719, upload-time = "2025-05-08T19:09:44.901Z" }, - { url = "https://files.pythonhosted.org/packages/85/c7/1866e972fed6d71ef136efbc980d4d1854ab7ef1ea8152bbd995ca231c81/matplotlib-3.10.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a49e39755580b08e30e3620efc659330eac5d6534ab7eae50fa5e31f53ee4e30", size = 8590801, upload-time = "2025-05-08T19:09:47.404Z" }, - { url = "https://files.pythonhosted.org/packages/5d/b9/748f6626d534ab7e255bdc39dc22634d337cf3ce200f261b5d65742044a1/matplotlib-3.10.3-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cf4636203e1190871d3a73664dea03d26fb019b66692cbfd642faafdad6208e8", size = 9402111, upload-time = "2025-05-08T19:09:49.474Z" }, - { url = "https://files.pythonhosted.org/packages/1f/78/8bf07bd8fb67ea5665a6af188e70b57fcb2ab67057daa06b85a08e59160a/matplotlib-3.10.3-cp310-cp310-win_amd64.whl", hash = "sha256:fd5641a9bb9d55f4dd2afe897a53b537c834b9012684c8444cc105895c8c16fd", size = 8057213, upload-time = "2025-05-08T19:09:51.489Z" }, - { url = "https://files.pythonhosted.org/packages/f5/bd/af9f655456f60fe1d575f54fb14704ee299b16e999704817a7645dfce6b0/matplotlib-3.10.3-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:0ef061f74cd488586f552d0c336b2f078d43bc00dc473d2c3e7bfee2272f3fa8", size = 8178873, upload-time = "2025-05-08T19:09:53.857Z" }, - { url = "https://files.pythonhosted.org/packages/c2/86/e1c86690610661cd716eda5f9d0b35eaf606ae6c9b6736687cfc8f2d0cd8/matplotlib-3.10.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:d96985d14dc5f4a736bbea4b9de9afaa735f8a0fc2ca75be2fa9e96b2097369d", size = 8052205, upload-time = "2025-05-08T19:09:55.684Z" }, - { url = "https://files.pythonhosted.org/packages/54/51/a9f8e49af3883dacddb2da1af5fca1f7468677f1188936452dd9aaaeb9ed/matplotlib-3.10.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7c5f0283da91e9522bdba4d6583ed9d5521566f63729ffb68334f86d0bb98049", size = 8465823, upload-time = "2025-05-08T19:09:57.442Z" }, - { url = "https://files.pythonhosted.org/packages/e7/e3/c82963a3b86d6e6d5874cbeaa390166458a7f1961bab9feb14d3d1a10f02/matplotlib-3.10.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fdfa07c0ec58035242bc8b2c8aae37037c9a886370eef6850703d7583e19964b", size = 8606464, upload-time = "2025-05-08T19:09:59.471Z" }, - { url = "https://files.pythonhosted.org/packages/0e/34/24da1027e7fcdd9e82da3194c470143c551852757a4b473a09a012f5b945/matplotlib-3.10.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:c0b9849a17bce080a16ebcb80a7b714b5677d0ec32161a2cc0a8e5a6030ae220", size = 9413103, upload-time = "2025-05-08T19:10:03.208Z" }, - { url = "https://files.pythonhosted.org/packages/a6/da/948a017c3ea13fd4a97afad5fdebe2f5bbc4d28c0654510ce6fd6b06b7bd/matplotlib-3.10.3-cp311-cp311-win_amd64.whl", hash = "sha256:eef6ed6c03717083bc6d69c2d7ee8624205c29a8e6ea5a31cd3492ecdbaee1e1", size = 8065492, upload-time = "2025-05-08T19:10:05.271Z" }, - { url = "https://files.pythonhosted.org/packages/eb/43/6b80eb47d1071f234ef0c96ca370c2ca621f91c12045f1401b5c9b28a639/matplotlib-3.10.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:0ab1affc11d1f495ab9e6362b8174a25afc19c081ba5b0775ef00533a4236eea", size = 8179689, upload-time = "2025-05-08T19:10:07.602Z" }, - { url = "https://files.pythonhosted.org/packages/0f/70/d61a591958325c357204870b5e7b164f93f2a8cca1dc6ce940f563909a13/matplotlib-3.10.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:2a818d8bdcafa7ed2eed74487fdb071c09c1ae24152d403952adad11fa3c65b4", size = 8050466, upload-time = "2025-05-08T19:10:09.383Z" }, - { url = "https://files.pythonhosted.org/packages/e7/75/70c9d2306203148cc7902a961240c5927dd8728afedf35e6a77e105a2985/matplotlib-3.10.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:748ebc3470c253e770b17d8b0557f0aa85cf8c63fd52f1a61af5b27ec0b7ffee", size = 8456252, upload-time = "2025-05-08T19:10:11.958Z" }, - { url = "https://files.pythonhosted.org/packages/c4/91/ba0ae1ff4b3f30972ad01cd4a8029e70a0ec3b8ea5be04764b128b66f763/matplotlib-3.10.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ed70453fd99733293ace1aec568255bc51c6361cb0da94fa5ebf0649fdb2150a", size = 8601321, upload-time = "2025-05-08T19:10:14.47Z" }, - { url = "https://files.pythonhosted.org/packages/d2/88/d636041eb54a84b889e11872d91f7cbf036b3b0e194a70fa064eb8b04f7a/matplotlib-3.10.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:dbed9917b44070e55640bd13419de83b4c918e52d97561544814ba463811cbc7", size = 9406972, upload-time = "2025-05-08T19:10:16.569Z" }, - { url = "https://files.pythonhosted.org/packages/b1/79/0d1c165eac44405a86478082e225fce87874f7198300bbebc55faaf6d28d/matplotlib-3.10.3-cp312-cp312-win_amd64.whl", hash = "sha256:cf37d8c6ef1a48829443e8ba5227b44236d7fcaf7647caa3178a4ff9f7a5be05", size = 8067954, upload-time = "2025-05-08T19:10:18.663Z" }, - { url = "https://files.pythonhosted.org/packages/3b/c1/23cfb566a74c696a3b338d8955c549900d18fe2b898b6e94d682ca21e7c2/matplotlib-3.10.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:9f2efccc8dcf2b86fc4ee849eea5dcaecedd0773b30f47980dc0cbeabf26ec84", size = 8180318, upload-time = "2025-05-08T19:10:20.426Z" }, - { url = "https://files.pythonhosted.org/packages/6c/0c/02f1c3b66b30da9ee343c343acbb6251bef5b01d34fad732446eaadcd108/matplotlib-3.10.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:3ddbba06a6c126e3301c3d272a99dcbe7f6c24c14024e80307ff03791a5f294e", size = 8051132, upload-time = "2025-05-08T19:10:22.569Z" }, - { url = "https://files.pythonhosted.org/packages/b4/ab/8db1a5ac9b3a7352fb914133001dae889f9fcecb3146541be46bed41339c/matplotlib-3.10.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:748302b33ae9326995b238f606e9ed840bf5886ebafcb233775d946aa8107a15", size = 8457633, upload-time = "2025-05-08T19:10:24.749Z" }, - { url = "https://files.pythonhosted.org/packages/f5/64/41c4367bcaecbc03ef0d2a3ecee58a7065d0a36ae1aa817fe573a2da66d4/matplotlib-3.10.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a80fcccbef63302c0efd78042ea3c2436104c5b1a4d3ae20f864593696364ac7", size = 8601031, upload-time = "2025-05-08T19:10:27.03Z" }, - { url = "https://files.pythonhosted.org/packages/12/6f/6cc79e9e5ab89d13ed64da28898e40fe5b105a9ab9c98f83abd24e46d7d7/matplotlib-3.10.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:55e46cbfe1f8586adb34f7587c3e4f7dedc59d5226719faf6cb54fc24f2fd52d", size = 9406988, upload-time = "2025-05-08T19:10:29.056Z" }, - { url = "https://files.pythonhosted.org/packages/b1/0f/eed564407bd4d935ffabf561ed31099ed609e19287409a27b6d336848653/matplotlib-3.10.3-cp313-cp313-win_amd64.whl", hash = "sha256:151d89cb8d33cb23345cd12490c76fd5d18a56581a16d950b48c6ff19bb2ab93", size = 8068034, upload-time = "2025-05-08T19:10:31.221Z" }, - { url = "https://files.pythonhosted.org/packages/3e/e5/2f14791ff69b12b09e9975e1d116d9578ac684460860ce542c2588cb7a1c/matplotlib-3.10.3-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:c26dd9834e74d164d06433dc7be5d75a1e9890b926b3e57e74fa446e1a62c3e2", size = 8218223, upload-time = "2025-05-08T19:10:33.114Z" }, - { url = "https://files.pythonhosted.org/packages/5c/08/30a94afd828b6e02d0a52cae4a29d6e9ccfcf4c8b56cc28b021d3588873e/matplotlib-3.10.3-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:24853dad5b8c84c8c2390fc31ce4858b6df504156893292ce8092d190ef8151d", size = 8094985, upload-time = "2025-05-08T19:10:35.337Z" }, - { url = "https://files.pythonhosted.org/packages/89/44/f3bc6b53066c889d7a1a3ea8094c13af6a667c5ca6220ec60ecceec2dabe/matplotlib-3.10.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68f7878214d369d7d4215e2a9075fef743be38fa401d32e6020bab2dfabaa566", size = 8483109, upload-time = "2025-05-08T19:10:37.611Z" }, - { url = "https://files.pythonhosted.org/packages/ba/c7/473bc559beec08ebee9f86ca77a844b65747e1a6c2691e8c92e40b9f42a8/matplotlib-3.10.3-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f6929fc618cb6db9cb75086f73b3219bbb25920cb24cee2ea7a12b04971a4158", size = 8618082, upload-time = "2025-05-08T19:10:39.892Z" }, - { url = "https://files.pythonhosted.org/packages/d8/e9/6ce8edd264c8819e37bbed8172e0ccdc7107fe86999b76ab5752276357a4/matplotlib-3.10.3-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:6c7818292a5cc372a2dc4c795e5c356942eb8350b98ef913f7fda51fe175ac5d", size = 9413699, upload-time = "2025-05-08T19:10:42.376Z" }, - { url = "https://files.pythonhosted.org/packages/1b/92/9a45c91089c3cf690b5badd4be81e392ff086ccca8a1d4e3a08463d8a966/matplotlib-3.10.3-cp313-cp313t-win_amd64.whl", hash = "sha256:4f23ffe95c5667ef8a2b56eea9b53db7f43910fa4a2d5472ae0f72b64deab4d5", size = 8139044, upload-time = "2025-05-08T19:10:44.551Z" }, - { url = "https://files.pythonhosted.org/packages/3d/d1/f54d43e95384b312ffa4a74a4326c722f3b8187aaaa12e9a84cdf3037131/matplotlib-3.10.3-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:86ab63d66bbc83fdb6733471d3bff40897c1e9921cba112accd748eee4bce5e4", size = 8162896, upload-time = "2025-05-08T19:10:46.432Z" }, - { url = "https://files.pythonhosted.org/packages/24/a4/fbfc00c2346177c95b353dcf9b5a004106abe8730a62cb6f27e79df0a698/matplotlib-3.10.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:a48f9c08bf7444b5d2391a83e75edb464ccda3c380384b36532a0962593a1751", size = 8039702, upload-time = "2025-05-08T19:10:49.634Z" }, - { url = "https://files.pythonhosted.org/packages/6a/b9/59e120d24a2ec5fc2d30646adb2efb4621aab3c6d83d66fb2a7a182db032/matplotlib-3.10.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cb73d8aa75a237457988f9765e4dfe1c0d2453c5ca4eabc897d4309672c8e014", size = 8594298, upload-time = "2025-05-08T19:10:51.738Z" }, +sdist = { url = "https://files.pythonhosted.org/packages/ae/e2/d2d5295be2f44c678ebaf3544ba32d20c1f9ef08c49fe47f496180e1db15/matplotlib-3.10.7.tar.gz", hash = "sha256:a06ba7e2a2ef9131c79c49e63dad355d2d878413a0376c1727c8b9335ff731c7", size = 34804865, upload-time = "2025-10-09T00:28:00.669Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/fc/bc/0fb489005669127ec13f51be0c6adc074d7cf191075dab1da9fe3b7a3cfc/matplotlib-3.10.7-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:53b492410a6cd66c7a471de6c924f6ede976e963c0f3097a3b7abfadddc67d0a", size = 8257507, upload-time = "2025-10-09T00:26:19.073Z" }, + { url = "https://files.pythonhosted.org/packages/e2/6a/d42588ad895279ff6708924645b5d2ed54a7fb2dc045c8a804e955aeace1/matplotlib-3.10.7-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:d9749313deb729f08207718d29c86246beb2ea3fdba753595b55901dee5d2fd6", size = 8119565, upload-time = "2025-10-09T00:26:21.023Z" }, + { url = "https://files.pythonhosted.org/packages/10/b7/4aa196155b4d846bd749cf82aa5a4c300cf55a8b5e0dfa5b722a63c0f8a0/matplotlib-3.10.7-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:2222c7ba2cbde7fe63032769f6eb7e83ab3227f47d997a8453377709b7fe3a5a", size = 8692668, upload-time = "2025-10-09T00:26:22.967Z" }, + { url = "https://files.pythonhosted.org/packages/e6/e7/664d2b97016f46683a02d854d730cfcf54ff92c1dafa424beebef50f831d/matplotlib-3.10.7-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e91f61a064c92c307c5a9dc8c05dc9f8a68f0a3be199d9a002a0622e13f874a1", size = 9521051, upload-time = "2025-10-09T00:26:25.041Z" }, + { url = "https://files.pythonhosted.org/packages/a8/a3/37aef1404efa615f49b5758a5e0261c16dd88f389bc1861e722620e4a754/matplotlib-3.10.7-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:6f1851eab59ca082c95df5a500106bad73672645625e04538b3ad0f69471ffcc", size = 9576878, upload-time = "2025-10-09T00:26:27.478Z" }, + { url = "https://files.pythonhosted.org/packages/33/cd/b145f9797126f3f809d177ca378de57c45413c5099c5990de2658760594a/matplotlib-3.10.7-cp311-cp311-win_amd64.whl", hash = "sha256:6516ce375109c60ceec579e699524e9d504cd7578506f01150f7a6bc174a775e", size = 8115142, upload-time = "2025-10-09T00:26:29.774Z" }, + { url = "https://files.pythonhosted.org/packages/2e/39/63bca9d2b78455ed497fcf51a9c71df200a11048f48249038f06447fa947/matplotlib-3.10.7-cp311-cp311-win_arm64.whl", hash = "sha256:b172db79759f5f9bc13ef1c3ef8b9ee7b37b0247f987fbbbdaa15e4f87fd46a9", size = 7992439, upload-time = "2025-10-09T00:26:40.32Z" }, + { url = "https://files.pythonhosted.org/packages/be/b3/09eb0f7796932826ec20c25b517d568627754f6c6462fca19e12c02f2e12/matplotlib-3.10.7-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:7a0edb7209e21840e8361e91ea84ea676658aa93edd5f8762793dec77a4a6748", size = 8272389, upload-time = "2025-10-09T00:26:42.474Z" }, + { url = "https://files.pythonhosted.org/packages/11/0b/1ae80ddafb8652fd8046cb5c8460ecc8d4afccb89e2c6d6bec61e04e1eaf/matplotlib-3.10.7-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:c380371d3c23e0eadf8ebff114445b9f970aff2010198d498d4ab4c3b41eea4f", size = 8128247, upload-time = "2025-10-09T00:26:44.77Z" }, + { url = "https://files.pythonhosted.org/packages/7d/18/95ae2e242d4a5c98bd6e90e36e128d71cf1c7e39b0874feaed3ef782e789/matplotlib-3.10.7-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:d5f256d49fea31f40f166a5e3131235a5d2f4b7f44520b1cf0baf1ce568ccff0", size = 8696996, upload-time = "2025-10-09T00:26:46.792Z" }, + { url = "https://files.pythonhosted.org/packages/7e/3d/5b559efc800bd05cb2033aa85f7e13af51958136a48327f7c261801ff90a/matplotlib-3.10.7-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:11ae579ac83cdf3fb72573bb89f70e0534de05266728740d478f0f818983c695", size = 9530153, upload-time = "2025-10-09T00:26:49.07Z" }, + { url = "https://files.pythonhosted.org/packages/88/57/eab4a719fd110312d3c220595d63a3c85ec2a39723f0f4e7fa7e6e3f74ba/matplotlib-3.10.7-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:4c14b6acd16cddc3569a2d515cfdd81c7a68ac5639b76548cfc1a9e48b20eb65", size = 9593093, upload-time = "2025-10-09T00:26:51.067Z" }, + { url = "https://files.pythonhosted.org/packages/31/3c/80816f027b3a4a28cd2a0a6ef7f89a2db22310e945cd886ec25bfb399221/matplotlib-3.10.7-cp312-cp312-win_amd64.whl", hash = "sha256:0d8c32b7ea6fb80b1aeff5a2ceb3fb9778e2759e899d9beff75584714afcc5ee", size = 8122771, upload-time = "2025-10-09T00:26:53.296Z" }, + { url = "https://files.pythonhosted.org/packages/de/77/ef1fc78bfe99999b2675435cc52120887191c566b25017d78beaabef7f2d/matplotlib-3.10.7-cp312-cp312-win_arm64.whl", hash = "sha256:5f3f6d315dcc176ba7ca6e74c7768fb7e4cf566c49cb143f6bc257b62e634ed8", size = 7992812, upload-time = "2025-10-09T00:26:54.882Z" }, + { url = "https://files.pythonhosted.org/packages/02/9c/207547916a02c78f6bdd83448d9b21afbc42f6379ed887ecf610984f3b4e/matplotlib-3.10.7-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:1d9d3713a237970569156cfb4de7533b7c4eacdd61789726f444f96a0d28f57f", size = 8273212, upload-time = "2025-10-09T00:26:56.752Z" }, + { url = "https://files.pythonhosted.org/packages/bc/d0/b3d3338d467d3fc937f0bb7f256711395cae6f78e22cef0656159950adf0/matplotlib-3.10.7-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:37a1fea41153dd6ee061d21ab69c9cf2cf543160b1b85d89cd3d2e2a7902ca4c", size = 8128713, upload-time = "2025-10-09T00:26:59.001Z" }, + { url = "https://files.pythonhosted.org/packages/22/ff/6425bf5c20d79aa5b959d1ce9e65f599632345391381c9a104133fe0b171/matplotlib-3.10.7-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:b3c4ea4948d93c9c29dc01c0c23eef66f2101bf75158c291b88de6525c55c3d1", size = 8698527, upload-time = "2025-10-09T00:27:00.69Z" }, + { url = "https://files.pythonhosted.org/packages/d0/7f/ccdca06f4c2e6c7989270ed7829b8679466682f4cfc0f8c9986241c023b6/matplotlib-3.10.7-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:22df30ffaa89f6643206cf13877191c63a50e8f800b038bc39bee9d2d4957632", size = 9529690, upload-time = "2025-10-09T00:27:02.664Z" }, + { url = "https://files.pythonhosted.org/packages/b8/95/b80fc2c1f269f21ff3d193ca697358e24408c33ce2b106a7438a45407b63/matplotlib-3.10.7-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:b69676845a0a66f9da30e87f48be36734d6748024b525ec4710be40194282c84", size = 9593732, upload-time = "2025-10-09T00:27:04.653Z" }, + { url = "https://files.pythonhosted.org/packages/e1/b6/23064a96308b9aeceeffa65e96bcde459a2ea4934d311dee20afde7407a0/matplotlib-3.10.7-cp313-cp313-win_amd64.whl", hash = "sha256:744991e0cc863dd669c8dc9136ca4e6e0082be2070b9d793cbd64bec872a6815", size = 8122727, upload-time = "2025-10-09T00:27:06.814Z" }, + { url = "https://files.pythonhosted.org/packages/b3/a6/2faaf48133b82cf3607759027f82b5c702aa99cdfcefb7f93d6ccf26a424/matplotlib-3.10.7-cp313-cp313-win_arm64.whl", hash = "sha256:fba2974df0bf8ce3c995fa84b79cde38326e0f7b5409e7a3a481c1141340bcf7", size = 7992958, upload-time = "2025-10-09T00:27:08.567Z" }, + { url = "https://files.pythonhosted.org/packages/4a/f0/b018fed0b599bd48d84c08794cb242227fe3341952da102ee9d9682db574/matplotlib-3.10.7-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:932c55d1fa7af4423422cb6a492a31cbcbdbe68fd1a9a3f545aa5e7a143b5355", size = 8316849, upload-time = "2025-10-09T00:27:10.254Z" }, + { url = "https://files.pythonhosted.org/packages/b0/b7/bb4f23856197659f275e11a2a164e36e65e9b48ea3e93c4ec25b4f163198/matplotlib-3.10.7-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:5e38c2d581d62ee729a6e144c47a71b3f42fb4187508dbbf4fe71d5612c3433b", size = 8178225, upload-time = "2025-10-09T00:27:12.241Z" }, + { url = "https://files.pythonhosted.org/packages/62/56/0600609893ff277e6f3ab3c0cef4eafa6e61006c058e84286c467223d4d5/matplotlib-3.10.7-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:786656bb13c237bbcebcd402f65f44dd61ead60ee3deb045af429d889c8dbc67", size = 8711708, upload-time = "2025-10-09T00:27:13.879Z" }, + { url = "https://files.pythonhosted.org/packages/d8/1a/6bfecb0cafe94d6658f2f1af22c43b76cf7a1c2f0dc34ef84cbb6809617e/matplotlib-3.10.7-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:09d7945a70ea43bf9248f4b6582734c2fe726723204a76eca233f24cffc7ef67", size = 9541409, upload-time = "2025-10-09T00:27:15.684Z" }, + { url = "https://files.pythonhosted.org/packages/08/50/95122a407d7f2e446fd865e2388a232a23f2b81934960ea802f3171518e4/matplotlib-3.10.7-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:d0b181e9fa8daf1d9f2d4c547527b167cb8838fc587deabca7b5c01f97199e84", size = 9594054, upload-time = "2025-10-09T00:27:17.547Z" }, + { url = "https://files.pythonhosted.org/packages/13/76/75b194a43b81583478a81e78a07da8d9ca6ddf50dd0a2ccabf258059481d/matplotlib-3.10.7-cp313-cp313t-win_amd64.whl", hash = "sha256:31963603041634ce1a96053047b40961f7a29eb8f9a62e80cc2c0427aa1d22a2", size = 8200100, upload-time = "2025-10-09T00:27:20.039Z" }, + { url = "https://files.pythonhosted.org/packages/f5/9e/6aefebdc9f8235c12bdeeda44cc0383d89c1e41da2c400caf3ee2073a3ce/matplotlib-3.10.7-cp313-cp313t-win_arm64.whl", hash = "sha256:aebed7b50aa6ac698c90f60f854b47e48cd2252b30510e7a1feddaf5a3f72cbf", size = 8042131, upload-time = "2025-10-09T00:27:21.608Z" }, + { url = "https://files.pythonhosted.org/packages/0d/4b/e5bc2c321b6a7e3a75638d937d19ea267c34bd5a90e12bee76c4d7c7a0d9/matplotlib-3.10.7-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:d883460c43e8c6b173fef244a2341f7f7c0e9725c7fe68306e8e44ed9c8fb100", size = 8273787, upload-time = "2025-10-09T00:27:23.27Z" }, + { url = "https://files.pythonhosted.org/packages/86/ad/6efae459c56c2fbc404da154e13e3a6039129f3c942b0152624f1c621f05/matplotlib-3.10.7-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:07124afcf7a6504eafcb8ce94091c5898bbdd351519a1beb5c45f7a38c67e77f", size = 8131348, upload-time = "2025-10-09T00:27:24.926Z" }, + { url = "https://files.pythonhosted.org/packages/a6/5a/a4284d2958dee4116359cc05d7e19c057e64ece1b4ac986ab0f2f4d52d5a/matplotlib-3.10.7-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c17398b709a6cce3d9fdb1595c33e356d91c098cd9486cb2cc21ea2ea418e715", size = 9533949, upload-time = "2025-10-09T00:27:26.704Z" }, + { url = "https://files.pythonhosted.org/packages/de/ff/f3781b5057fa3786623ad8976fc9f7b0d02b2f28534751fd5a44240de4cf/matplotlib-3.10.7-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:7146d64f561498764561e9cd0ed64fcf582e570fc519e6f521e2d0cfd43365e1", size = 9804247, upload-time = "2025-10-09T00:27:28.514Z" }, + { url = "https://files.pythonhosted.org/packages/47/5a/993a59facb8444efb0e197bf55f545ee449902dcee86a4dfc580c3b61314/matplotlib-3.10.7-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:90ad854c0a435da3104c01e2c6f0028d7e719b690998a2333d7218db80950722", size = 9595497, upload-time = "2025-10-09T00:27:30.418Z" }, + { url = "https://files.pythonhosted.org/packages/0d/a5/77c95aaa9bb32c345cbb49626ad8eb15550cba2e6d4c88081a6c2ac7b08d/matplotlib-3.10.7-cp314-cp314-win_amd64.whl", hash = "sha256:4645fc5d9d20ffa3a39361fcdbcec731382763b623b72627806bf251b6388866", size = 8252732, upload-time = "2025-10-09T00:27:32.332Z" }, + { url = "https://files.pythonhosted.org/packages/74/04/45d269b4268d222390d7817dae77b159651909669a34ee9fdee336db5883/matplotlib-3.10.7-cp314-cp314-win_arm64.whl", hash = "sha256:9257be2f2a03415f9105c486d304a321168e61ad450f6153d77c69504ad764bb", size = 8124240, upload-time = "2025-10-09T00:27:33.94Z" }, + { url = "https://files.pythonhosted.org/packages/4b/c7/ca01c607bb827158b439208c153d6f14ddb9fb640768f06f7ca3488ae67b/matplotlib-3.10.7-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:1e4bbad66c177a8fdfa53972e5ef8be72a5f27e6a607cec0d8579abd0f3102b1", size = 8316938, upload-time = "2025-10-09T00:27:35.534Z" }, + { url = "https://files.pythonhosted.org/packages/84/d2/5539e66e9f56d2fdec94bb8436f5e449683b4e199bcc897c44fbe3c99e28/matplotlib-3.10.7-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:d8eb7194b084b12feb19142262165832fc6ee879b945491d1c3d4660748020c4", size = 8178245, upload-time = "2025-10-09T00:27:37.334Z" }, + { url = "https://files.pythonhosted.org/packages/77/b5/e6ca22901fd3e4fe433a82e583436dd872f6c966fca7e63cf806b40356f8/matplotlib-3.10.7-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b4d41379b05528091f00e1728004f9a8d7191260f3862178b88e8fd770206318", size = 9541411, upload-time = "2025-10-09T00:27:39.387Z" }, + { url = "https://files.pythonhosted.org/packages/9e/99/a4524db57cad8fee54b7237239a8f8360bfcfa3170d37c9e71c090c0f409/matplotlib-3.10.7-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:4a74f79fafb2e177f240579bc83f0b60f82cc47d2f1d260f422a0627207008ca", size = 9803664, upload-time = "2025-10-09T00:27:41.492Z" }, + { url = "https://files.pythonhosted.org/packages/e6/a5/85e2edf76ea0ad4288d174926d9454ea85f3ce5390cc4e6fab196cbf250b/matplotlib-3.10.7-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:702590829c30aada1e8cef0568ddbffa77ca747b4d6e36c6d173f66e301f89cc", size = 9594066, upload-time = "2025-10-09T00:27:43.694Z" }, + { url = "https://files.pythonhosted.org/packages/39/69/9684368a314f6d83fe5c5ad2a4121a3a8e03723d2e5c8ea17b66c1bad0e7/matplotlib-3.10.7-cp314-cp314t-win_amd64.whl", hash = "sha256:f79d5de970fc90cd5591f60053aecfce1fcd736e0303d9f0bf86be649fa68fb8", size = 8342832, upload-time = "2025-10-09T00:27:45.543Z" }, + { url = "https://files.pythonhosted.org/packages/04/5f/e22e08da14bc1a0894184640d47819d2338b792732e20d292bf86e5ab785/matplotlib-3.10.7-cp314-cp314t-win_arm64.whl", hash = "sha256:cb783436e47fcf82064baca52ce748af71725d0352e1d31564cbe9c95df92b9c", size = 8172585, upload-time = "2025-10-09T00:27:47.185Z" }, + { url = "https://files.pythonhosted.org/packages/58/8f/76d5dc21ac64a49e5498d7f0472c0781dae442dd266a67458baec38288ec/matplotlib-3.10.7-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:15112bcbaef211bd663fa935ec33313b948e214454d949b723998a43357b17b0", size = 8252283, upload-time = "2025-10-09T00:27:54.739Z" }, + { url = "https://files.pythonhosted.org/packages/27/0d/9c5d4c2317feb31d819e38c9f947c942f42ebd4eb935fc6fd3518a11eaa7/matplotlib-3.10.7-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:d2a959c640cdeecdd2ec3136e8ea0441da59bcaf58d67e9c590740addba2cb68", size = 8116733, upload-time = "2025-10-09T00:27:56.406Z" }, + { url = "https://files.pythonhosted.org/packages/9a/cc/3fe688ff1355010937713164caacf9ed443675ac48a997bab6ed23b3f7c0/matplotlib-3.10.7-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:3886e47f64611046bc1db523a09dd0a0a6bed6081e6f90e13806dd1d1d1b5e91", size = 8693919, upload-time = "2025-10-09T00:27:58.41Z" }, ] [[package]] name = "matplotlib-inline" -version = "0.1.7" +version = "0.2.1" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "traitlets" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/99/5b/a36a337438a14116b16480db471ad061c36c3694df7c2084a0da7ba538b7/matplotlib_inline-0.1.7.tar.gz", hash = "sha256:8423b23ec666be3d16e16b60bdd8ac4e86e840ebd1dd11a30b9f117f2fa0ab90", size = 8159, upload-time = "2024-04-15T13:44:44.803Z" } +sdist = { url = "https://files.pythonhosted.org/packages/c7/74/97e72a36efd4ae2bccb3463284300f8953f199b5ffbc04cbbb0ec78f74b1/matplotlib_inline-0.2.1.tar.gz", hash = "sha256:e1ee949c340d771fc39e241ea75683deb94762c8fa5f2927ec57c83c4dffa9fe", size = 8110, upload-time = "2025-10-23T09:00:22.126Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/8f/8e/9ad090d3553c280a8060fbf6e24dc1c0c29704ee7d1c372f0c174aa59285/matplotlib_inline-0.1.7-py3-none-any.whl", hash = "sha256:df192d39a4ff8f21b1895d72e6a13f5fcc5099f00fa84384e0ea28c2cc0653ca", size = 9899, upload-time = "2024-04-15T13:44:43.265Z" }, + { url = "https://files.pythonhosted.org/packages/af/33/ee4519fa02ed11a94aef9559552f3b17bb863f2ecfe1a35dc7f548cde231/matplotlib_inline-0.2.1-py3-none-any.whl", hash = "sha256:d56ce5156ba6085e00a9d54fead6ed29a9c47e215cd1bba2e976ef39f5710a76", size = 9516, upload-time = "2025-10-23T09:00:20.675Z" }, ] [[package]] name = "matscipy" -version = "1.1.0" +version = "1.1.1" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux'", + "python_full_version == '3.12.*' and sys_platform == 'linux'", + "python_full_version < '3.12' and sys_platform == 'linux'", ] dependencies = [ - { name = "ase", marker = "(extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-matpes')" }, - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-matpes')" }, - { name = "packaging", marker = "(extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-matpes')" }, - { name = "scipy", marker = "(extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-matpes')" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/46/6e/af9cd40006f9caf13618dce250200e2eb61ef6b27ed2e2a713ff64b7d050/matscipy-1.1.0.tar.gz", hash = "sha256:c8e4652860e749e17c1c9f58b22142b9634489727b6a69ed8b36acd59d020371", size = 10345106, upload-time = "2024-08-09T11:01:29.69Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/de/40/9e4c91e0f9dbc34bcf6c7d19d170f68c24c0b873d31610c96a0cba6ba3f4/matscipy-1.1.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:631aa5f2de007f7c3818703fed189cd28db3bb6d4542651c1e192f0ae05dbd8c", size = 433453, upload-time = "2024-08-09T11:03:01.619Z" }, - { url = "https://files.pythonhosted.org/packages/e7/fd/ee10a4075d5c8b420a0bd2f31eb1fa913d9c7e81f2f0a9f16f89d6cf342b/matscipy-1.1.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:dfeee094dc0d3ba376bdf97cd92ae1c5649a6b0d13eff6a7dbb21f69a13b1951", size = 433830, upload-time = "2024-08-09T11:01:05.254Z" }, - { url = "https://files.pythonhosted.org/packages/a6/8f/6a07eb9adfb86e72bc2dedec6cbcba7689e0098945d87700b005f8d5a2ac/matscipy-1.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0bdb1d3ffc6341327bfee1d36a2ca18a3327dc6cd11f515d5c520031af6a48d0", size = 437808, upload-time = "2024-08-09T11:04:16.498Z" }, - { url = "https://files.pythonhosted.org/packages/79/d9/0c42c9cd653c021cacd43756abb68e0a22183eeb46cb9da8e960f5aeaa3c/matscipy-1.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:243198e1e3c3749e45c134d0c6fe5cdfafc52bd8b00b81af7f460a2a027ebae8", size = 438605, upload-time = "2024-08-09T11:00:57.701Z" }, - { url = "https://files.pythonhosted.org/packages/11/0f/cb3a1c4a7e83ef3d6f861cba55c54140ec2c7278535d5284821a1f8ca9ea/matscipy-1.1.0-cp310-cp310-win_amd64.whl", hash = "sha256:9816b477e1a0852d7e8c0c7b8ba667e394b102b10f6f4b9259b05576ecbe759a", size = 555734, upload-time = "2024-08-09T11:03:15.307Z" }, - { url = "https://files.pythonhosted.org/packages/ae/49/a67b40604c4eaf17b7ff844090cd2ce69f3729b99e0f166e927b147e2679/matscipy-1.1.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:2e1812e346aa007f093601351774b7d9263acfdfbc9cf6526ac48d0660bb69b1", size = 433453, upload-time = "2024-08-09T11:02:49.465Z" }, - { url = "https://files.pythonhosted.org/packages/a9/8e/6fbf65f48738e639279828a5839bd56f118daedc507deebdcb1cb49038b3/matscipy-1.1.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:6e6a96321c51900e1ec9ba93de12c45d5a419349c2e28f775c9ccf2018e8cc1e", size = 433833, upload-time = "2024-08-09T11:00:43.35Z" }, - { url = "https://files.pythonhosted.org/packages/25/b8/8b3179b790ac9d3dfd8e9024b7e7b467ee5776419fec0df34f20a3e26fc6/matscipy-1.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bb951f024d237f96ba9ff4fca7e4c6db9eb5f935fb1a4e628ee4cf297bab474a", size = 437817, upload-time = "2024-08-09T11:04:14.254Z" }, - { url = "https://files.pythonhosted.org/packages/35/15/35cf1bafe6cf22557e46e40f3a95c7b55d654f01f06ff2c9ebc0c7278e59/matscipy-1.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:46cacf8dbc775c4dc0929ebc50a7db170472b7d943bdd263f7dff44d0a648bc0", size = 438602, upload-time = "2024-08-09T11:01:07.757Z" }, - { url = "https://files.pythonhosted.org/packages/b4/7e/4010a3de102a1e584f439de251b946cd4d28f67f25a2e8f325a6fa3d7f45/matscipy-1.1.0-cp311-cp311-win_amd64.whl", hash = "sha256:129ad4403e27691141b2da97510a5f10203a3c73b4681070a5e40a0c58747e74", size = 555733, upload-time = "2024-08-09T11:04:34.09Z" }, - { url = "https://files.pythonhosted.org/packages/c2/08/a09bbe3dd13edffb5845e8a16c4c51d354d07158f670a4ea547b7edda102/matscipy-1.1.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:90808f1b80fc13c8665eb15f6fe94198a489ef2f00e6532844c58261462a89ca", size = 433465, upload-time = "2024-08-09T11:02:39.761Z" }, - { url = "https://files.pythonhosted.org/packages/78/1b/c6e84d4cdc0c0333532d961034c1e142f7c9fc48194c49b5f8161561da2f/matscipy-1.1.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:fea170c1a331ab5bc8c239ac4ee75834cd3fcdb5ff1f70b37da014738353e462", size = 433600, upload-time = "2024-08-09T11:00:46.847Z" }, - { url = "https://files.pythonhosted.org/packages/4c/7f/adaa32bccf5d9608a7c484a426935ce344351ab563fd485904d4ded843a3/matscipy-1.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:807ebbe90d2209bbc90534adbddd327b45c6b397a3fd7d58f79bb2b5f53a3eea", size = 437901, upload-time = "2024-08-09T11:04:28.471Z" }, - { url = "https://files.pythonhosted.org/packages/be/ba/eb76f2bb74d2f2ad15a0fdf87afc9767a594c8e972b9f1b509a1378d68a6/matscipy-1.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4fb5ab99a619eefc959ecf1fd90ea5736458a16bb8ccf77a9638c27ac3d6b01a", size = 438970, upload-time = "2024-08-09T11:01:06.817Z" }, - { url = "https://files.pythonhosted.org/packages/64/b2/9f22a4f7defa598164c6426931da7f510353457c16e16d6b787bb9dc39d2/matscipy-1.1.0-cp312-cp312-win_amd64.whl", hash = "sha256:63a5c8d19c3b5f4eb5f8eb21a7ddbbecf66411f6bf3defca5334a2e7c932bcd1", size = 555837, upload-time = "2024-08-09T11:04:17.519Z" }, + { name = "ase", marker = "(sys_platform == 'linux' and extra == 'extra-5-mlipx-grace') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'extra-5-mlipx-grace') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "packaging", marker = "(sys_platform == 'linux' and extra == 'extra-5-mlipx-grace') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "scipy", marker = "(sys_platform == 'linux' and extra == 'extra-5-mlipx-grace') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/67/a4/99d104ebaab040212eb46e9e78b0c264d79fa1396305745ad1d8f974fe59/matscipy-1.1.1.tar.gz", hash = "sha256:2d806d27bfcb99c6e365e0e20cee08e71952ce37b5df3667a1b955dbe26138c2", size = 10362807, upload-time = "2024-10-16T12:57:27.047Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c6/08/e27c620d821ff7653cc93c6211046354c7aa422b2289a2c202aeab6d7ac4/matscipy-1.1.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:1865a7de629d356289867f1298ff08a280976fd20174a9749699cb1cb44397cb", size = 443590, upload-time = "2024-10-16T12:59:49.732Z" }, + { url = "https://files.pythonhosted.org/packages/e0/4d/8be5b139fbcb889f24a3edd2bba157575f931e91408309f231906e11ea72/matscipy-1.1.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:9c4824ff40a187d0a84ca0b341aa449109398798d717014f7f59e2660ecd6f05", size = 443958, upload-time = "2024-10-16T12:58:05.598Z" }, + { url = "https://files.pythonhosted.org/packages/2d/eb/cdf942573eacbc7a267bb7d8f84529096434d12a0d8e8b05b6b51ccd65a9/matscipy-1.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:15ebc86f7ef293fa5161bccf9573f20f7cecced9fea8f1efe833ae67775cf45f", size = 447879, upload-time = "2024-10-16T13:02:11.866Z" }, + { url = "https://files.pythonhosted.org/packages/77/79/c12cca097156f55a71102a400d02fd352c6adb8b3d16464c4b4782d84147/matscipy-1.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1b32fd06e1b97f2df632ca5289863efef522e11c7e5ca62023bee8b01de0a274", size = 448830, upload-time = "2024-10-16T12:57:03.802Z" }, + { url = "https://files.pythonhosted.org/packages/84/a3/76dbe44f0e1efe020886e841ad72a9101282a66f92009d9bbf995cbdf4aa/matscipy-1.1.1-cp311-cp311-win_amd64.whl", hash = "sha256:c39429604ad02865057ebe611ef15f077facc58890c33cc46449889a48539fd9", size = 565894, upload-time = "2024-10-16T12:58:47.403Z" }, + { url = "https://files.pythonhosted.org/packages/f5/ba/e082a33beeace6493c300ac0ddf6d7346cfb0d7ce4f06e4336ba39bd8863/matscipy-1.1.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:661bdb24472d192effce98ffb80b9b90ed481238a27bab0856c88ea6cdf6b2fd", size = 443556, upload-time = "2024-10-16T13:00:11.782Z" }, + { url = "https://files.pythonhosted.org/packages/4e/4b/321270220155ab2985520e27a6bdd5818f1d7a908dd066b15afd5f39d8e5/matscipy-1.1.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:845948900663640a6b1d7b2e8d20956dd443dbfa3dfbd1b2ceae45982ac0caf0", size = 443717, upload-time = "2024-10-16T12:58:34.475Z" }, + { url = "https://files.pythonhosted.org/packages/39/ae/75c17ed5b45fa2fb8e529fe0fa524878b759f4bc9affbd14ea95ce52a485/matscipy-1.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7180d932332dd8d3e00223954da44e9571167f58c768c2cee48cf7f85f0c4f27", size = 447973, upload-time = "2024-10-16T13:02:24.288Z" }, + { url = "https://files.pythonhosted.org/packages/a7/e2/51247a22f02979020cb95b6480822478c8491b7fb6f792eff125dd15fb1a/matscipy-1.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f8088bf43f3b383784321ad044bb03031c6c6a94038a0a7ec3c80b9122ded39b", size = 449034, upload-time = "2024-10-16T12:58:06.282Z" }, + { url = "https://files.pythonhosted.org/packages/77/11/5284ce41986d69f71116c7b7d5dde57da76b5bccf1dba10abc06958aa086/matscipy-1.1.1-cp312-cp312-win_amd64.whl", hash = "sha256:15eccc94d60f6b7365712a611bb144f37b647a665f745a4dd2c0ed170a534c2d", size = 565994, upload-time = "2024-10-16T13:01:44.212Z" }, ] [[package]] name = "matscipy" -version = "1.1.1" +version = "1.2.0" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", ] dependencies = [ - { name = "ase", marker = "extra == 'extra-5-mlipx-grace' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-5-mlipx-grace' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "packaging", marker = "extra == 'extra-5-mlipx-grace' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "scipy", marker = "extra == 'extra-5-mlipx-grace' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-sevenn')" }, + { name = "ase", marker = "(sys_platform != 'linux' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-sevenn')" }, + { name = "numpy", version = "2.1.3", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'linux' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-sevenn')" }, + { name = "packaging", marker = "(sys_platform != 'linux' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-sevenn')" }, + { name = "scipy", marker = "(sys_platform != 'linux' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-sevenn')" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/67/a4/99d104ebaab040212eb46e9e78b0c264d79fa1396305745ad1d8f974fe59/matscipy-1.1.1.tar.gz", hash = "sha256:2d806d27bfcb99c6e365e0e20cee08e71952ce37b5df3667a1b955dbe26138c2", size = 10362807, upload-time = "2024-10-16T12:57:27.047Z" } +sdist = { url = "https://files.pythonhosted.org/packages/3e/62/851f14fef0d47d5546cc3bb315a96d73e3cee9588adb069c09dc5463a64a/matscipy-1.2.0.tar.gz", hash = "sha256:1d0691be7e541357ec7a3363e1ed2d7289e5ef8942fbc94064567124d1fb7444", size = 10368600, upload-time = "2025-11-20T17:07:15.871Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/d5/30/a2b676f877d812c8025fe213184fd13b67faa3602a1220681f90bb962f53/matscipy-1.1.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:586897ab3eb8657ad41d93395c1185ed26739a39e33a0c555f188996a530d05d", size = 443591, upload-time = "2024-10-16T13:00:01.869Z" }, - { url = "https://files.pythonhosted.org/packages/98/68/b4ce7491c0bea05586567ab84320ada9b26ce904db5883d8fdbeefeacc2d/matscipy-1.1.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c4b101fa81d2206a33a80fad5640a7189d0982c2dbe9f200314739592b2d25d8", size = 443956, upload-time = "2024-10-16T12:58:21.577Z" }, - { url = "https://files.pythonhosted.org/packages/27/e8/46389744f5dad0ef3797e64dceda4c998e3aeff40aaccb84f9159a220c9a/matscipy-1.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6eb023e71578678550ce713a9559c2704077100ae63b0bc252e385bd244a6e2b", size = 447878, upload-time = "2024-10-16T13:01:59.492Z" }, - { url = "https://files.pythonhosted.org/packages/d8/a3/7d8941b1d749a745e1ab9761983f11fd91618ccfaa56662b2787c15e8334/matscipy-1.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:233b8f6a27aeabe27f2288318ad5e24ee7476547eb0ba5e236d1f320e2a90e02", size = 448829, upload-time = "2024-10-16T12:56:04.274Z" }, - { url = "https://files.pythonhosted.org/packages/36/b7/119092a4cd46c571ba1f717ac49a57b4ca59463c36b8ad53afeb66f677b9/matscipy-1.1.1-cp310-cp310-win_amd64.whl", hash = "sha256:a676d134e1aa31da17ea12d63eb3648f78df4c6e1e283b29b270a5017e2ba4aa", size = 565893, upload-time = "2024-10-16T12:59:04.103Z" }, - { url = "https://files.pythonhosted.org/packages/c6/08/e27c620d821ff7653cc93c6211046354c7aa422b2289a2c202aeab6d7ac4/matscipy-1.1.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:1865a7de629d356289867f1298ff08a280976fd20174a9749699cb1cb44397cb", size = 443590, upload-time = "2024-10-16T12:59:49.732Z" }, - { url = "https://files.pythonhosted.org/packages/e0/4d/8be5b139fbcb889f24a3edd2bba157575f931e91408309f231906e11ea72/matscipy-1.1.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:9c4824ff40a187d0a84ca0b341aa449109398798d717014f7f59e2660ecd6f05", size = 443958, upload-time = "2024-10-16T12:58:05.598Z" }, - { url = "https://files.pythonhosted.org/packages/2d/eb/cdf942573eacbc7a267bb7d8f84529096434d12a0d8e8b05b6b51ccd65a9/matscipy-1.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:15ebc86f7ef293fa5161bccf9573f20f7cecced9fea8f1efe833ae67775cf45f", size = 447879, upload-time = "2024-10-16T13:02:11.866Z" }, - { url = "https://files.pythonhosted.org/packages/77/79/c12cca097156f55a71102a400d02fd352c6adb8b3d16464c4b4782d84147/matscipy-1.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1b32fd06e1b97f2df632ca5289863efef522e11c7e5ca62023bee8b01de0a274", size = 448830, upload-time = "2024-10-16T12:57:03.802Z" }, - { url = "https://files.pythonhosted.org/packages/84/a3/76dbe44f0e1efe020886e841ad72a9101282a66f92009d9bbf995cbdf4aa/matscipy-1.1.1-cp311-cp311-win_amd64.whl", hash = "sha256:c39429604ad02865057ebe611ef15f077facc58890c33cc46449889a48539fd9", size = 565894, upload-time = "2024-10-16T12:58:47.403Z" }, - { url = "https://files.pythonhosted.org/packages/f5/ba/e082a33beeace6493c300ac0ddf6d7346cfb0d7ce4f06e4336ba39bd8863/matscipy-1.1.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:661bdb24472d192effce98ffb80b9b90ed481238a27bab0856c88ea6cdf6b2fd", size = 443556, upload-time = "2024-10-16T13:00:11.782Z" }, - { url = "https://files.pythonhosted.org/packages/4e/4b/321270220155ab2985520e27a6bdd5818f1d7a908dd066b15afd5f39d8e5/matscipy-1.1.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:845948900663640a6b1d7b2e8d20956dd443dbfa3dfbd1b2ceae45982ac0caf0", size = 443717, upload-time = "2024-10-16T12:58:34.475Z" }, - { url = "https://files.pythonhosted.org/packages/39/ae/75c17ed5b45fa2fb8e529fe0fa524878b759f4bc9affbd14ea95ce52a485/matscipy-1.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7180d932332dd8d3e00223954da44e9571167f58c768c2cee48cf7f85f0c4f27", size = 447973, upload-time = "2024-10-16T13:02:24.288Z" }, - { url = "https://files.pythonhosted.org/packages/a7/e2/51247a22f02979020cb95b6480822478c8491b7fb6f792eff125dd15fb1a/matscipy-1.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f8088bf43f3b383784321ad044bb03031c6c6a94038a0a7ec3c80b9122ded39b", size = 449034, upload-time = "2024-10-16T12:58:06.282Z" }, - { url = "https://files.pythonhosted.org/packages/77/11/5284ce41986d69f71116c7b7d5dde57da76b5bccf1dba10abc06958aa086/matscipy-1.1.1-cp312-cp312-win_amd64.whl", hash = "sha256:15eccc94d60f6b7365712a611bb144f37b647a665f745a4dd2c0ed170a534c2d", size = 565994, upload-time = "2024-10-16T13:01:44.212Z" }, + { url = "https://files.pythonhosted.org/packages/32/c4/965a7e7ad7c0b0e8aa496b46f178a31c5b4f6eb570f6025a249403fd06c2/matscipy-1.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:803acbd9459fd7ade405a64d080910abde885fd0d363bda2b9ec4412535cf7ea", size = 443434, upload-time = "2025-11-20T17:06:29.953Z" }, + { url = "https://files.pythonhosted.org/packages/3d/a6/329e728770e6f6bd817544fde5ab6eb14f34a622996ab4ac0deab7548341/matscipy-1.2.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:26dcf0dcbd937bc09c2b73f4c792a258ffdf7e2e1852a0715f362e376a4f20ed", size = 452543, upload-time = "2025-11-20T17:06:31.6Z" }, + { url = "https://files.pythonhosted.org/packages/a9/50/187ee780535079372df2d9b3e34d095c61fb5174c7521c62c271887b216c/matscipy-1.2.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:1a364a8158f8dd0406ffacb7c2d7928e4d5470af79ac31c49b4f5e02c785bd23", size = 452853, upload-time = "2025-11-20T17:06:33.028Z" }, + { url = "https://files.pythonhosted.org/packages/4f/5e/a7bc77cd64e2277f1ce401d01b9fb34326cd2500175351f2aef8b2f5a0e7/matscipy-1.2.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:7c64be3b911d2725bc6def4ba2ee4f38844e1f45f5efa65d1d14fd1ae7074711", size = 1432759, upload-time = "2025-11-20T17:06:34.899Z" }, + { url = "https://files.pythonhosted.org/packages/64/8c/a6824f9659e066a8ab5abb66b208afcb839e502863908d90dc03db06f228/matscipy-1.2.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:01f1a35d5cda14a9abd54681b49e32d177b7cd59a3e932e89933d1f38b329539", size = 1484856, upload-time = "2025-11-20T17:06:37.503Z" }, + { url = "https://files.pythonhosted.org/packages/bf/ff/ea1bc2b5249ff877c9a68f435e6129ebcf480873abac5d055a32c4960240/matscipy-1.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:4d41ec4e48647aa01c0e977364efcfa25e258862b1a4e1d8be75f7012aa36468", size = 573268, upload-time = "2025-11-20T17:06:39.222Z" }, + { url = "https://files.pythonhosted.org/packages/1c/93/732c9ea8cb658a525f5f899193523eb27462fa2858677a34b75b38585c4c/matscipy-1.2.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:7a499999f253d708873caf7e23feec21e94e031c21df79593eccf072cde6f4d2", size = 443317, upload-time = "2025-11-20T17:06:41.032Z" }, + { url = "https://files.pythonhosted.org/packages/67/c7/442d9c612c59924f5b69fceee7f01f329633c60e569d43bd9eeefa9c56f7/matscipy-1.2.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6433f4b719237b8134c701d13ad88dbfac105c6703820aab96324c5fd559a9af", size = 452705, upload-time = "2025-11-20T17:06:42.953Z" }, + { url = "https://files.pythonhosted.org/packages/3c/ba/79020348dbdaa6786ff2162e11bc56095e0b949e8bb9813dee12ccc1f567/matscipy-1.2.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:14e1ec6d9c51b6a0664b0ad2190326f9cac14eae58554c57dea95e378b022864", size = 453057, upload-time = "2025-11-20T17:06:44.186Z" }, + { url = "https://files.pythonhosted.org/packages/d6/16/dffd1f8894f38eb8ba1b55053534abda8f1e124c4dda6633e4f7a3b12d94/matscipy-1.2.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:bb8743b61ec5fa8944ceab4dcd639a2005463ccea0d84bdc8f5960a922eff45e", size = 1432877, upload-time = "2025-11-20T17:06:45.927Z" }, + { url = "https://files.pythonhosted.org/packages/98/94/d0c4e04a43a8dc9b84f18c25b95948f3e3113e8bd9d53b50b3be0b130d91/matscipy-1.2.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:f8d909f3fc99ed6457b4f6df9ce31bdc160ee388b00cf143283fb89dbaacb286", size = 1484981, upload-time = "2025-11-20T17:06:48.358Z" }, + { url = "https://files.pythonhosted.org/packages/e0/ad/be93f306d1d1e6534d30ebb7e3b43f2c493bb2371f02aa452d717ee548c3/matscipy-1.2.0-cp312-cp312-win_amd64.whl", hash = "sha256:af2c181e72f0a0fac66bd75b763dbbab11b8ecff3c6c15a6aa6a18cee4e84ff1", size = 573455, upload-time = "2025-11-20T17:06:49.866Z" }, + { url = "https://files.pythonhosted.org/packages/b2/ce/f43c642fed92127f5e56661fe97c378a893c967b7a2ceba9d0cb8ac4da8d/matscipy-1.2.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:366b39727ab8ea26611da9bdc27a256ad9769c32ac2384a608ede4fa1e214e85", size = 443315, upload-time = "2025-11-20T17:06:51.545Z" }, + { url = "https://files.pythonhosted.org/packages/25/ca/bde59bef3e97f8b7d338700c3a176d26eb743be6c4cc25ce98ebff707e12/matscipy-1.2.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c447eeb6c22c059e5d602dddcc6de088ff8ca645ecd24b640817afa3db2c5013", size = 452706, upload-time = "2025-11-20T17:06:53.816Z" }, + { url = "https://files.pythonhosted.org/packages/74/f6/9862b530ed2df9a4e45bcd468c93b6d39b0c764000f00137ebd63c4404cf/matscipy-1.2.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:90ffe1d1abc5683f293950c35cd6ce8cb0cd8f329a6fb16d79f0ecf3f07473d0", size = 453061, upload-time = "2025-11-20T17:06:55.352Z" }, + { url = "https://files.pythonhosted.org/packages/db/db/52ac59fcd14877a2aa965bf08b1f0e28276a185154e7eb4ac465a7b238bb/matscipy-1.2.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cbbaf24cd83d787660cb452e906a42cfa80d39bb8165d099bce41f31402929bf", size = 1432877, upload-time = "2025-11-20T17:06:57.155Z" }, + { url = "https://files.pythonhosted.org/packages/44/1b/25f6b9ea546172f22314eb353697825ba7a2395627da08142ad1ff91f1db/matscipy-1.2.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:d8118378b06fae6f1846be288a0c54d6176e7a37c55439d48df176dd82640a70", size = 1484989, upload-time = "2025-11-20T17:07:01.627Z" }, + { url = "https://files.pythonhosted.org/packages/98/4d/779281eea03f8cdc9e0ced7472685319099e11fa578a2130a29331241cf6/matscipy-1.2.0-cp313-cp313-win_amd64.whl", hash = "sha256:ee21b7511565e22c0df510a9f7c513dc3dffd69a1e64cdf3498cd4db63d68de5", size = 573442, upload-time = "2025-11-20T17:07:02.968Z" }, ] [[package]] name = "mattersim" version = "1.1.2" source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "ase" }, - { name = "atomate2" }, - { name = "azure-identity" }, - { name = "azure-storage-blob" }, - { name = "deprecated" }, - { name = "e3nn", version = "0.5.6", source = { registry = "https://pypi.org/simple" } }, - { name = "emmet-core" }, - { name = "loguru" }, - { name = "mp-api" }, - { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" } }, - { name = "opt-einsum-fx" }, - { name = "phonopy" }, - { name = "pydantic" }, - { name = "pymatgen" }, - { name = "scikit-learn" }, - { name = "seekpath" }, - { name = "torch", version = "2.2.0", source = { registry = "https://pypi.org/simple" }, marker = "(extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "torch", version = "2.7.1", source = { registry = "https://pypi.org/simple" }, marker = "(extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "torch-ema" }, - { name = "torch-geometric" }, - { name = "torch-runstats" }, - { name = "torchaudio", version = "2.2.0", source = { registry = "https://pypi.org/simple" }, marker = "(extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "torchaudio", version = "2.7.1", source = { registry = "https://pypi.org/simple" }, marker = "(extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "torchmetrics" }, - { name = "torchvision", version = "0.17.0", source = { registry = "https://pypi.org/simple" }, marker = "(extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "torchvision", version = "0.22.1", source = { registry = "https://pypi.org/simple" }, marker = "(extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "wandb" }, +resolution-markers = [ + "python_full_version >= '3.13' and sys_platform == 'linux'", + "python_full_version == '3.12.*' and sys_platform == 'linux'", + "python_full_version < '3.12' and sys_platform == 'linux'", +] +dependencies = [ + { name = "ase", marker = "(sys_platform == 'linux' and extra == 'extra-5-mlipx-grace') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "atomate2", marker = "(sys_platform == 'linux' and extra == 'extra-5-mlipx-grace') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "azure-identity", marker = "(sys_platform == 'linux' and extra == 'extra-5-mlipx-grace') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "azure-storage-blob", marker = "(sys_platform == 'linux' and extra == 'extra-5-mlipx-grace') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "deprecated", marker = "(sys_platform == 'linux' and extra == 'extra-5-mlipx-grace') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "e3nn", version = "0.5.8", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'extra-5-mlipx-grace') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "emmet-core", marker = "(sys_platform == 'linux' and extra == 'extra-5-mlipx-grace') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "loguru", marker = "(sys_platform == 'linux' and extra == 'extra-5-mlipx-grace') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "mp-api", marker = "(sys_platform == 'linux' and extra == 'extra-5-mlipx-grace') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'extra-5-mlipx-grace') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "opt-einsum-fx", marker = "(sys_platform == 'linux' and extra == 'extra-5-mlipx-grace') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "phonopy", marker = "(sys_platform == 'linux' and extra == 'extra-5-mlipx-grace') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "pydantic", marker = "(sys_platform == 'linux' and extra == 'extra-5-mlipx-grace') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "pymatgen", marker = "(sys_platform == 'linux' and extra == 'extra-5-mlipx-grace') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "scikit-learn", marker = "(sys_platform == 'linux' and extra == 'extra-5-mlipx-grace') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "seekpath", marker = "(sys_platform == 'linux' and extra == 'extra-5-mlipx-grace') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "torch", version = "2.7.0", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'extra-5-mlipx-grace') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "torch-ema", marker = "(sys_platform == 'linux' and extra == 'extra-5-mlipx-grace') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "torch-geometric", marker = "(sys_platform == 'linux' and extra == 'extra-5-mlipx-grace') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "torch-runstats", marker = "(sys_platform == 'linux' and extra == 'extra-5-mlipx-grace') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "torchaudio", marker = "(sys_platform == 'linux' and extra == 'extra-5-mlipx-grace') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "torchmetrics", marker = "(sys_platform == 'linux' and extra == 'extra-5-mlipx-grace') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "torchvision", marker = "(sys_platform == 'linux' and extra == 'extra-5-mlipx-grace') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "wandb", marker = "(sys_platform == 'linux' and extra == 'extra-5-mlipx-grace') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/f1/60/d2552cd63733dc9baef316c5567393f36bed98e1b2ad507a26c2faad5e21/mattersim-1.1.2.tar.gz", hash = "sha256:54a62343525c8a69ee953e765bab9b8733d6192f4dbfeca9f44cd5742c195304", size = 24270382, upload-time = "2025-02-21T06:18:09.156Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/4e/8e/d5c8ca9c70a1c3517845e11c792c33f95e5d6209852c8469356c98fd2952/mattersim-1.1.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:6332d110a3e1a7202f298315de865e4c91491f3251dba4b91b8c4424f0adf2a0", size = 304183, upload-time = "2025-02-21T06:17:25.88Z" }, - { url = "https://files.pythonhosted.org/packages/e2/cf/451d25476971292b21c627bb1e5ef17903fff477f37e0f134dcc4e529353/mattersim-1.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e249532b6e66d9307c7a72fde252f0bcf151c588b8656ce56ef1cbaf0ed90d10", size = 681361, upload-time = "2025-02-21T06:17:27.255Z" }, - { url = "https://files.pythonhosted.org/packages/65/9b/e3ade306186174c57ac1bb3aa39a0af0fe9f3cb4219465d49dc76156bf81/mattersim-1.1.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:507848061bbb9a7a3704a2ad6f4559710a563b633a2a9eb79fe412f39fd8091b", size = 665438, upload-time = "2025-02-21T06:17:28.613Z" }, - { url = "https://files.pythonhosted.org/packages/62/03/729b8c620e222325767e076cdb9fbb00df423f2d0fe0bffa9ab2c705e05a/mattersim-1.1.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:ffb378696c3adc02b6dac8e81c6af5e97ae7e3b0c0f0b32b3f34254401ce1d5d", size = 687614, upload-time = "2025-02-21T06:17:30.462Z" }, - { url = "https://files.pythonhosted.org/packages/85/85/346dcfd6d63a10ca9099482945c8619ea9733bca74acc7c50f951ce7c5ae/mattersim-1.1.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:63475bd55ef82030743772a53ee4467e261ac9663eb8df270cb6854daa692a60", size = 701536, upload-time = "2025-02-21T06:17:32.643Z" }, { url = "https://files.pythonhosted.org/packages/1e/a5/d4040e1d2f804db7c97d85abe6ae436fd4331a24911c5e19da4aa719eca0/mattersim-1.1.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:6b684a885110e43790bbbc4b133211f8fc82ab54769f3f3e9fd1d4dcadd269a3", size = 304121, upload-time = "2025-02-21T06:17:36.159Z" }, { url = "https://files.pythonhosted.org/packages/79/11/ab78d3c77840fe7ba733950381d9fdd0cda7fbadaefedaadca247d67271c/mattersim-1.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:936f2e06b0ae5d747d74923eb3a23e2c7592fa35ce570a1a2f86b7bcaa6d5d9b", size = 719356, upload-time = "2025-02-21T06:17:38.272Z" }, { url = "https://files.pythonhosted.org/packages/f3/47/fb383bf995bcdbd932adc2cda07b81a2a10dad5f234ae7a6b81905eeff82/mattersim-1.1.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e98dfe38bd3e20841ad417900d292df6b39b6681895f90b7fbd62b16135bd0da", size = 701291, upload-time = "2025-02-21T06:17:40.101Z" }, @@ -5903,6 +4911,219 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/d4/1f/7420702a038c6faa16064c166e306abf22bf0eba3ff5464d37a63dbdc8ae/mattersim-1.1.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:82fe04f066cd5f963be5093999974d86cacf2f36abb42b620ef82dadc89c4b42", size = 728993, upload-time = "2025-02-21T06:17:59.922Z" }, ] +[[package]] +name = "mattersim" +version = "1.2.0" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", +] +dependencies = [ + { name = "ase", marker = "sys_platform != 'linux' or extra != 'extra-5-mlipx-grace' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "atomate2", marker = "sys_platform != 'linux' or extra != 'extra-5-mlipx-grace' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "azure-identity", marker = "sys_platform != 'linux' or extra != 'extra-5-mlipx-grace' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "azure-storage-blob", marker = "sys_platform != 'linux' or extra != 'extra-5-mlipx-grace' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "deprecated", marker = "sys_platform != 'linux' or extra != 'extra-5-mlipx-grace' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "e3nn", version = "0.5.8", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform != 'linux' or extra != 'extra-5-mlipx-grace' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "emmet-core", marker = "sys_platform != 'linux' or extra != 'extra-5-mlipx-grace' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "loguru", marker = "sys_platform != 'linux' or extra != 'extra-5-mlipx-grace' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "mp-api", marker = "sys_platform != 'linux' or extra != 'extra-5-mlipx-grace' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "numpy", version = "2.1.3", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform != 'linux' or extra != 'extra-5-mlipx-grace' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "opt-einsum-fx", marker = "sys_platform != 'linux' or extra != 'extra-5-mlipx-grace' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "phonopy", marker = "sys_platform != 'linux' or extra != 'extra-5-mlipx-grace' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "pydantic", marker = "sys_platform != 'linux' or extra != 'extra-5-mlipx-grace' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "pymatgen", marker = "sys_platform != 'linux' or extra != 'extra-5-mlipx-grace' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "scikit-learn", marker = "sys_platform != 'linux' or extra != 'extra-5-mlipx-grace' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "seekpath", marker = "sys_platform != 'linux' or extra != 'extra-5-mlipx-grace' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "torch", version = "2.7.0", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform != 'linux' or extra != 'extra-5-mlipx-grace' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "torch-ema", marker = "sys_platform != 'linux' or extra != 'extra-5-mlipx-grace' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "torch-geometric", marker = "sys_platform != 'linux' or extra != 'extra-5-mlipx-grace' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "torch-runstats", marker = "sys_platform != 'linux' or extra != 'extra-5-mlipx-grace' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "torchaudio", marker = "sys_platform != 'linux' or extra != 'extra-5-mlipx-grace' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "torchmetrics", marker = "sys_platform != 'linux' or extra != 'extra-5-mlipx-grace' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "torchvision", marker = "sys_platform != 'linux' or extra != 'extra-5-mlipx-grace' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "wandb", marker = "sys_platform != 'linux' or extra != 'extra-5-mlipx-grace' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/7c/9a/0d64b8ad7966bba8a18d1b7226e4017e802bc83fdb2cb1663998d32866bd/mattersim-1.2.0.tar.gz", hash = "sha256:bd345cd1805927f29e2d1af0b2bf75e88bcf71d6f092e07eb6b95889c8e4b0f0", size = 27235293, upload-time = "2025-07-06T06:06:43.835Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ee/14/85d438e06fd690728ddfdf755e0a9349a40ed7fc00059b61c52761cd1ad6/mattersim-1.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:49cb15c72b7614f9b8b5415db80b20d90d9d6b2676ced00b37fd05f50343a4e1", size = 307745, upload-time = "2025-07-06T06:06:26.378Z" }, + { url = "https://files.pythonhosted.org/packages/c3/f2/44a03acfd04902dc546d04b0a2611945263d6ff6895abfa1f2f1b8ccb719/mattersim-1.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b7e32aa7279d39652084b5afca989c66748126e9f6ec4b7f41c09c7350fb6337", size = 725464, upload-time = "2025-07-06T06:06:27.589Z" }, + { url = "https://files.pythonhosted.org/packages/ea/96/4f24c01f70f4c9574a2beec2c2b50b950ff5bebfe0b8ca174bb030dd030d/mattersim-1.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:61a5c5ef82851d1896c85a81b0243a208dda301f8f644dffcd509772150090bf", size = 707191, upload-time = "2025-07-06T06:06:29.045Z" }, + { url = "https://files.pythonhosted.org/packages/9f/a9/cc2f84bc9623549f13d16d7ea2a7f3f5a9483db91c527f922ab351c5869a/mattersim-1.2.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:6b4ce68270d84e7260f318e11eeed10bcb37e98430b0096b1264e2cc4ca978d6", size = 726927, upload-time = "2025-07-06T06:06:29.976Z" }, + { url = "https://files.pythonhosted.org/packages/7c/3a/73af370e38d9d8934f284d75f5e9402277a1bcf16408b49092383a26a4e6/mattersim-1.2.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:3336364e159b0a953ece74da120d09f4ed058f5a38e527e06a398131f3c61fc5", size = 742042, upload-time = "2025-07-06T06:06:30.952Z" }, + { url = "https://files.pythonhosted.org/packages/7e/1a/2b9aa5a9195509d62168f49d46d7363dfb657fcc398d8b26c0ce3b1e1b0b/mattersim-1.2.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:a3761872da107b403220a3a6dc48f7af927e51d49a83d53f35ddb0e86b1d964f", size = 307611, upload-time = "2025-07-06T06:06:31.891Z" }, + { url = "https://files.pythonhosted.org/packages/07/67/c04f23f3afaa80cdf87adae09ff4b3db9579fedde95b8c8ae4fe5bbd6b4a/mattersim-1.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d04e389349f813392bd90c6aa8bcc31a09e53c3aa2ac00e445c4ef7b7fecf1f0", size = 722583, upload-time = "2025-07-06T06:06:32.823Z" }, + { url = "https://files.pythonhosted.org/packages/1b/38/24032c949dba17a9b31738c66e2cfede3c4a86eed7f0d06dd09a3be06195/mattersim-1.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b94cd0b1d7018d6abb9c2e2386d57208badad0d4c4306c3ab50d5ffeb165eaaa", size = 698776, upload-time = "2025-07-06T06:06:33.816Z" }, + { url = "https://files.pythonhosted.org/packages/b9/cc/14e99ae483766179be9f6bd9d3ec8db752afe9d1f2733f8e617671e32e40/mattersim-1.2.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:ffdef8fbb3f17fa6f10f96e458589c7da21eeabdce6f46082280aa2e77bed5e5", size = 720454, upload-time = "2025-07-06T06:06:35.469Z" }, + { url = "https://files.pythonhosted.org/packages/87/05/950dd2fef711b7a1e2e0788dc7fc4f45364ac858ba06742f0803876ce634/mattersim-1.2.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:c284353c80e02f2be23ea872d1a0d608d89fd5110e313e773b933f19519e92d5", size = 741240, upload-time = "2025-07-06T06:06:36.476Z" }, + { url = "https://files.pythonhosted.org/packages/33/10/4e9354fc272e1d6e237210652a5e8ad00dfaa3b00ada23199abf9f11415e/mattersim-1.2.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:c94d2b0abe9f98a8b2abcbe8e5aeea2d74819521a39dd2530778a829d4273c6a", size = 306895, upload-time = "2025-07-06T06:06:37.712Z" }, + { url = "https://files.pythonhosted.org/packages/c3/81/85c9a109a89069394bef07f297a05ec57a2975193d7b174ba0de61858026/mattersim-1.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dc6056784348b142109560605fe3ec794604f4d3468d22455205e69f83bf57a1", size = 713857, upload-time = "2025-07-06T06:06:38.613Z" }, + { url = "https://files.pythonhosted.org/packages/c9/9f/16bf815d2d5e0f972bf5873315e79f8f45bd103481cfdf865a05f809c140/mattersim-1.2.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:102dcd1015c2c765d3365c8d88cc685e061cde8936510828ad81264df5240ed6", size = 693178, upload-time = "2025-07-06T06:06:39.554Z" }, + { url = "https://files.pythonhosted.org/packages/0b/84/e328b6d58babc18cf156225c00d233b3d174c79f9d99fddc54454e3d7012/mattersim-1.2.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:77752538e7edefab37ea15b583ad35ee4579051bfb3fdaf53d62a775b3ede07d", size = 716680, upload-time = "2025-07-06T06:06:40.97Z" }, + { url = "https://files.pythonhosted.org/packages/5a/37/1392a21ed57ce52e9c1a85bbd94fd585a15be275ac683de0567a1f4e7074/mattersim-1.2.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:464d9b8e8487e2f9b7daeaddd1917cd71cfa5746febfa834c72e3ff3452d921e", size = 733822, upload-time = "2025-07-06T06:06:42.248Z" }, +] + [[package]] name = "mdurl" version = "0.1.2" @@ -5914,19 +5135,19 @@ wheels = [ [[package]] name = "metatensor-core" -version = "0.1.14" +version = "0.1.17" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-5-mlipx-grace' or extra == 'extra-5-mlipx-matpes' or extra == 'extra-5-mlipx-mattersim' or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-5-mlipx-fairchem' or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'extra-5-mlipx-grace') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "numpy", version = "2.1.3", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform != 'linux' or extra == 'extra-5-mlipx-fairchem' or extra != 'extra-5-mlipx-grace' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/2d/74/39feb142e0b6b1f9490822e050c635e549d0a64b6a17a0376e284c97ad74/metatensor_core-0.1.14.tar.gz", hash = "sha256:ee1f87bc045beadafa63cc0ccd0ebcf9c9e9fe8d619529d28775b0c22e0bbe19", size = 136943, upload-time = "2025-04-11T16:00:17.797Z" } +sdist = { url = "https://files.pythonhosted.org/packages/dd/8b/97731caaa9140d69adf8ce38bc523fe473d9435fd870e31e1a37e74caf54/metatensor_core-0.1.17.tar.gz", hash = "sha256:98708f89a37652016ee508e307f824f3ca63307b85829de17ba6d2558f0b3b3b", size = 138680, upload-time = "2025-09-02T15:22:17.73Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/2f/fe/b2a872be09692ba949daabdc90e5c90b1346e9a9137db15c5e23f25f1192/metatensor_core-0.1.14-py3-none-macosx_11_0_arm64.whl", hash = "sha256:234b9b90bbd25cc02b2fbb532bd505ae78725f4180761842c2a8bcb47bd297de", size = 740779, upload-time = "2025-04-11T16:00:10.008Z" }, - { url = "https://files.pythonhosted.org/packages/2a/b2/7f19aa8dd45f42c2cea5ed562b8ee258ff06a1245a8db108fddcec41d79a/metatensor_core-0.1.14-py3-none-macosx_11_0_x86_64.whl", hash = "sha256:5387d656c0f88da5239fa2e4fc3eb8246e998ba4fea065d90020df35c2f68d10", size = 706754, upload-time = "2025-04-11T16:00:11.871Z" }, - { url = "https://files.pythonhosted.org/packages/bd/a6/d52ff5bb9e0420f3a8114c837b2bef95ef76d0c9c21ce0eb64a0d95f90fd/metatensor_core-0.1.14-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2256469ab224e7a4d4b35b89b5e6a8fef91209667f89b8d93680cd40c54103f9", size = 750253, upload-time = "2025-04-11T16:00:13.45Z" }, - { url = "https://files.pythonhosted.org/packages/36/a9/85c095b470093f2ff91620773ba1ad38175add139f38ae9286e3c4b3c640/metatensor_core-0.1.14-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e900046f5637f0d027056dd56abde8fe2f0ed1854a91a3a48aed9432916a3e75", size = 801315, upload-time = "2025-04-11T16:00:14.943Z" }, - { url = "https://files.pythonhosted.org/packages/12/3b/983fdc39c372fbf207a1e0f49aae265f9846183844e46d81118b623a0bef/metatensor_core-0.1.14-py3-none-win_amd64.whl", hash = "sha256:91b7d198e928bfc18e24acd9fa4ef5e79643b5563e4b97867895efdbed298794", size = 672619, upload-time = "2025-04-11T16:00:16.33Z" }, + { url = "https://files.pythonhosted.org/packages/61/7c/b2d965d3b76db5f14424c8ef3600bfa9dcd5167c4d6a4567c42262da8b34/metatensor_core-0.1.17-py3-none-macosx_11_0_arm64.whl", hash = "sha256:2fd81698d80cef5ba3ae8425af5b7de56e368c01638eec025877de6ec09eb26c", size = 458935, upload-time = "2025-09-02T15:21:53.582Z" }, + { url = "https://files.pythonhosted.org/packages/1f/cf/d5a5a6aedbca716329dd20c9d0363a999d11e95518634359d480dfddc56e/metatensor_core-0.1.17-py3-none-macosx_11_0_x86_64.whl", hash = "sha256:6f23532ab62d9115c1b5b6340e866b73137a6b945bfffe1607aa8cd3d074066b", size = 488119, upload-time = "2025-09-02T15:21:55.653Z" }, + { url = "https://files.pythonhosted.org/packages/32/11/4281c1a207e3fa6de8d757f400108cda8ad96cb5670dfd988f9af66faab5/metatensor_core-0.1.17-py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:94be19a510e278562faea70731660846b0ff0ad7f6f2079ff323a85a86519238", size = 498161, upload-time = "2025-09-02T15:21:57.926Z" }, + { url = "https://files.pythonhosted.org/packages/8e/82/1808883c0e7b9a521115770433edf7b5171e22b27484df7bc8ac16872a93/metatensor_core-0.1.17-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:d567b356e47fbe96789ac44aaa12e8cf2839134bf382bd3c68d61e42021679ae", size = 524936, upload-time = "2025-09-02T15:22:07.711Z" }, + { url = "https://files.pythonhosted.org/packages/68/fc/0f753f0aed626ef703f53360762b863ea0d5b50d13e0f8ee40309bfe2968/metatensor_core-0.1.17-py3-none-win_amd64.whl", hash = "sha256:0167724e9f23b7cd1beb9c95fe22eb9fc8f5f88848c988da31e7d24d84e52a62", size = 429986, upload-time = "2025-09-02T15:22:15.695Z" }, ] [[package]] @@ -5943,14 +5164,14 @@ wheels = [ [[package]] name = "metatensor-operations" -version = "0.3.3" +version = "0.3.4" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "metatensor-core" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/43/8f/5dbbee04bc7958c0edb9a163635cf5e00bdfe308ac33a30abf64f8227572/metatensor_operations-0.3.3.tar.gz", hash = "sha256:432d267ce1f3c5ee11994d5348e70bc517a3c19ef68982af7bb470463e3c1b6b", size = 54049, upload-time = "2025-04-25T12:47:46.566Z" } +sdist = { url = "https://files.pythonhosted.org/packages/2f/dc/5f2915b14e6d05aa70c29d39d53283d17835c2e2366aaf9e557ebddc8680/metatensor_operations-0.3.4.tar.gz", hash = "sha256:448c155e5d4ac7ad7bdf56a6d0883f641622d54d4357f50b2149b2cb2ad8d66a", size = 54288, upload-time = "2025-07-28T21:55:13.259Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/ba/24/352c9809d83859ec645aa6b40732414a7d15f75b8feca98f2549f90f2a87/metatensor_operations-0.3.3-py3-none-any.whl", hash = "sha256:8ba8b31006421fe8babcebd70ec9bebb24e0d062db5a7a13d425d8314a5f521b", size = 72744, upload-time = "2025-04-25T12:47:44.692Z" }, + { url = "https://files.pythonhosted.org/packages/5f/97/9ff73516fdc39abfd77a5ba72f1fbe5f78147d62c9ab0c55331ae8f3e306/metatensor_operations-0.3.4-py3-none-any.whl", hash = "sha256:94a74e25efb048c586cba4089f984cdf2b20ccab5fc6d992d49ffa723f7eb185", size = 73085, upload-time = "2025-07-28T21:55:11.87Z" }, ] [[package]] @@ -5959,9 +5180,8 @@ version = "0.7.6" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "metatensor-core" }, - { name = "torch", version = "2.2.0", source = { registry = "https://pypi.org/simple" }, marker = "(extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim')" }, { name = "torch", version = "2.6.0", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-5-mlipx-fairchem' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "torch", version = "2.7.1", source = { registry = "https://pypi.org/simple" }, marker = "(extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, + { name = "torch", version = "2.7.0", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-5-mlipx-grace' or extra == 'extra-5-mlipx-mace' or extra == 'extra-5-mlipx-matpes' or extra == 'extra-5-mlipx-mattersim' or extra != 'extra-5-mlipx-fairchem'" }, { name = "vesin" }, ] sdist = { url = "https://files.pythonhosted.org/packages/ed/e5/b2394acbb1b033316e015a4e7ff3dc8dd988ee7b97553d77bce56c3cca0b/metatensor_torch-0.7.6.tar.gz", hash = "sha256:bcc23b535e5b86c0d49096cbf73de67141896f4f14c114515d97b936a78353a1", size = 119898, upload-time = "2025-04-25T11:21:01.388Z" } @@ -5975,31 +5195,31 @@ wheels = [ [[package]] name = "metatomic-torch" -version = "0.1.2" +version = "0.1.3" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "metatensor-operations" }, { name = "metatensor-torch" }, - { name = "torch", version = "2.2.0", source = { registry = "https://pypi.org/simple" }, marker = "(extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim')" }, { name = "torch", version = "2.6.0", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-5-mlipx-fairchem' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "torch", version = "2.7.1", source = { registry = "https://pypi.org/simple" }, marker = "(extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, + { name = "torch", version = "2.7.0", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-5-mlipx-grace' or extra == 'extra-5-mlipx-mace' or extra == 'extra-5-mlipx-matpes' or extra == 'extra-5-mlipx-mattersim' or extra != 'extra-5-mlipx-fairchem'" }, { name = "vesin" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/44/1a/87c749c2b94ba77e2407eaa02bbd5f21a4892df86c3fb59cb9942934433b/metatomic_torch-0.1.2.tar.gz", hash = "sha256:0d793b16b3d6eee915c89e9b1a385143ec2dbb6dc451bed8feee3a2445b3f63e", size = 200889, upload-time = "2025-06-06T13:29:54.49Z" } +sdist = { url = "https://files.pythonhosted.org/packages/f6/b2/fb3032fc096ce256ba288ec5f86f1f8bc93c991ef65616cb6e617a6ee811/metatomic_torch-0.1.3.tar.gz", hash = "sha256:60a4b651cf6e15f175879af74d18215d45cc4fd5e42a61242a180e2014fe9fd2", size = 201252, upload-time = "2025-07-25T12:09:44.556Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/19/2e/414e79469064974448fe32293d0425bcb614bb29620afcfddb62e1971d2f/metatomic_torch-0.1.2-py3-none-macosx_11_0_arm64.whl", hash = "sha256:2bd55959fcf69dd618375a0297659670f7de00439b179930a0a5e46624051246", size = 3069210, upload-time = "2025-06-06T13:29:46.788Z" }, - { url = "https://files.pythonhosted.org/packages/15/5f/20de03ff2f64cbfcfb8ddb0f9057ab75f1ef5db8ba2cdd4a17e9d9cf22ff/metatomic_torch-0.1.2-py3-none-macosx_11_0_x86_64.whl", hash = "sha256:515abc34dee2790578b72d88dd4d7f9640a9c7eb8a006fab4f03f84fe08e0549", size = 904524, upload-time = "2025-06-06T13:29:48.135Z" }, - { url = "https://files.pythonhosted.org/packages/b9/0c/44b023b8484acf2f959cf024c7ae7a3fe5b7f93a30d6188abae0aea8a99a/metatomic_torch-0.1.2-py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:784f19db478baa12166dae30e906659f6d1e74268c0b18e084015773c7c435b8", size = 2854161, upload-time = "2025-06-06T13:29:51.15Z" }, - { url = "https://files.pythonhosted.org/packages/01/cc/7206db185b371a65b0dc0de55604a5e137feb2d44eb26bc7a125d6a58d3e/metatomic_torch-0.1.2-py3-none-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:6f48a53430dc67a42bcfa1349ac27c22b1152d5e634806a031e3338e78868ada", size = 2982411, upload-time = "2025-06-06T13:29:49.706Z" }, - { url = "https://files.pythonhosted.org/packages/b3/af/346f3acc49a5e7537a3760eb158ac920673d06fed2713739d619d84b5f0e/metatomic_torch-0.1.2-py3-none-win_amd64.whl", hash = "sha256:47bd68c6830761bf68a8552aa04da7ebe888cc9d3466359997c0b8e2c5133e55", size = 2247942, upload-time = "2025-06-06T13:29:53.002Z" }, + { url = "https://files.pythonhosted.org/packages/58/ed/d4c7760545517037bf0d7f3b22bb427dbab9b89a4195233edb33ced0bc52/metatomic_torch-0.1.3-py3-none-macosx_11_0_arm64.whl", hash = "sha256:babe20634db495ec0e73268181fa11a1de2aa2f28e82c5c892ede101c6364c60", size = 3068884, upload-time = "2025-07-25T12:09:35.599Z" }, + { url = "https://files.pythonhosted.org/packages/c0/d0/b6354dd8f30c7ef601fab9c73caadb750187fcbabc0de15fb2bb3b5ffb1f/metatomic_torch-0.1.3-py3-none-macosx_11_0_x86_64.whl", hash = "sha256:26a021735ebf7e0eeb44b7f41ea42c4034cfeadd5a86919e32560421552e5bca", size = 904680, upload-time = "2025-07-25T12:09:37.384Z" }, + { url = "https://files.pythonhosted.org/packages/ee/ec/8e04d54f8dd78a114197f6a948f5afa92ad2e23847d8205b8649c6972715/metatomic_torch-0.1.3-py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:7f7054016b59598cb434a2c56c907342bf8fdb457c3cb6032cbc4d383041ca3c", size = 2854399, upload-time = "2025-07-25T12:09:39.143Z" }, + { url = "https://files.pythonhosted.org/packages/63/30/77254cb93e0dea39530d12d12b05b70bd4d682012c1e19982165de45e058/metatomic_torch-0.1.3-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:3e70cc3ece849510b10de2b052efb33a90682a08c8b163e4e0b810c97e15bc7f", size = 2982672, upload-time = "2025-07-25T12:09:40.523Z" }, + { url = "https://files.pythonhosted.org/packages/7f/2d/ef81612a0bb5e8ec9761222dbf0f0a67c77b9c997791056ae0b0ee06271a/metatomic_torch-0.1.3-py3-none-win_amd64.whl", hash = "sha256:3d70faa6737722731a6045fc78b7a27d6eab4f223243fb0604c15403f003fcc8", size = 2259106, upload-time = "2025-07-25T12:09:43.278Z" }, ] [[package]] name = "metatrain" -version = "2025.7" +version = "2025.10" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "ase" }, + { name = "huggingface-hub" }, { name = "jsonschema" }, { name = "metatensor-learn" }, { name = "metatensor-operations" }, @@ -6007,38 +5227,37 @@ dependencies = [ { name = "metatomic-torch" }, { name = "omegaconf" }, { name = "python-hostlist" }, + { name = "tqdm" }, { name = "vesin" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/74/d6/0ad416ff45b51ad63ae2d57d3c87e5b0191aff27b0527d8dad0e474b1def/metatrain-2025.7.tar.gz", hash = "sha256:3247d4f02d1af1cbdeefe600f2aee657afe88343f1d294e70b96bfcec7c222f5", size = 260859, upload-time = "2025-05-27T16:37:40.696Z" } +sdist = { url = "https://files.pythonhosted.org/packages/ca/d7/f5eaf0075fc98b98fe6626c51f7762bc97714968ad1f0a3ae6fd324be0c8/metatrain-2025.10.tar.gz", hash = "sha256:70ca3d422dbaf8eca14f05f81299497faf52134bcf478b29484e891ba0881549", size = 735817, upload-time = "2025-09-09T14:53:01.077Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/e6/57/19471ea529dd2b9abd5fe01e0edac63a5b8c66cc05ff98c15780dcd1fa39/metatrain-2025.7-py3-none-any.whl", hash = "sha256:f82d48dc9c940b82b31401bececb625952525cb7806cc432b57cf6a25cb9d304", size = 314505, upload-time = "2025-05-27T16:37:38.713Z" }, + { url = "https://files.pythonhosted.org/packages/b1/bc/7c34d72ad193e6bf60e8db4b86ad5a309d29dc8729c14ad3b16b3b509442/metatrain-2025.10-py3-none-any.whl", hash = "sha256:fe98c4b342794663fe3d0a5ea81ee5155d6686cd71a87d7bf0426978acdacc64", size = 799387, upload-time = "2025-09-09T14:52:59.216Z" }, ] [[package]] name = "mistune" -version = "3.1.3" +version = "3.1.4" source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "typing-extensions", marker = "python_full_version < '3.11' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/c4/79/bda47f7dd7c3c55770478d6d02c9960c430b0cf1773b72366ff89126ea31/mistune-3.1.3.tar.gz", hash = "sha256:a7035c21782b2becb6be62f8f25d3df81ccb4d6fa477a6525b15af06539f02a0", size = 94347, upload-time = "2025-03-19T14:27:24.955Z" } +sdist = { url = "https://files.pythonhosted.org/packages/d7/02/a7fb8b21d4d55ac93cdcde9d3638da5dd0ebdd3a4fed76c7725e10b81cbe/mistune-3.1.4.tar.gz", hash = "sha256:b5a7f801d389f724ec702840c11d8fc48f2b33519102fc7ee739e8177b672164", size = 94588, upload-time = "2025-08-29T07:20:43.594Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/01/4d/23c4e4f09da849e127e9f123241946c23c1e30f45a88366879e064211815/mistune-3.1.3-py3-none-any.whl", hash = "sha256:1a32314113cff28aa6432e99e522677c8587fd83e3d51c29b82a52409c842bd9", size = 53410, upload-time = "2025-03-19T14:27:23.451Z" }, + { url = "https://files.pythonhosted.org/packages/7a/f0/8282d9641415e9e33df173516226b404d367a0fc55e1a60424a152913abc/mistune-3.1.4-py3-none-any.whl", hash = "sha256:93691da911e5d9d2e23bc54472892aff676df27a75274962ff9edc210364266d", size = 53481, upload-time = "2025-08-29T07:20:42.218Z" }, ] [[package]] name = "ml-dtypes" version = "0.3.2" source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version >= '3.13' and sys_platform == 'linux'", + "python_full_version == '3.12.*' and sys_platform == 'linux'", + "python_full_version < '3.12' and sys_platform == 'linux'", +] dependencies = [ - { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" } }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/39/7d/8d85fcba868758b3a546e6914e727abd8f29ea6918079f816975c9eecd63/ml_dtypes-0.3.2.tar.gz", hash = "sha256:533059bc5f1764fac071ef54598db358c167c51a718f68f5bb55e3dee79d2967", size = 692014, upload-time = "2024-01-03T19:21:23.615Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/62/0a/2b586fd10be7b8311068f4078623a73376fc49c8b3768be9965034062982/ml_dtypes-0.3.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7afde548890a92b41c0fed3a6c525f1200a5727205f73dc21181a2726571bb53", size = 389797, upload-time = "2024-01-03T19:20:54.888Z" }, - { url = "https://files.pythonhosted.org/packages/bc/6d/de99642d98feb7e83ccfbc5eb2b5970ff19ec6834094b690205bebe1c22d/ml_dtypes-0.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d1a746fe5fb9cd974a91070174258f0be129c592b93f9ce7df6cc336416c3fbd", size = 2182877, upload-time = "2024-01-03T19:20:57.391Z" }, - { url = "https://files.pythonhosted.org/packages/71/01/7dc0e2cdead686a758810d08fd4111602088fe3f0d88064a83cbfb635593/ml_dtypes-0.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:961134ea44c7b8ca63eda902a44b58cd8bd670e21d62e255c81fba0a8e70d9b7", size = 2160459, upload-time = "2024-01-03T19:20:58.9Z" }, - { url = "https://files.pythonhosted.org/packages/30/a5/0480b23b2213c746cd874894bc485eb49310d7045159a36c7c03cab729ce/ml_dtypes-0.3.2-cp310-cp310-win_amd64.whl", hash = "sha256:6b35c4e8ca957c877ac35c79ffa77724ecc3702a1e4b18b08306c03feae597bb", size = 127768, upload-time = "2024-01-03T19:21:00.979Z" }, { url = "https://files.pythonhosted.org/packages/6e/a4/6aabb78f1569550fd77c74d2c1d008b502c8ce72776bd88b14ea6c182c9e/ml_dtypes-0.3.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:763697ab8a88d47443997a7cdf3aac7340049aed45f7521f6b0ec8a0594821fe", size = 389791, upload-time = "2024-01-03T19:21:02.844Z" }, { url = "https://files.pythonhosted.org/packages/d1/ed/211bf2e1c66e4ec9b712c3be848a876185c7f0d5e94bf647b60e64ef32eb/ml_dtypes-0.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b89b194e9501a92d289c1ffd411380baf5daafb9818109a4f49b0a1b6dce4462", size = 2185796, upload-time = "2024-01-03T19:21:04.291Z" }, { url = "https://files.pythonhosted.org/packages/77/a0/d4ee9e3aca5b9101c590b58555820618e8201c2ccb7004eabb417ec046ac/ml_dtypes-0.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2c34f2ba9660b21fe1034b608308a01be82bbef2a92fb8199f24dc6bad0d5226", size = 2164071, upload-time = "2024-01-03T19:21:05.78Z" }, @@ -6049,12 +5268,65 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/47/f3/847da54c3d243ff2aa778078ecf09da199194d282744718ef325dd8afd41/ml_dtypes-0.3.2-cp312-cp312-win_amd64.whl", hash = "sha256:f47619d978ab1ae7dfdc4052ea97c636c6263e1f19bd1be0e42c346b98d15ff4", size = 128649, upload-time = "2024-01-03T19:21:14.312Z" }, ] +[[package]] +name = "ml-dtypes" +version = "0.5.4" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version >= '3.13' and sys_platform == 'win32'", + "python_full_version == '3.12.*' and sys_platform == 'win32'", + "python_full_version < '3.12' and sys_platform == 'win32'", + "python_full_version >= '3.13' and sys_platform == 'darwin'", + "python_full_version == '3.12.*' and sys_platform == 'darwin'", + "python_full_version < '3.12' and sys_platform == 'darwin'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32'", +] +dependencies = [ + { name = "numpy", version = "2.1.3", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform != 'linux' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/0e/4a/c27b42ed9b1c7d13d9ba8b6905dece787d6259152f2309338aed29b2447b/ml_dtypes-0.5.4.tar.gz", hash = "sha256:8ab06a50fb9bf9666dd0fe5dfb4676fa2b0ac0f31ecff72a6c3af8e22c063453", size = 692314, upload-time = "2025-11-17T22:32:31.031Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c6/5e/712092cfe7e5eb667b8ad9ca7c54442f21ed7ca8979745f1000e24cf8737/ml_dtypes-0.5.4-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:6c7ecb74c4bd71db68a6bea1edf8da8c34f3d9fe218f038814fd1d310ac76c90", size = 679734, upload-time = "2025-11-17T22:31:39.223Z" }, + { url = "https://files.pythonhosted.org/packages/4f/cf/912146dfd4b5c0eea956836c01dcd2fce6c9c844b2691f5152aca196ce4f/ml_dtypes-0.5.4-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:bc11d7e8c44a65115d05e2ab9989d1e045125d7be8e05a071a48bc76eb6d6040", size = 5056165, upload-time = "2025-11-17T22:31:41.071Z" }, + { url = "https://files.pythonhosted.org/packages/a9/80/19189ea605017473660e43762dc853d2797984b3c7bf30ce656099add30c/ml_dtypes-0.5.4-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:19b9a53598f21e453ea2fbda8aa783c20faff8e1eeb0d7ab899309a0053f1483", size = 5034975, upload-time = "2025-11-17T22:31:42.758Z" }, + { url = "https://files.pythonhosted.org/packages/b4/24/70bd59276883fdd91600ca20040b41efd4902a923283c4d6edcb1de128d2/ml_dtypes-0.5.4-cp311-cp311-win_amd64.whl", hash = "sha256:7c23c54a00ae43edf48d44066a7ec31e05fdc2eee0be2b8b50dd1903a1db94bb", size = 210742, upload-time = "2025-11-17T22:31:44.068Z" }, + { url = "https://files.pythonhosted.org/packages/a0/c9/64230ef14e40aa3f1cb254ef623bf812735e6bec7772848d19131111ac0d/ml_dtypes-0.5.4-cp311-cp311-win_arm64.whl", hash = "sha256:557a31a390b7e9439056644cb80ed0735a6e3e3bb09d67fd5687e4b04238d1de", size = 160709, upload-time = "2025-11-17T22:31:46.557Z" }, + { url = "https://files.pythonhosted.org/packages/a8/b8/3c70881695e056f8a32f8b941126cf78775d9a4d7feba8abcb52cb7b04f2/ml_dtypes-0.5.4-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:a174837a64f5b16cab6f368171a1a03a27936b31699d167684073ff1c4237dac", size = 676927, upload-time = "2025-11-17T22:31:48.182Z" }, + { url = "https://files.pythonhosted.org/packages/54/0f/428ef6881782e5ebb7eca459689448c0394fa0a80bea3aa9262cba5445ea/ml_dtypes-0.5.4-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:a7f7c643e8b1320fd958bf098aa7ecf70623a42ec5154e3be3be673f4c34d900", size = 5028464, upload-time = "2025-11-17T22:31:50.135Z" }, + { url = "https://files.pythonhosted.org/packages/3a/cb/28ce52eb94390dda42599c98ea0204d74799e4d8047a0eb559b6fd648056/ml_dtypes-0.5.4-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9ad459e99793fa6e13bd5b7e6792c8f9190b4e5a1b45c63aba14a4d0a7f1d5ff", size = 5009002, upload-time = "2025-11-17T22:31:52.001Z" }, + { url = "https://files.pythonhosted.org/packages/f5/f0/0cfadd537c5470378b1b32bd859cf2824972174b51b873c9d95cfd7475a5/ml_dtypes-0.5.4-cp312-cp312-win_amd64.whl", hash = "sha256:c1a953995cccb9e25a4ae19e34316671e4e2edaebe4cf538229b1fc7109087b7", size = 212222, upload-time = "2025-11-17T22:31:53.742Z" }, + { url = "https://files.pythonhosted.org/packages/16/2e/9acc86985bfad8f2c2d30291b27cd2bb4c74cea08695bd540906ed744249/ml_dtypes-0.5.4-cp312-cp312-win_arm64.whl", hash = "sha256:9bad06436568442575beb2d03389aa7456c690a5b05892c471215bfd8cf39460", size = 160793, upload-time = "2025-11-17T22:31:55.358Z" }, + { url = "https://files.pythonhosted.org/packages/d9/a1/4008f14bbc616cfb1ac5b39ea485f9c63031c4634ab3f4cf72e7541f816a/ml_dtypes-0.5.4-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:8c760d85a2f82e2bed75867079188c9d18dae2ee77c25a54d60e9cc79be1bc48", size = 676888, upload-time = "2025-11-17T22:31:56.907Z" }, + { url = "https://files.pythonhosted.org/packages/d3/b7/dff378afc2b0d5a7d6cd9d3209b60474d9819d1189d347521e1688a60a53/ml_dtypes-0.5.4-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ce756d3a10d0c4067172804c9cc276ba9cc0ff47af9078ad439b075d1abdc29b", size = 5036993, upload-time = "2025-11-17T22:31:58.497Z" }, + { url = "https://files.pythonhosted.org/packages/eb/33/40cd74219417e78b97c47802037cf2d87b91973e18bb968a7da48a96ea44/ml_dtypes-0.5.4-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:533ce891ba774eabf607172254f2e7260ba5f57bdd64030c9a4fcfbd99815d0d", size = 5010956, upload-time = "2025-11-17T22:31:59.931Z" }, + { url = "https://files.pythonhosted.org/packages/e1/8b/200088c6859d8221454825959df35b5244fa9bdf263fd0249ac5fb75e281/ml_dtypes-0.5.4-cp313-cp313-win_amd64.whl", hash = "sha256:f21c9219ef48ca5ee78402d5cc831bd58ea27ce89beda894428bc67a52da5328", size = 212224, upload-time = "2025-11-17T22:32:01.349Z" }, + { url = "https://files.pythonhosted.org/packages/8f/75/dfc3775cb36367816e678f69a7843f6f03bd4e2bcd79941e01ea960a068e/ml_dtypes-0.5.4-cp313-cp313-win_arm64.whl", hash = "sha256:35f29491a3e478407f7047b8a4834e4640a77d2737e0b294d049746507af5175", size = 160798, upload-time = "2025-11-17T22:32:02.864Z" }, + { url = "https://files.pythonhosted.org/packages/4f/74/e9ddb35fd1dd43b1106c20ced3f53c2e8e7fc7598c15638e9f80677f81d4/ml_dtypes-0.5.4-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:304ad47faa395415b9ccbcc06a0350800bc50eda70f0e45326796e27c62f18b6", size = 702083, upload-time = "2025-11-17T22:32:04.08Z" }, + { url = "https://files.pythonhosted.org/packages/74/f5/667060b0aed1aa63166b22897fdf16dca9eb704e6b4bbf86848d5a181aa7/ml_dtypes-0.5.4-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6a0df4223b514d799b8a1629c65ddc351b3efa833ccf7f8ea0cf654a61d1e35d", size = 5354111, upload-time = "2025-11-17T22:32:05.546Z" }, + { url = "https://files.pythonhosted.org/packages/40/49/0f8c498a28c0efa5f5c95a9e374c83ec1385ca41d0e85e7cf40e5d519a21/ml_dtypes-0.5.4-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:531eff30e4d368cb6255bc2328d070e35836aa4f282a0fb5f3a0cd7260257298", size = 5366453, upload-time = "2025-11-17T22:32:07.115Z" }, + { url = "https://files.pythonhosted.org/packages/8c/27/12607423d0a9c6bbbcc780ad19f1f6baa2b68b18ce4bddcdc122c4c68dc9/ml_dtypes-0.5.4-cp313-cp313t-win_amd64.whl", hash = "sha256:cb73dccfc991691c444acc8c0012bee8f2470da826a92e3a20bb333b1a7894e6", size = 225612, upload-time = "2025-11-17T22:32:08.615Z" }, + { url = "https://files.pythonhosted.org/packages/e5/80/5a5929e92c72936d5b19872c5fb8fc09327c1da67b3b68c6a13139e77e20/ml_dtypes-0.5.4-cp313-cp313t-win_arm64.whl", hash = "sha256:3bbbe120b915090d9dd1375e4684dd17a20a2491ef25d640a908281da85e73f1", size = 164145, upload-time = "2025-11-17T22:32:09.782Z" }, + { url = "https://files.pythonhosted.org/packages/72/4e/1339dc6e2557a344f5ba5590872e80346f76f6cb2ac3dd16e4666e88818c/ml_dtypes-0.5.4-cp314-cp314-macosx_10_13_universal2.whl", hash = "sha256:2b857d3af6ac0d39db1de7c706e69c7f9791627209c3d6dedbfca8c7e5faec22", size = 673781, upload-time = "2025-11-17T22:32:11.364Z" }, + { url = "https://files.pythonhosted.org/packages/04/f9/067b84365c7e83bda15bba2b06c6ca250ce27b20630b1128c435fb7a09aa/ml_dtypes-0.5.4-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:805cef3a38f4eafae3a5bf9ebdcdb741d0bcfd9e1bd90eb54abd24f928cd2465", size = 5036145, upload-time = "2025-11-17T22:32:12.783Z" }, + { url = "https://files.pythonhosted.org/packages/c6/bb/82c7dcf38070b46172a517e2334e665c5bf374a262f99a283ea454bece7c/ml_dtypes-0.5.4-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:14a4fd3228af936461db66faccef6e4f41c1d82fcc30e9f8d58a08916b1d811f", size = 5010230, upload-time = "2025-11-17T22:32:14.38Z" }, + { url = "https://files.pythonhosted.org/packages/e9/93/2bfed22d2498c468f6bcd0d9f56b033eaa19f33320389314c19ef6766413/ml_dtypes-0.5.4-cp314-cp314-win_amd64.whl", hash = "sha256:8c6a2dcebd6f3903e05d51960a8058d6e131fe69f952a5397e5dbabc841b6d56", size = 221032, upload-time = "2025-11-17T22:32:15.763Z" }, + { url = "https://files.pythonhosted.org/packages/76/a3/9c912fe6ea747bb10fe2f8f54d027eb265db05dfb0c6335e3e063e74e6e8/ml_dtypes-0.5.4-cp314-cp314-win_arm64.whl", hash = "sha256:5a0f68ca8fd8d16583dfa7793973feb86f2fbb56ce3966daf9c9f748f52a2049", size = 163353, upload-time = "2025-11-17T22:32:16.932Z" }, + { url = "https://files.pythonhosted.org/packages/cd/02/48aa7d84cc30ab4ee37624a2fd98c56c02326785750cd212bc0826c2f15b/ml_dtypes-0.5.4-cp314-cp314t-macosx_10_13_universal2.whl", hash = "sha256:bfc534409c5d4b0bf945af29e5d0ab075eae9eecbb549ff8a29280db822f34f9", size = 702085, upload-time = "2025-11-17T22:32:18.175Z" }, + { url = "https://files.pythonhosted.org/packages/5a/e7/85cb99fe80a7a5513253ec7faa88a65306be071163485e9a626fce1b6e84/ml_dtypes-0.5.4-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:2314892cdc3fcf05e373d76d72aaa15fda9fb98625effa73c1d646f331fcecb7", size = 5355358, upload-time = "2025-11-17T22:32:19.7Z" }, + { url = "https://files.pythonhosted.org/packages/79/2b/a826ba18d2179a56e144aef69e57fb2ab7c464ef0b2111940ee8a3a223a2/ml_dtypes-0.5.4-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:0d2ffd05a2575b1519dc928c0b93c06339eb67173ff53acb00724502cda231cf", size = 5366332, upload-time = "2025-11-17T22:32:21.193Z" }, + { url = "https://files.pythonhosted.org/packages/84/44/f4d18446eacb20ea11e82f133ea8f86e2bf2891785b67d9da8d0ab0ef525/ml_dtypes-0.5.4-cp314-cp314t-win_amd64.whl", hash = "sha256:4381fe2f2452a2d7589689693d3162e876b3ddb0a832cde7a414f8e1adf7eab1", size = 236612, upload-time = "2025-11-17T22:32:22.579Z" }, + { url = "https://files.pythonhosted.org/packages/ad/3f/3d42e9a78fe5edf792a83c074b13b9b770092a4fbf3462872f4303135f09/ml_dtypes-0.5.4-cp314-cp314t-win_arm64.whl", hash = "sha256:11942cbf2cf92157db91e5022633c0d9474d4dfd813a909383bd23ce828a4b7d", size = 168825, upload-time = "2025-11-17T22:32:23.766Z" }, +] + [[package]] name = "mlipx" version = "0.1.6" source = { editable = "." } dependencies = [ { name = "ase" }, + { name = "aserpc" }, { name = "dvc-s3" }, { name = "lazy-loader" }, { name = "mp-api" }, @@ -6079,7 +5351,8 @@ fairchem = [ { name = "fairchem-core" }, ] grace = [ - { name = "tensorpotential" }, + { name = "tensorpotential", version = "0.5.1", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'extra-5-mlipx-grace') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "tensorpotential", version = "0.5.5", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'linux' and extra == 'extra-5-mlipx-grace') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, ] mace = [ { name = "mace-torch" }, @@ -6089,7 +5362,8 @@ matpes = [ { name = "matpes" }, ] mattersim = [ - { name = "mattersim" }, + { name = "mattersim", version = "1.1.2", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb')" }, + { name = "mattersim", version = "1.2.0", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'linux' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb')" }, ] orb = [ { name = "orb-models" }, @@ -6126,6 +5400,7 @@ docs = [ [package.metadata] requires-dist = [ { name = "ase", specifier = ">=3.24.0" }, + { name = "aserpc", specifier = ">=0.1.1" }, { name = "chgnet", marker = "extra == 'chgnet'", specifier = ">=0.4.0" }, { name = "dvc-s3", specifier = ">=3.2.0" }, { name = "fairchem-core", marker = "extra == 'fairchem'", specifier = ">=2.1.0" }, @@ -6201,8 +5476,8 @@ name = "monty" version = "2025.3.3" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-5-mlipx-grace' or extra == 'extra-5-mlipx-matpes' or extra == 'extra-5-mlipx-mattersim' or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-5-mlipx-fairchem' or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'extra-5-mlipx-grace') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "numpy", version = "2.1.3", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform != 'linux' or extra == 'extra-5-mlipx-fairchem' or extra != 'extra-5-mlipx-grace' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, { name = "ruamel-yaml" }, ] sdist = { url = "https://files.pythonhosted.org/packages/89/54/a1b2b4c9b16ebc5ea72cf22b1a6bb7ceaa79187fbf22a404c9677c8f90dd/monty-2025.3.3.tar.gz", hash = "sha256:16c1eb54b2372e765c2f3f14cff01cc76ab55c3cc12b27d49962fb8072310ae0", size = 85592, upload-time = "2025-03-03T21:12:44.541Z" } @@ -6212,40 +5487,38 @@ wheels = [ [[package]] name = "mp-api" -version = "0.45.5" +version = "0.45.13" source = { registry = "https://pypi.org/simple" } dependencies = [ + { name = "boto3" }, { name = "emmet-core" }, - { name = "maggma" }, { name = "monty" }, { name = "msgpack" }, + { name = "orjson" }, { name = "pymatgen" }, { name = "requests" }, - { name = "setuptools" }, { name = "smart-open" }, { name = "typing-extensions" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/a9/ce/b5615931e4f00ce121113b189d80c69f4123ac0a9fe933822146a9c00871/mp_api-0.45.5.tar.gz", hash = "sha256:be0a08544c98c9a21f65cfbdc06338d76afa85887b66c4fcfc87ad87650aad40", size = 706327, upload-time = "2025-04-30T00:01:09.251Z" } +sdist = { url = "https://files.pythonhosted.org/packages/5a/3f/3b6862d081c36f8cdeceb16d37ed1e6e83bec6d281c5f6c7d4f54fc9cd0e/mp_api-0.45.13.tar.gz", hash = "sha256:716c944e72a7e01739b79e2bc4c28c9aff88990be5d524b683c588a4c2546236", size = 715391, upload-time = "2025-11-06T20:07:37.224Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/06/98/84366fd4b5cf9f7ce06d7f0639c451b0b80902b93a0d3b626869e45f5667/mp_api-0.45.5-py3-none-any.whl", hash = "sha256:b4ef498ae5740cd617d8da0e7d5ce61b7e1395c880170f2b9a3cf5b91edec15c", size = 99433, upload-time = "2025-04-30T00:01:07.549Z" }, + { url = "https://files.pythonhosted.org/packages/c6/3d/b2b8978191eb8942f5020a0badd9bdd6de1a0111ba33bd798f65145af8f6/mp_api-0.45.13-py3-none-any.whl", hash = "sha256:e5e3cf7c2a63a94aaec28764982e3c8136e33b294c99aad2c0f8dad93759a0b5", size = 107068, upload-time = "2025-11-06T20:07:35.351Z" }, ] [[package]] name = "mpcontribs-client" -version = "5.10.2" +version = "5.10.4" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "boltons" }, { name = "bravado" }, - { name = "cachetools", version = "5.5.2", source = { registry = "https://pypi.org/simple" }, marker = "(extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "cachetools", version = "6.0.0", source = { registry = "https://pypi.org/simple" }, marker = "(extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb')" }, + { name = "cachetools" }, { name = "filetype" }, { name = "flatten-dict" }, - { name = "ipython", version = "8.37.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, - { name = "ipython", version = "9.3.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "ipython" }, { name = "json2html" }, - { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-5-mlipx-grace' or extra == 'extra-5-mlipx-matpes' or extra == 'extra-5-mlipx-mattersim' or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-5-mlipx-fairchem' or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'extra-5-mlipx-grace') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "numpy", version = "2.1.3", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform != 'linux' or extra == 'extra-5-mlipx-fairchem' or extra != 'extra-5-mlipx-grace' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, { name = "pandas" }, { name = "pint" }, { name = "plotly" }, @@ -6258,9 +5531,9 @@ dependencies = [ { name = "tqdm" }, { name = "ujson" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/db/e4/ab7a14b305739cb5b5096a2964ebdbb23ef7aa25b3be56c9db8c3f8e3166/mpcontribs_client-5.10.2.tar.gz", hash = "sha256:989f5c1ed8d88d94fd451b49f1beb29457a375f4f2b431a3261f674f410e8111", size = 29865, upload-time = "2025-02-28T23:06:43.032Z" } +sdist = { url = "https://files.pythonhosted.org/packages/55/e1/ca5f41c0784483b4ab1839aeeca194ed08e999c3deac84fc6c9d597b90a4/mpcontribs_client-5.10.4.tar.gz", hash = "sha256:0fa190e837d80f3ce46d3657ca5b5d400f239995650a3564caae04bac5302445", size = 29913, upload-time = "2025-09-05T01:09:35.744Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/d5/68/10ea55da01368c615a72ae23f9de220e6c2561898feae7e5fbfa63f6b690/mpcontribs_client-5.10.2-py3-none-any.whl", hash = "sha256:3ab5e8ec7a683ee9088c7a7126dc0b22e76d49efe46668873478d023cb9554d3", size = 25428, upload-time = "2025-02-28T23:06:41.014Z" }, + { url = "https://files.pythonhosted.org/packages/29/99/b07c3e18d4560ffe0d611372d7ad5d2ab686c95bb8a36e4a5f1628042387/mpcontribs_client-5.10.4-py3-none-any.whl", hash = "sha256:2c4fbc0a3ce58b7544024783ce0521ee78acba30f5bab7036084d8b6f8832488", size = 25429, upload-time = "2025-09-05T01:09:34.52Z" }, ] [[package]] @@ -6274,16 +5547,16 @@ wheels = [ [[package]] name = "msal" -version = "1.32.3" +version = "1.34.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "cryptography" }, { name = "pyjwt", extra = ["crypto"], marker = "extra == 'extra-5-mlipx-mattersim' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, { name = "requests" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/3f/90/81dcc50f0be11a8c4dcbae1a9f761a26e5f905231330a7cacc9f04ec4c61/msal-1.32.3.tar.gz", hash = "sha256:5eea038689c78a5a70ca8ecbe1245458b55a857bd096efb6989c69ba15985d35", size = 151449, upload-time = "2025-04-25T13:12:34.204Z" } +sdist = { url = "https://files.pythonhosted.org/packages/cf/0e/c857c46d653e104019a84f22d4494f2119b4fe9f896c92b4b864b3b045cc/msal-1.34.0.tar.gz", hash = "sha256:76ba83b716ea5a6d75b0279c0ac353a0e05b820ca1f6682c0eb7f45190c43c2f", size = 153961, upload-time = "2025-09-22T23:05:48.989Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/04/bf/81516b9aac7fd867709984d08eb4db1d2e3fe1df795c8e442cde9b568962/msal-1.32.3-py3-none-any.whl", hash = "sha256:b2798db57760b1961b142f027ffb7c8169536bf77316e99a0df5c4aaebb11569", size = 115358, upload-time = "2025-04-25T13:12:33.034Z" }, + { url = "https://files.pythonhosted.org/packages/c2/dc/18d48843499e278538890dc709e9ee3dea8375f8be8e82682851df1b48b5/msal-1.34.0-py3-none-any.whl", hash = "sha256:f669b1644e4950115da7a176441b0e13ec2975c29528d8b9e81316023676d6e1", size = 116987, upload-time = "2025-09-22T23:05:47.294Z" }, ] [[package]] @@ -6300,151 +5573,220 @@ wheels = [ [[package]] name = "msgpack" -version = "1.1.0" +version = "1.1.2" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/cb/d0/7555686ae7ff5731205df1012ede15dd9d927f6227ea151e901c7406af4f/msgpack-1.1.0.tar.gz", hash = "sha256:dd432ccc2c72b914e4cb77afce64aab761c1137cc698be3984eee260bcb2896e", size = 167260, upload-time = "2024-09-10T04:25:52.197Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/4b/f9/a892a6038c861fa849b11a2bb0502c07bc698ab6ea53359e5771397d883b/msgpack-1.1.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7ad442d527a7e358a469faf43fda45aaf4ac3249c8310a82f0ccff9164e5dccd", size = 150428, upload-time = "2024-09-10T04:25:43.089Z" }, - { url = "https://files.pythonhosted.org/packages/df/7a/d174cc6a3b6bb85556e6a046d3193294a92f9a8e583cdbd46dc8a1d7e7f4/msgpack-1.1.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:74bed8f63f8f14d75eec75cf3d04ad581da6b914001b474a5d3cd3372c8cc27d", size = 84131, upload-time = "2024-09-10T04:25:30.22Z" }, - { url = "https://files.pythonhosted.org/packages/08/52/bf4fbf72f897a23a56b822997a72c16de07d8d56d7bf273242f884055682/msgpack-1.1.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:914571a2a5b4e7606997e169f64ce53a8b1e06f2cf2c3a7273aa106236d43dd5", size = 81215, upload-time = "2024-09-10T04:24:54.329Z" }, - { url = "https://files.pythonhosted.org/packages/02/95/dc0044b439b518236aaf012da4677c1b8183ce388411ad1b1e63c32d8979/msgpack-1.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c921af52214dcbb75e6bdf6a661b23c3e6417f00c603dd2070bccb5c3ef499f5", size = 371229, upload-time = "2024-09-10T04:25:50.907Z" }, - { url = "https://files.pythonhosted.org/packages/ff/75/09081792db60470bef19d9c2be89f024d366b1e1973c197bb59e6aabc647/msgpack-1.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d8ce0b22b890be5d252de90d0e0d119f363012027cf256185fc3d474c44b1b9e", size = 378034, upload-time = "2024-09-10T04:25:22.097Z" }, - { url = "https://files.pythonhosted.org/packages/32/d3/c152e0c55fead87dd948d4b29879b0f14feeeec92ef1fd2ec21b107c3f49/msgpack-1.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:73322a6cc57fcee3c0c57c4463d828e9428275fb85a27aa2aa1a92fdc42afd7b", size = 363070, upload-time = "2024-09-10T04:24:43.957Z" }, - { url = "https://files.pythonhosted.org/packages/d9/2c/82e73506dd55f9e43ac8aa007c9dd088c6f0de2aa19e8f7330e6a65879fc/msgpack-1.1.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:e1f3c3d21f7cf67bcf2da8e494d30a75e4cf60041d98b3f79875afb5b96f3a3f", size = 359863, upload-time = "2024-09-10T04:24:51.535Z" }, - { url = "https://files.pythonhosted.org/packages/cb/a0/3d093b248837094220e1edc9ec4337de3443b1cfeeb6e0896af8ccc4cc7a/msgpack-1.1.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:64fc9068d701233effd61b19efb1485587560b66fe57b3e50d29c5d78e7fef68", size = 368166, upload-time = "2024-09-10T04:24:19.907Z" }, - { url = "https://files.pythonhosted.org/packages/e4/13/7646f14f06838b406cf5a6ddbb7e8dc78b4996d891ab3b93c33d1ccc8678/msgpack-1.1.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:42f754515e0f683f9c79210a5d1cad631ec3d06cea5172214d2176a42e67e19b", size = 370105, upload-time = "2024-09-10T04:25:35.141Z" }, - { url = "https://files.pythonhosted.org/packages/67/fa/dbbd2443e4578e165192dabbc6a22c0812cda2649261b1264ff515f19f15/msgpack-1.1.0-cp310-cp310-win32.whl", hash = "sha256:3df7e6b05571b3814361e8464f9304c42d2196808e0119f55d0d3e62cd5ea044", size = 68513, upload-time = "2024-09-10T04:24:36.099Z" }, - { url = "https://files.pythonhosted.org/packages/24/ce/c2c8fbf0ded750cb63cbcbb61bc1f2dfd69e16dca30a8af8ba80ec182dcd/msgpack-1.1.0-cp310-cp310-win_amd64.whl", hash = "sha256:685ec345eefc757a7c8af44a3032734a739f8c45d1b0ac45efc5d8977aa4720f", size = 74687, upload-time = "2024-09-10T04:24:23.394Z" }, - { url = "https://files.pythonhosted.org/packages/b7/5e/a4c7154ba65d93be91f2f1e55f90e76c5f91ccadc7efc4341e6f04c8647f/msgpack-1.1.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:3d364a55082fb2a7416f6c63ae383fbd903adb5a6cf78c5b96cc6316dc1cedc7", size = 150803, upload-time = "2024-09-10T04:24:40.911Z" }, - { url = "https://files.pythonhosted.org/packages/60/c2/687684164698f1d51c41778c838d854965dd284a4b9d3a44beba9265c931/msgpack-1.1.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:79ec007767b9b56860e0372085f8504db5d06bd6a327a335449508bbee9648fa", size = 84343, upload-time = "2024-09-10T04:24:50.283Z" }, - { url = "https://files.pythonhosted.org/packages/42/ae/d3adea9bb4a1342763556078b5765e666f8fdf242e00f3f6657380920972/msgpack-1.1.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:6ad622bf7756d5a497d5b6836e7fc3752e2dd6f4c648e24b1803f6048596f701", size = 81408, upload-time = "2024-09-10T04:25:12.774Z" }, - { url = "https://files.pythonhosted.org/packages/dc/17/6313325a6ff40ce9c3207293aee3ba50104aed6c2c1559d20d09e5c1ff54/msgpack-1.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8e59bca908d9ca0de3dc8684f21ebf9a690fe47b6be93236eb40b99af28b6ea6", size = 396096, upload-time = "2024-09-10T04:24:37.245Z" }, - { url = "https://files.pythonhosted.org/packages/a8/a1/ad7b84b91ab5a324e707f4c9761633e357820b011a01e34ce658c1dda7cc/msgpack-1.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5e1da8f11a3dd397f0a32c76165cf0c4eb95b31013a94f6ecc0b280c05c91b59", size = 403671, upload-time = "2024-09-10T04:25:10.201Z" }, - { url = "https://files.pythonhosted.org/packages/bb/0b/fd5b7c0b308bbf1831df0ca04ec76fe2f5bf6319833646b0a4bd5e9dc76d/msgpack-1.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:452aff037287acb1d70a804ffd022b21fa2bb7c46bee884dbc864cc9024128a0", size = 387414, upload-time = "2024-09-10T04:25:27.552Z" }, - { url = "https://files.pythonhosted.org/packages/f0/03/ff8233b7c6e9929a1f5da3c7860eccd847e2523ca2de0d8ef4878d354cfa/msgpack-1.1.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8da4bf6d54ceed70e8861f833f83ce0814a2b72102e890cbdfe4b34764cdd66e", size = 383759, upload-time = "2024-09-10T04:25:03.366Z" }, - { url = "https://files.pythonhosted.org/packages/1f/1b/eb82e1fed5a16dddd9bc75f0854b6e2fe86c0259c4353666d7fab37d39f4/msgpack-1.1.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:41c991beebf175faf352fb940bf2af9ad1fb77fd25f38d9142053914947cdbf6", size = 394405, upload-time = "2024-09-10T04:25:07.348Z" }, - { url = "https://files.pythonhosted.org/packages/90/2e/962c6004e373d54ecf33d695fb1402f99b51832631e37c49273cc564ffc5/msgpack-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a52a1f3a5af7ba1c9ace055b659189f6c669cf3657095b50f9602af3a3ba0fe5", size = 396041, upload-time = "2024-09-10T04:25:48.311Z" }, - { url = "https://files.pythonhosted.org/packages/f8/20/6e03342f629474414860c48aeffcc2f7f50ddaf351d95f20c3f1c67399a8/msgpack-1.1.0-cp311-cp311-win32.whl", hash = "sha256:58638690ebd0a06427c5fe1a227bb6b8b9fdc2bd07701bec13c2335c82131a88", size = 68538, upload-time = "2024-09-10T04:24:29.953Z" }, - { url = "https://files.pythonhosted.org/packages/aa/c4/5a582fc9a87991a3e6f6800e9bb2f3c82972912235eb9539954f3e9997c7/msgpack-1.1.0-cp311-cp311-win_amd64.whl", hash = "sha256:fd2906780f25c8ed5d7b323379f6138524ba793428db5d0e9d226d3fa6aa1788", size = 74871, upload-time = "2024-09-10T04:25:44.823Z" }, - { url = "https://files.pythonhosted.org/packages/e1/d6/716b7ca1dbde63290d2973d22bbef1b5032ca634c3ff4384a958ec3f093a/msgpack-1.1.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:d46cf9e3705ea9485687aa4001a76e44748b609d260af21c4ceea7f2212a501d", size = 152421, upload-time = "2024-09-10T04:25:49.63Z" }, - { url = "https://files.pythonhosted.org/packages/70/da/5312b067f6773429cec2f8f08b021c06af416bba340c912c2ec778539ed6/msgpack-1.1.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:5dbad74103df937e1325cc4bfeaf57713be0b4f15e1c2da43ccdd836393e2ea2", size = 85277, upload-time = "2024-09-10T04:24:48.562Z" }, - { url = "https://files.pythonhosted.org/packages/28/51/da7f3ae4462e8bb98af0d5bdf2707f1b8c65a0d4f496e46b6afb06cbc286/msgpack-1.1.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:58dfc47f8b102da61e8949708b3eafc3504509a5728f8b4ddef84bd9e16ad420", size = 82222, upload-time = "2024-09-10T04:25:36.49Z" }, - { url = "https://files.pythonhosted.org/packages/33/af/dc95c4b2a49cff17ce47611ca9ba218198806cad7796c0b01d1e332c86bb/msgpack-1.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4676e5be1b472909b2ee6356ff425ebedf5142427842aa06b4dfd5117d1ca8a2", size = 392971, upload-time = "2024-09-10T04:24:58.129Z" }, - { url = "https://files.pythonhosted.org/packages/f1/54/65af8de681fa8255402c80eda2a501ba467921d5a7a028c9c22a2c2eedb5/msgpack-1.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:17fb65dd0bec285907f68b15734a993ad3fc94332b5bb21b0435846228de1f39", size = 401403, upload-time = "2024-09-10T04:25:40.428Z" }, - { url = "https://files.pythonhosted.org/packages/97/8c/e333690777bd33919ab7024269dc3c41c76ef5137b211d776fbb404bfead/msgpack-1.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a51abd48c6d8ac89e0cfd4fe177c61481aca2d5e7ba42044fd218cfd8ea9899f", size = 385356, upload-time = "2024-09-10T04:25:31.406Z" }, - { url = "https://files.pythonhosted.org/packages/57/52/406795ba478dc1c890559dd4e89280fa86506608a28ccf3a72fbf45df9f5/msgpack-1.1.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2137773500afa5494a61b1208619e3871f75f27b03bcfca7b3a7023284140247", size = 383028, upload-time = "2024-09-10T04:25:17.08Z" }, - { url = "https://files.pythonhosted.org/packages/e7/69/053b6549bf90a3acadcd8232eae03e2fefc87f066a5b9fbb37e2e608859f/msgpack-1.1.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:398b713459fea610861c8a7b62a6fec1882759f308ae0795b5413ff6a160cf3c", size = 391100, upload-time = "2024-09-10T04:25:08.993Z" }, - { url = "https://files.pythonhosted.org/packages/23/f0/d4101d4da054f04274995ddc4086c2715d9b93111eb9ed49686c0f7ccc8a/msgpack-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:06f5fd2f6bb2a7914922d935d3b8bb4a7fff3a9a91cfce6d06c13bc42bec975b", size = 394254, upload-time = "2024-09-10T04:25:06.048Z" }, - { url = "https://files.pythonhosted.org/packages/1c/12/cf07458f35d0d775ff3a2dc5559fa2e1fcd06c46f1ef510e594ebefdca01/msgpack-1.1.0-cp312-cp312-win32.whl", hash = "sha256:ad33e8400e4ec17ba782f7b9cf868977d867ed784a1f5f2ab46e7ba53b6e1e1b", size = 69085, upload-time = "2024-09-10T04:25:01.494Z" }, - { url = "https://files.pythonhosted.org/packages/73/80/2708a4641f7d553a63bc934a3eb7214806b5b39d200133ca7f7afb0a53e8/msgpack-1.1.0-cp312-cp312-win_amd64.whl", hash = "sha256:115a7af8ee9e8cddc10f87636767857e7e3717b7a2e97379dc2054712693e90f", size = 75347, upload-time = "2024-09-10T04:25:33.106Z" }, - { url = "https://files.pythonhosted.org/packages/c8/b0/380f5f639543a4ac413e969109978feb1f3c66e931068f91ab6ab0f8be00/msgpack-1.1.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:071603e2f0771c45ad9bc65719291c568d4edf120b44eb36324dcb02a13bfddf", size = 151142, upload-time = "2024-09-10T04:24:59.656Z" }, - { url = "https://files.pythonhosted.org/packages/c8/ee/be57e9702400a6cb2606883d55b05784fada898dfc7fd12608ab1fdb054e/msgpack-1.1.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:0f92a83b84e7c0749e3f12821949d79485971f087604178026085f60ce109330", size = 84523, upload-time = "2024-09-10T04:25:37.924Z" }, - { url = "https://files.pythonhosted.org/packages/7e/3a/2919f63acca3c119565449681ad08a2f84b2171ddfcff1dba6959db2cceb/msgpack-1.1.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:4a1964df7b81285d00a84da4e70cb1383f2e665e0f1f2a7027e683956d04b734", size = 81556, upload-time = "2024-09-10T04:24:28.296Z" }, - { url = "https://files.pythonhosted.org/packages/7c/43/a11113d9e5c1498c145a8925768ea2d5fce7cbab15c99cda655aa09947ed/msgpack-1.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:59caf6a4ed0d164055ccff8fe31eddc0ebc07cf7326a2aaa0dbf7a4001cd823e", size = 392105, upload-time = "2024-09-10T04:25:20.153Z" }, - { url = "https://files.pythonhosted.org/packages/2d/7b/2c1d74ca6c94f70a1add74a8393a0138172207dc5de6fc6269483519d048/msgpack-1.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0907e1a7119b337971a689153665764adc34e89175f9a34793307d9def08e6ca", size = 399979, upload-time = "2024-09-10T04:25:41.75Z" }, - { url = "https://files.pythonhosted.org/packages/82/8c/cf64ae518c7b8efc763ca1f1348a96f0e37150061e777a8ea5430b413a74/msgpack-1.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:65553c9b6da8166e819a6aa90ad15288599b340f91d18f60b2061f402b9a4915", size = 383816, upload-time = "2024-09-10T04:24:45.826Z" }, - { url = "https://files.pythonhosted.org/packages/69/86/a847ef7a0f5ef3fa94ae20f52a4cacf596a4e4a010197fbcc27744eb9a83/msgpack-1.1.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:7a946a8992941fea80ed4beae6bff74ffd7ee129a90b4dd5cf9c476a30e9708d", size = 380973, upload-time = "2024-09-10T04:25:04.689Z" }, - { url = "https://files.pythonhosted.org/packages/aa/90/c74cf6e1126faa93185d3b830ee97246ecc4fe12cf9d2d31318ee4246994/msgpack-1.1.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4b51405e36e075193bc051315dbf29168d6141ae2500ba8cd80a522964e31434", size = 387435, upload-time = "2024-09-10T04:24:17.879Z" }, - { url = "https://files.pythonhosted.org/packages/7a/40/631c238f1f338eb09f4acb0f34ab5862c4e9d7eda11c1b685471a4c5ea37/msgpack-1.1.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:b4c01941fd2ff87c2a934ee6055bda4ed353a7846b8d4f341c428109e9fcde8c", size = 399082, upload-time = "2024-09-10T04:25:18.398Z" }, - { url = "https://files.pythonhosted.org/packages/e9/1b/fa8a952be252a1555ed39f97c06778e3aeb9123aa4cccc0fd2acd0b4e315/msgpack-1.1.0-cp313-cp313-win32.whl", hash = "sha256:7c9a35ce2c2573bada929e0b7b3576de647b0defbd25f5139dcdaba0ae35a4cc", size = 69037, upload-time = "2024-09-10T04:24:52.798Z" }, - { url = "https://files.pythonhosted.org/packages/b6/bc/8bd826dd03e022153bfa1766dcdec4976d6c818865ed54223d71f07862b3/msgpack-1.1.0-cp313-cp313-win_amd64.whl", hash = "sha256:bce7d9e614a04d0883af0b3d4d501171fbfca038f12c77fa838d9f198147a23f", size = 75140, upload-time = "2024-09-10T04:24:31.288Z" }, +sdist = { url = "https://files.pythonhosted.org/packages/4d/f2/bfb55a6236ed8725a96b0aa3acbd0ec17588e6a2c3b62a93eb513ed8783f/msgpack-1.1.2.tar.gz", hash = "sha256:3b60763c1373dd60f398488069bcdc703cd08a711477b5d480eecc9f9626f47e", size = 173581, upload-time = "2025-10-08T09:15:56.596Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2c/97/560d11202bcd537abca693fd85d81cebe2107ba17301de42b01ac1677b69/msgpack-1.1.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:2e86a607e558d22985d856948c12a3fa7b42efad264dca8a3ebbcfa2735d786c", size = 82271, upload-time = "2025-10-08T09:14:49.967Z" }, + { url = "https://files.pythonhosted.org/packages/83/04/28a41024ccbd67467380b6fb440ae916c1e4f25e2cd4c63abe6835ac566e/msgpack-1.1.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:283ae72fc89da59aa004ba147e8fc2f766647b1251500182fac0350d8af299c0", size = 84914, upload-time = "2025-10-08T09:14:50.958Z" }, + { url = "https://files.pythonhosted.org/packages/71/46/b817349db6886d79e57a966346cf0902a426375aadc1e8e7a86a75e22f19/msgpack-1.1.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:61c8aa3bd513d87c72ed0b37b53dd5c5a0f58f2ff9f26e1555d3bd7948fb7296", size = 416962, upload-time = "2025-10-08T09:14:51.997Z" }, + { url = "https://files.pythonhosted.org/packages/da/e0/6cc2e852837cd6086fe7d8406af4294e66827a60a4cf60b86575a4a65ca8/msgpack-1.1.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:454e29e186285d2ebe65be34629fa0e8605202c60fbc7c4c650ccd41870896ef", size = 426183, upload-time = "2025-10-08T09:14:53.477Z" }, + { url = "https://files.pythonhosted.org/packages/25/98/6a19f030b3d2ea906696cedd1eb251708e50a5891d0978b012cb6107234c/msgpack-1.1.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:7bc8813f88417599564fafa59fd6f95be417179f76b40325b500b3c98409757c", size = 411454, upload-time = "2025-10-08T09:14:54.648Z" }, + { url = "https://files.pythonhosted.org/packages/b7/cd/9098fcb6adb32187a70b7ecaabf6339da50553351558f37600e53a4a2a23/msgpack-1.1.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:bafca952dc13907bdfdedfc6a5f579bf4f292bdd506fadb38389afa3ac5b208e", size = 422341, upload-time = "2025-10-08T09:14:56.328Z" }, + { url = "https://files.pythonhosted.org/packages/e6/ae/270cecbcf36c1dc85ec086b33a51a4d7d08fc4f404bdbc15b582255d05ff/msgpack-1.1.2-cp311-cp311-win32.whl", hash = "sha256:602b6740e95ffc55bfb078172d279de3773d7b7db1f703b2f1323566b878b90e", size = 64747, upload-time = "2025-10-08T09:14:57.882Z" }, + { url = "https://files.pythonhosted.org/packages/2a/79/309d0e637f6f37e83c711f547308b91af02b72d2326ddd860b966080ef29/msgpack-1.1.2-cp311-cp311-win_amd64.whl", hash = "sha256:d198d275222dc54244bf3327eb8cbe00307d220241d9cec4d306d49a44e85f68", size = 71633, upload-time = "2025-10-08T09:14:59.177Z" }, + { url = "https://files.pythonhosted.org/packages/73/4d/7c4e2b3d9b1106cd0aa6cb56cc57c6267f59fa8bfab7d91df5adc802c847/msgpack-1.1.2-cp311-cp311-win_arm64.whl", hash = "sha256:86f8136dfa5c116365a8a651a7d7484b65b13339731dd6faebb9a0242151c406", size = 64755, upload-time = "2025-10-08T09:15:00.48Z" }, + { url = "https://files.pythonhosted.org/packages/ad/bd/8b0d01c756203fbab65d265859749860682ccd2a59594609aeec3a144efa/msgpack-1.1.2-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:70a0dff9d1f8da25179ffcf880e10cf1aad55fdb63cd59c9a49a1b82290062aa", size = 81939, upload-time = "2025-10-08T09:15:01.472Z" }, + { url = "https://files.pythonhosted.org/packages/34/68/ba4f155f793a74c1483d4bdef136e1023f7bcba557f0db4ef3db3c665cf1/msgpack-1.1.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:446abdd8b94b55c800ac34b102dffd2f6aa0ce643c55dfc017ad89347db3dbdb", size = 85064, upload-time = "2025-10-08T09:15:03.764Z" }, + { url = "https://files.pythonhosted.org/packages/f2/60/a064b0345fc36c4c3d2c743c82d9100c40388d77f0b48b2f04d6041dbec1/msgpack-1.1.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c63eea553c69ab05b6747901b97d620bb2a690633c77f23feb0c6a947a8a7b8f", size = 417131, upload-time = "2025-10-08T09:15:05.136Z" }, + { url = "https://files.pythonhosted.org/packages/65/92/a5100f7185a800a5d29f8d14041f61475b9de465ffcc0f3b9fba606e4505/msgpack-1.1.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:372839311ccf6bdaf39b00b61288e0557916c3729529b301c52c2d88842add42", size = 427556, upload-time = "2025-10-08T09:15:06.837Z" }, + { url = "https://files.pythonhosted.org/packages/f5/87/ffe21d1bf7d9991354ad93949286f643b2bb6ddbeab66373922b44c3b8cc/msgpack-1.1.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2929af52106ca73fcb28576218476ffbb531a036c2adbcf54a3664de124303e9", size = 404920, upload-time = "2025-10-08T09:15:08.179Z" }, + { url = "https://files.pythonhosted.org/packages/ff/41/8543ed2b8604f7c0d89ce066f42007faac1eaa7d79a81555f206a5cdb889/msgpack-1.1.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:be52a8fc79e45b0364210eef5234a7cf8d330836d0a64dfbb878efa903d84620", size = 415013, upload-time = "2025-10-08T09:15:09.83Z" }, + { url = "https://files.pythonhosted.org/packages/41/0d/2ddfaa8b7e1cee6c490d46cb0a39742b19e2481600a7a0e96537e9c22f43/msgpack-1.1.2-cp312-cp312-win32.whl", hash = "sha256:1fff3d825d7859ac888b0fbda39a42d59193543920eda9d9bea44d958a878029", size = 65096, upload-time = "2025-10-08T09:15:11.11Z" }, + { url = "https://files.pythonhosted.org/packages/8c/ec/d431eb7941fb55a31dd6ca3404d41fbb52d99172df2e7707754488390910/msgpack-1.1.2-cp312-cp312-win_amd64.whl", hash = "sha256:1de460f0403172cff81169a30b9a92b260cb809c4cb7e2fc79ae8d0510c78b6b", size = 72708, upload-time = "2025-10-08T09:15:12.554Z" }, + { url = "https://files.pythonhosted.org/packages/c5/31/5b1a1f70eb0e87d1678e9624908f86317787b536060641d6798e3cf70ace/msgpack-1.1.2-cp312-cp312-win_arm64.whl", hash = "sha256:be5980f3ee0e6bd44f3a9e9dea01054f175b50c3e6cdb692bc9424c0bbb8bf69", size = 64119, upload-time = "2025-10-08T09:15:13.589Z" }, + { url = "https://files.pythonhosted.org/packages/6b/31/b46518ecc604d7edf3a4f94cb3bf021fc62aa301f0cb849936968164ef23/msgpack-1.1.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:4efd7b5979ccb539c221a4c4e16aac1a533efc97f3b759bb5a5ac9f6d10383bf", size = 81212, upload-time = "2025-10-08T09:15:14.552Z" }, + { url = "https://files.pythonhosted.org/packages/92/dc/c385f38f2c2433333345a82926c6bfa5ecfff3ef787201614317b58dd8be/msgpack-1.1.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:42eefe2c3e2af97ed470eec850facbe1b5ad1d6eacdbadc42ec98e7dcf68b4b7", size = 84315, upload-time = "2025-10-08T09:15:15.543Z" }, + { url = "https://files.pythonhosted.org/packages/d3/68/93180dce57f684a61a88a45ed13047558ded2be46f03acb8dec6d7c513af/msgpack-1.1.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1fdf7d83102bf09e7ce3357de96c59b627395352a4024f6e2458501f158bf999", size = 412721, upload-time = "2025-10-08T09:15:16.567Z" }, + { url = "https://files.pythonhosted.org/packages/5d/ba/459f18c16f2b3fc1a1ca871f72f07d70c07bf768ad0a507a698b8052ac58/msgpack-1.1.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:fac4be746328f90caa3cd4bc67e6fe36ca2bf61d5c6eb6d895b6527e3f05071e", size = 424657, upload-time = "2025-10-08T09:15:17.825Z" }, + { url = "https://files.pythonhosted.org/packages/38/f8/4398c46863b093252fe67368b44edc6c13b17f4e6b0e4929dbf0bdb13f23/msgpack-1.1.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:fffee09044073e69f2bad787071aeec727183e7580443dfeb8556cbf1978d162", size = 402668, upload-time = "2025-10-08T09:15:19.003Z" }, + { url = "https://files.pythonhosted.org/packages/28/ce/698c1eff75626e4124b4d78e21cca0b4cc90043afb80a507626ea354ab52/msgpack-1.1.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:5928604de9b032bc17f5099496417f113c45bc6bc21b5c6920caf34b3c428794", size = 419040, upload-time = "2025-10-08T09:15:20.183Z" }, + { url = "https://files.pythonhosted.org/packages/67/32/f3cd1667028424fa7001d82e10ee35386eea1408b93d399b09fb0aa7875f/msgpack-1.1.2-cp313-cp313-win32.whl", hash = "sha256:a7787d353595c7c7e145e2331abf8b7ff1e6673a6b974ded96e6d4ec09f00c8c", size = 65037, upload-time = "2025-10-08T09:15:21.416Z" }, + { url = "https://files.pythonhosted.org/packages/74/07/1ed8277f8653c40ebc65985180b007879f6a836c525b3885dcc6448ae6cb/msgpack-1.1.2-cp313-cp313-win_amd64.whl", hash = "sha256:a465f0dceb8e13a487e54c07d04ae3ba131c7c5b95e2612596eafde1dccf64a9", size = 72631, upload-time = "2025-10-08T09:15:22.431Z" }, + { url = "https://files.pythonhosted.org/packages/e5/db/0314e4e2db56ebcf450f277904ffd84a7988b9e5da8d0d61ab2d057df2b6/msgpack-1.1.2-cp313-cp313-win_arm64.whl", hash = "sha256:e69b39f8c0aa5ec24b57737ebee40be647035158f14ed4b40e6f150077e21a84", size = 64118, upload-time = "2025-10-08T09:15:23.402Z" }, + { url = "https://files.pythonhosted.org/packages/22/71/201105712d0a2ff07b7873ed3c220292fb2ea5120603c00c4b634bcdafb3/msgpack-1.1.2-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:e23ce8d5f7aa6ea6d2a2b326b4ba46c985dbb204523759984430db7114f8aa00", size = 81127, upload-time = "2025-10-08T09:15:24.408Z" }, + { url = "https://files.pythonhosted.org/packages/1b/9f/38ff9e57a2eade7bf9dfee5eae17f39fc0e998658050279cbb14d97d36d9/msgpack-1.1.2-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:6c15b7d74c939ebe620dd8e559384be806204d73b4f9356320632d783d1f7939", size = 84981, upload-time = "2025-10-08T09:15:25.812Z" }, + { url = "https://files.pythonhosted.org/packages/8e/a9/3536e385167b88c2cc8f4424c49e28d49a6fc35206d4a8060f136e71f94c/msgpack-1.1.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:99e2cb7b9031568a2a5c73aa077180f93dd2e95b4f8d3b8e14a73ae94a9e667e", size = 411885, upload-time = "2025-10-08T09:15:27.22Z" }, + { url = "https://files.pythonhosted.org/packages/2f/40/dc34d1a8d5f1e51fc64640b62b191684da52ca469da9cd74e84936ffa4a6/msgpack-1.1.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:180759d89a057eab503cf62eeec0aa61c4ea1200dee709f3a8e9397dbb3b6931", size = 419658, upload-time = "2025-10-08T09:15:28.4Z" }, + { url = "https://files.pythonhosted.org/packages/3b/ef/2b92e286366500a09a67e03496ee8b8ba00562797a52f3c117aa2b29514b/msgpack-1.1.2-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:04fb995247a6e83830b62f0b07bf36540c213f6eac8e851166d8d86d83cbd014", size = 403290, upload-time = "2025-10-08T09:15:29.764Z" }, + { url = "https://files.pythonhosted.org/packages/78/90/e0ea7990abea5764e4655b8177aa7c63cdfa89945b6e7641055800f6c16b/msgpack-1.1.2-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:8e22ab046fa7ede9e36eeb4cfad44d46450f37bb05d5ec482b02868f451c95e2", size = 415234, upload-time = "2025-10-08T09:15:31.022Z" }, + { url = "https://files.pythonhosted.org/packages/72/4e/9390aed5db983a2310818cd7d3ec0aecad45e1f7007e0cda79c79507bb0d/msgpack-1.1.2-cp314-cp314-win32.whl", hash = "sha256:80a0ff7d4abf5fecb995fcf235d4064b9a9a8a40a3ab80999e6ac1e30b702717", size = 66391, upload-time = "2025-10-08T09:15:32.265Z" }, + { url = "https://files.pythonhosted.org/packages/6e/f1/abd09c2ae91228c5f3998dbd7f41353def9eac64253de3c8105efa2082f7/msgpack-1.1.2-cp314-cp314-win_amd64.whl", hash = "sha256:9ade919fac6a3e7260b7f64cea89df6bec59104987cbea34d34a2fa15d74310b", size = 73787, upload-time = "2025-10-08T09:15:33.219Z" }, + { url = "https://files.pythonhosted.org/packages/6a/b0/9d9f667ab48b16ad4115c1935d94023b82b3198064cb84a123e97f7466c1/msgpack-1.1.2-cp314-cp314-win_arm64.whl", hash = "sha256:59415c6076b1e30e563eb732e23b994a61c159cec44deaf584e5cc1dd662f2af", size = 66453, upload-time = "2025-10-08T09:15:34.225Z" }, + { url = "https://files.pythonhosted.org/packages/16/67/93f80545eb1792b61a217fa7f06d5e5cb9e0055bed867f43e2b8e012e137/msgpack-1.1.2-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:897c478140877e5307760b0ea66e0932738879e7aa68144d9b78ea4c8302a84a", size = 85264, upload-time = "2025-10-08T09:15:35.61Z" }, + { url = "https://files.pythonhosted.org/packages/87/1c/33c8a24959cf193966ef11a6f6a2995a65eb066bd681fd085afd519a57ce/msgpack-1.1.2-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:a668204fa43e6d02f89dbe79a30b0d67238d9ec4c5bd8a940fc3a004a47b721b", size = 89076, upload-time = "2025-10-08T09:15:36.619Z" }, + { url = "https://files.pythonhosted.org/packages/fc/6b/62e85ff7193663fbea5c0254ef32f0c77134b4059f8da89b958beb7696f3/msgpack-1.1.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5559d03930d3aa0f3aacb4c42c776af1a2ace2611871c84a75afe436695e6245", size = 435242, upload-time = "2025-10-08T09:15:37.647Z" }, + { url = "https://files.pythonhosted.org/packages/c1/47/5c74ecb4cc277cf09f64e913947871682ffa82b3b93c8dad68083112f412/msgpack-1.1.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:70c5a7a9fea7f036b716191c29047374c10721c389c21e9ffafad04df8c52c90", size = 432509, upload-time = "2025-10-08T09:15:38.794Z" }, + { url = "https://files.pythonhosted.org/packages/24/a4/e98ccdb56dc4e98c929a3f150de1799831c0a800583cde9fa022fa90602d/msgpack-1.1.2-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:f2cb069d8b981abc72b41aea1c580ce92d57c673ec61af4c500153a626cb9e20", size = 415957, upload-time = "2025-10-08T09:15:40.238Z" }, + { url = "https://files.pythonhosted.org/packages/da/28/6951f7fb67bc0a4e184a6b38ab71a92d9ba58080b27a77d3e2fb0be5998f/msgpack-1.1.2-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:d62ce1f483f355f61adb5433ebfd8868c5f078d1a52d042b0a998682b4fa8c27", size = 422910, upload-time = "2025-10-08T09:15:41.505Z" }, + { url = "https://files.pythonhosted.org/packages/f0/03/42106dcded51f0a0b5284d3ce30a671e7bd3f7318d122b2ead66ad289fed/msgpack-1.1.2-cp314-cp314t-win32.whl", hash = "sha256:1d1418482b1ee984625d88aa9585db570180c286d942da463533b238b98b812b", size = 75197, upload-time = "2025-10-08T09:15:42.954Z" }, + { url = "https://files.pythonhosted.org/packages/15/86/d0071e94987f8db59d4eeb386ddc64d0bb9b10820a8d82bcd3e53eeb2da6/msgpack-1.1.2-cp314-cp314t-win_amd64.whl", hash = "sha256:5a46bf7e831d09470ad92dff02b8b1ac92175ca36b087f904a0519857c6be3ff", size = 85772, upload-time = "2025-10-08T09:15:43.954Z" }, + { url = "https://files.pythonhosted.org/packages/81/f2/08ace4142eb281c12701fc3b93a10795e4d4dc7f753911d836675050f886/msgpack-1.1.2-cp314-cp314t-win_arm64.whl", hash = "sha256:d99ef64f349d5ec3293688e91486c5fdb925ed03807f64d98d205d2713c60b46", size = 70868, upload-time = "2025-10-08T09:15:44.959Z" }, +] + +[[package]] +name = "msgspec" +version = "0.20.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ea/9c/bfbd12955a49180cbd234c5d29ec6f74fe641698f0cd9df154a854fc8a15/msgspec-0.20.0.tar.gz", hash = "sha256:692349e588fde322875f8d3025ac01689fead5901e7fb18d6870a44519d62a29", size = 317862, upload-time = "2025-11-24T03:56:28.934Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/03/59/fdcb3af72f750a8de2bcf39d62ada70b5eb17b06d7f63860e0a679cb656b/msgspec-0.20.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:09e0efbf1ac641fedb1d5496c59507c2f0dc62a052189ee62c763e0aae217520", size = 193345, upload-time = "2025-11-24T03:55:20.613Z" }, + { url = "https://files.pythonhosted.org/packages/5a/15/3c225610da9f02505d37d69a77f4a2e7daae2a125f99d638df211ba84e59/msgspec-0.20.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:23ee3787142e48f5ee746b2909ce1b76e2949fbe0f97f9f6e70879f06c218b54", size = 186867, upload-time = "2025-11-24T03:55:22.4Z" }, + { url = "https://files.pythonhosted.org/packages/81/36/13ab0c547e283bf172f45491edfdea0e2cecb26ae61e3a7b1ae6058b326d/msgspec-0.20.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:81f4ac6f0363407ac0465eff5c7d4d18f26870e00674f8fcb336d898a1e36854", size = 215351, upload-time = "2025-11-24T03:55:23.958Z" }, + { url = "https://files.pythonhosted.org/packages/6b/96/5c095b940de3aa6b43a71ec76275ac3537b21bd45c7499b5a17a429110fa/msgspec-0.20.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:bb4d873f24ae18cd1334f4e37a178ed46c9d186437733351267e0a269bdf7e53", size = 219896, upload-time = "2025-11-24T03:55:25.356Z" }, + { url = "https://files.pythonhosted.org/packages/98/7a/81a7b5f01af300761087b114dafa20fb97aed7184d33aab64d48874eb187/msgspec-0.20.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:b92b8334427b8393b520c24ff53b70f326f79acf5f74adb94fd361bcff8a1d4e", size = 220389, upload-time = "2025-11-24T03:55:26.99Z" }, + { url = "https://files.pythonhosted.org/packages/70/c0/3d0cce27db9a9912421273d49eab79ce01ecd2fed1a2f1b74af9b445f33c/msgspec-0.20.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:562c44b047c05cc0384e006fae7a5e715740215c799429e0d7e3e5adf324285a", size = 223348, upload-time = "2025-11-24T03:55:28.311Z" }, + { url = "https://files.pythonhosted.org/packages/89/5e/406b7d578926b68790e390d83a1165a9bfc2d95612a1a9c1c4d5c72ea815/msgspec-0.20.0-cp311-cp311-win_amd64.whl", hash = "sha256:d1dcc93a3ce3d3195985bfff18a48274d0b5ffbc96fa1c5b89da6f0d9af81b29", size = 188713, upload-time = "2025-11-24T03:55:29.553Z" }, + { url = "https://files.pythonhosted.org/packages/47/87/14fe2316624ceedf76a9e94d714d194cbcb699720b210ff189f89ca4efd7/msgspec-0.20.0-cp311-cp311-win_arm64.whl", hash = "sha256:aa387aa330d2e4bd69995f66ea8fdc87099ddeedf6fdb232993c6a67711e7520", size = 174229, upload-time = "2025-11-24T03:55:31.107Z" }, + { url = "https://files.pythonhosted.org/packages/d9/6f/1e25eee957e58e3afb2a44b94fa95e06cebc4c236193ed0de3012fff1e19/msgspec-0.20.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:2aba22e2e302e9231e85edc24f27ba1f524d43c223ef5765bd8624c7df9ec0a5", size = 196391, upload-time = "2025-11-24T03:55:32.677Z" }, + { url = "https://files.pythonhosted.org/packages/7f/ee/af51d090ada641d4b264992a486435ba3ef5b5634bc27e6eb002f71cef7d/msgspec-0.20.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:716284f898ab2547fedd72a93bb940375de9fbfe77538f05779632dc34afdfde", size = 188644, upload-time = "2025-11-24T03:55:33.934Z" }, + { url = "https://files.pythonhosted.org/packages/49/d6/9709ee093b7742362c2934bfb1bbe791a1e09bed3ea5d8a18ce552fbfd73/msgspec-0.20.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:558ed73315efa51b1538fa8f1d3b22c8c5ff6d9a2a62eff87d25829b94fc5054", size = 218852, upload-time = "2025-11-24T03:55:35.575Z" }, + { url = "https://files.pythonhosted.org/packages/5c/a2/488517a43ccf5a4b6b6eca6dd4ede0bd82b043d1539dd6bb908a19f8efd3/msgspec-0.20.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:509ac1362a1d53aa66798c9b9fd76872d7faa30fcf89b2fba3bcbfd559d56eb0", size = 224937, upload-time = "2025-11-24T03:55:36.859Z" }, + { url = "https://files.pythonhosted.org/packages/d5/e8/49b832808aa23b85d4f090d1d2e48a4e3834871415031ed7c5fe48723156/msgspec-0.20.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:1353c2c93423602e7dea1aa4c92f3391fdfc25ff40e0bacf81d34dbc68adb870", size = 222858, upload-time = "2025-11-24T03:55:38.187Z" }, + { url = "https://files.pythonhosted.org/packages/9f/56/1dc2fa53685dca9c3f243a6cbecd34e856858354e455b77f47ebd76cf5bf/msgspec-0.20.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:cb33b5eb5adb3c33d749684471c6a165468395d7aa02d8867c15103b81e1da3e", size = 227248, upload-time = "2025-11-24T03:55:39.496Z" }, + { url = "https://files.pythonhosted.org/packages/5a/51/aba940212c23b32eedce752896205912c2668472ed5b205fc33da28a6509/msgspec-0.20.0-cp312-cp312-win_amd64.whl", hash = "sha256:fb1d934e435dd3a2b8cf4bbf47a8757100b4a1cfdc2afdf227541199885cdacb", size = 190024, upload-time = "2025-11-24T03:55:40.829Z" }, + { url = "https://files.pythonhosted.org/packages/41/ad/3b9f259d94f183daa9764fef33fdc7010f7ecffc29af977044fa47440a83/msgspec-0.20.0-cp312-cp312-win_arm64.whl", hash = "sha256:00648b1e19cf01b2be45444ba9dc961bd4c056ffb15706651e64e5d6ec6197b7", size = 175390, upload-time = "2025-11-24T03:55:42.05Z" }, + { url = "https://files.pythonhosted.org/packages/8a/d1/b902d38b6e5ba3bdddbec469bba388d647f960aeed7b5b3623a8debe8a76/msgspec-0.20.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:9c1ff8db03be7598b50dd4b4a478d6fe93faae3bd54f4f17aa004d0e46c14c46", size = 196463, upload-time = "2025-11-24T03:55:43.405Z" }, + { url = "https://files.pythonhosted.org/packages/57/b6/eff0305961a1d9447ec2b02f8c73c8946f22564d302a504185b730c9a761/msgspec-0.20.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f6532369ece217fd37c5ebcfd7e981f2615628c21121b7b2df9d3adcf2fd69b8", size = 188650, upload-time = "2025-11-24T03:55:44.761Z" }, + { url = "https://files.pythonhosted.org/packages/99/93/f2ec1ae1de51d3fdee998a1ede6b2c089453a2ee82b5c1b361ed9095064a/msgspec-0.20.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f9a1697da2f85a751ac3cc6a97fceb8e937fc670947183fb2268edaf4016d1ee", size = 218834, upload-time = "2025-11-24T03:55:46.441Z" }, + { url = "https://files.pythonhosted.org/packages/28/83/36557b04cfdc317ed8a525c4993b23e43a8fbcddaddd78619112ca07138c/msgspec-0.20.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:7fac7e9c92eddcd24c19d9e5f6249760941485dff97802461ae7c995a2450111", size = 224917, upload-time = "2025-11-24T03:55:48.06Z" }, + { url = "https://files.pythonhosted.org/packages/8f/56/362037a1ed5be0b88aced59272442c4b40065c659700f4b195a7f4d0ac88/msgspec-0.20.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:f953a66f2a3eb8d5ea64768445e2bb301d97609db052628c3e1bcb7d87192a9f", size = 222821, upload-time = "2025-11-24T03:55:49.388Z" }, + { url = "https://files.pythonhosted.org/packages/92/75/fa2370ec341cedf663731ab7042e177b3742645c5dd4f64dc96bd9f18a6b/msgspec-0.20.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:247af0313ae64a066d3aea7ba98840f6681ccbf5c90ba9c7d17f3e39dbba679c", size = 227227, upload-time = "2025-11-24T03:55:51.125Z" }, + { url = "https://files.pythonhosted.org/packages/f1/25/5e8080fe0117f799b1b68008dc29a65862077296b92550632de015128579/msgspec-0.20.0-cp313-cp313-win_amd64.whl", hash = "sha256:67d5e4dfad52832017018d30a462604c80561aa62a9d548fc2bd4e430b66a352", size = 189966, upload-time = "2025-11-24T03:55:52.458Z" }, + { url = "https://files.pythonhosted.org/packages/79/b6/63363422153937d40e1cb349c5081338401f8529a5a4e216865decd981bf/msgspec-0.20.0-cp313-cp313-win_arm64.whl", hash = "sha256:91a52578226708b63a9a13de287b1ec3ed1123e4a088b198143860c087770458", size = 175378, upload-time = "2025-11-24T03:55:53.721Z" }, + { url = "https://files.pythonhosted.org/packages/bb/18/62dc13ab0260c7d741dda8dc7f481495b93ac9168cd887dda5929880eef8/msgspec-0.20.0-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:eead16538db1b3f7ec6e3ed1f6f7c5dec67e90f76e76b610e1ffb5671815633a", size = 196407, upload-time = "2025-11-24T03:55:55.001Z" }, + { url = "https://files.pythonhosted.org/packages/dd/1d/b9949e4ad6953e9f9a142c7997b2f7390c81e03e93570c7c33caf65d27e1/msgspec-0.20.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:703c3bb47bf47801627fb1438f106adbfa2998fe586696d1324586a375fca238", size = 188889, upload-time = "2025-11-24T03:55:56.311Z" }, + { url = "https://files.pythonhosted.org/packages/1e/19/f8bb2dc0f1bfe46cc7d2b6b61c5e9b5a46c62298e8f4d03bbe499c926180/msgspec-0.20.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6cdb227dc585fb109305cee0fd304c2896f02af93ecf50a9c84ee54ee67dbb42", size = 219691, upload-time = "2025-11-24T03:55:57.908Z" }, + { url = "https://files.pythonhosted.org/packages/b8/8e/6b17e43f6eb9369d9858ee32c97959fcd515628a1df376af96c11606cf70/msgspec-0.20.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:27d35044dd8818ac1bd0fedb2feb4fbdff4e3508dd7c5d14316a12a2d96a0de0", size = 224918, upload-time = "2025-11-24T03:55:59.322Z" }, + { url = "https://files.pythonhosted.org/packages/1c/db/0e833a177db1a4484797adba7f429d4242585980b90882cc38709e1b62df/msgspec-0.20.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:b4296393a29ee42dd25947981c65506fd4ad39beaf816f614146fa0c5a6c91ae", size = 223436, upload-time = "2025-11-24T03:56:00.716Z" }, + { url = "https://files.pythonhosted.org/packages/c3/30/d2ee787f4c918fd2b123441d49a7707ae9015e0e8e1ab51aa7967a97b90e/msgspec-0.20.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:205fbdadd0d8d861d71c8f3399fe1a82a2caf4467bc8ff9a626df34c12176980", size = 227190, upload-time = "2025-11-24T03:56:02.371Z" }, + { url = "https://files.pythonhosted.org/packages/ff/37/9c4b58ff11d890d788e700b827db2366f4d11b3313bf136780da7017278b/msgspec-0.20.0-cp314-cp314-win_amd64.whl", hash = "sha256:7dfebc94fe7d3feec6bc6c9df4f7e9eccc1160bb5b811fbf3e3a56899e398a6b", size = 193950, upload-time = "2025-11-24T03:56:03.668Z" }, + { url = "https://files.pythonhosted.org/packages/e9/4e/cab707bf2fa57408e2934e5197fc3560079db34a1e3cd2675ff2e47e07de/msgspec-0.20.0-cp314-cp314-win_arm64.whl", hash = "sha256:2ad6ae36e4a602b24b4bf4eaf8ab5a441fec03e1f1b5931beca8ebda68f53fc0", size = 179018, upload-time = "2025-11-24T03:56:05.038Z" }, + { url = "https://files.pythonhosted.org/packages/4c/06/3da3fc9aaa55618a8f43eb9052453cfe01f82930bca3af8cea63a89f3a11/msgspec-0.20.0-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:f84703e0e6ef025663dd1de828ca028774797b8155e070e795c548f76dde65d5", size = 200389, upload-time = "2025-11-24T03:56:06.375Z" }, + { url = "https://files.pythonhosted.org/packages/83/3b/cc4270a5ceab40dfe1d1745856951b0a24fd16ac8539a66ed3004a60c91e/msgspec-0.20.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:7c83fc24dd09cf1275934ff300e3951b3adc5573f0657a643515cc16c7dee131", size = 193198, upload-time = "2025-11-24T03:56:07.742Z" }, + { url = "https://files.pythonhosted.org/packages/cd/ae/4c7905ac53830c8e3c06fdd60e3cdcfedc0bbc993872d1549b84ea21a1bd/msgspec-0.20.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5f13ccb1c335a124e80c4562573b9b90f01ea9521a1a87f7576c2e281d547f56", size = 225973, upload-time = "2025-11-24T03:56:09.18Z" }, + { url = "https://files.pythonhosted.org/packages/d9/da/032abac1de4d0678d99eaeadb1323bd9d247f4711c012404ba77ed6f15ca/msgspec-0.20.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:17c2b5ca19f19306fc83c96d85e606d2cc107e0caeea85066b5389f664e04846", size = 229509, upload-time = "2025-11-24T03:56:10.898Z" }, + { url = "https://files.pythonhosted.org/packages/69/52/fdc7bdb7057a166f309e0b44929e584319e625aaba4771b60912a9321ccd/msgspec-0.20.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:d931709355edabf66c2dd1a756b2d658593e79882bc81aae5964969d5a291b63", size = 230434, upload-time = "2025-11-24T03:56:12.48Z" }, + { url = "https://files.pythonhosted.org/packages/cb/fe/1dfd5f512b26b53043884e4f34710c73e294e7cc54278c3fe28380e42c37/msgspec-0.20.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:565f915d2e540e8a0c93a01ff67f50aebe1f7e22798c6a25873f9fda8d1325f8", size = 231758, upload-time = "2025-11-24T03:56:13.765Z" }, + { url = "https://files.pythonhosted.org/packages/97/f6/9ba7121b8e0c4e0beee49575d1dbc804e2e72467692f0428cf39ceba1ea5/msgspec-0.20.0-cp314-cp314t-win_amd64.whl", hash = "sha256:726f3e6c3c323f283f6021ebb6c8ccf58d7cd7baa67b93d73bfbe9a15c34ab8d", size = 206540, upload-time = "2025-11-24T03:56:15.029Z" }, + { url = "https://files.pythonhosted.org/packages/c8/3e/c5187de84bb2c2ca334ab163fcacf19a23ebb1d876c837f81a1b324a15bf/msgspec-0.20.0-cp314-cp314t-win_arm64.whl", hash = "sha256:93f23528edc51d9f686808a361728e903d6f2be55c901d6f5c92e44c6d546bfc", size = 183011, upload-time = "2025-11-24T03:56:16.442Z" }, ] [[package]] name = "multidict" -version = "6.4.4" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "typing-extensions", marker = "python_full_version < '3.11'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/91/2f/a3470242707058fe856fe59241eee5635d79087100b7042a867368863a27/multidict-6.4.4.tar.gz", hash = "sha256:69ee9e6ba214b5245031b76233dd95408a0fd57fdb019ddcc1ead4790932a8e8", size = 90183, upload-time = "2025-05-19T14:16:37.381Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/1f/92/0926a5baafa164b5d0ade3cd7932be39310375d7e25c9d7ceca05cb26a45/multidict-6.4.4-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:8adee3ac041145ffe4488ea73fa0a622b464cc25340d98be76924d0cda8545ff", size = 66052, upload-time = "2025-05-19T14:13:49.944Z" }, - { url = "https://files.pythonhosted.org/packages/b2/54/8a857ae4f8f643ec444d91f419fdd49cc7a90a2ca0e42d86482b604b63bd/multidict-6.4.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:b61e98c3e2a861035aaccd207da585bdcacef65fe01d7a0d07478efac005e028", size = 38867, upload-time = "2025-05-19T14:13:51.92Z" }, - { url = "https://files.pythonhosted.org/packages/9e/5f/63add9069f945c19bc8b217ea6b0f8a1ad9382eab374bb44fae4354b3baf/multidict-6.4.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:75493f28dbadecdbb59130e74fe935288813301a8554dc32f0c631b6bdcdf8b0", size = 38138, upload-time = "2025-05-19T14:13:53.778Z" }, - { url = "https://files.pythonhosted.org/packages/97/8b/fbd9c0fc13966efdb4a47f5bcffff67a4f2a3189fbeead5766eaa4250b20/multidict-6.4.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4ffc3c6a37e048b5395ee235e4a2a0d639c2349dffa32d9367a42fc20d399772", size = 220433, upload-time = "2025-05-19T14:13:55.346Z" }, - { url = "https://files.pythonhosted.org/packages/a9/c4/5132b2d75b3ea2daedb14d10f91028f09f74f5b4d373b242c1b8eec47571/multidict-6.4.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:87cb72263946b301570b0f63855569a24ee8758aaae2cd182aae7d95fbc92ca7", size = 218059, upload-time = "2025-05-19T14:13:56.993Z" }, - { url = "https://files.pythonhosted.org/packages/1a/70/f1e818c7a29b908e2d7b4fafb1d7939a41c64868e79de2982eea0a13193f/multidict-6.4.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9bbf7bd39822fd07e3609b6b4467af4c404dd2b88ee314837ad1830a7f4a8299", size = 231120, upload-time = "2025-05-19T14:13:58.333Z" }, - { url = "https://files.pythonhosted.org/packages/b4/7e/95a194d85f27d5ef9cbe48dff9ded722fc6d12fedf641ec6e1e680890be7/multidict-6.4.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d1f7cbd4f1f44ddf5fd86a8675b7679176eae770f2fc88115d6dddb6cefb59bc", size = 227457, upload-time = "2025-05-19T14:13:59.663Z" }, - { url = "https://files.pythonhosted.org/packages/25/2b/590ad220968d1babb42f265debe7be5c5c616df6c5688c995a06d8a9b025/multidict-6.4.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bb5ac9e5bfce0e6282e7f59ff7b7b9a74aa8e5c60d38186a4637f5aa764046ad", size = 219111, upload-time = "2025-05-19T14:14:01.019Z" }, - { url = "https://files.pythonhosted.org/packages/e0/f0/b07682b995d3fb5313f339b59d7de02db19ba0c02d1f77c27bdf8212d17c/multidict-6.4.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4efc31dfef8c4eeb95b6b17d799eedad88c4902daba39ce637e23a17ea078915", size = 213012, upload-time = "2025-05-19T14:14:02.396Z" }, - { url = "https://files.pythonhosted.org/packages/24/56/c77b5f36feef2ec92f1119756e468ac9c3eebc35aa8a4c9e51df664cbbc9/multidict-6.4.4-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:9fcad2945b1b91c29ef2b4050f590bfcb68d8ac8e0995a74e659aa57e8d78e01", size = 225408, upload-time = "2025-05-19T14:14:04.826Z" }, - { url = "https://files.pythonhosted.org/packages/cc/b3/e8189b82af9b198b47bc637766208fc917189eea91d674bad417e657bbdf/multidict-6.4.4-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:d877447e7368c7320832acb7159557e49b21ea10ffeb135c1077dbbc0816b598", size = 214396, upload-time = "2025-05-19T14:14:06.187Z" }, - { url = "https://files.pythonhosted.org/packages/20/e0/200d14c84e35ae13ee99fd65dc106e1a1acb87a301f15e906fc7d5b30c17/multidict-6.4.4-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:33a12ebac9f380714c298cbfd3e5b9c0c4e89c75fe612ae496512ee51028915f", size = 222237, upload-time = "2025-05-19T14:14:07.778Z" }, - { url = "https://files.pythonhosted.org/packages/13/f3/bb3df40045ca8262694a3245298732ff431dc781414a89a6a364ebac6840/multidict-6.4.4-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:0f14ea68d29b43a9bf37953881b1e3eb75b2739e896ba4a6aa4ad4c5b9ffa145", size = 231425, upload-time = "2025-05-19T14:14:09.516Z" }, - { url = "https://files.pythonhosted.org/packages/85/3b/538563dc18514384dac169bcba938753ad9ab4d4c8d49b55d6ae49fb2579/multidict-6.4.4-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:0327ad2c747a6600e4797d115d3c38a220fdb28e54983abe8964fd17e95ae83c", size = 226251, upload-time = "2025-05-19T14:14:10.82Z" }, - { url = "https://files.pythonhosted.org/packages/56/79/77e1a65513f09142358f1beb1d4cbc06898590b34a7de2e47023e3c5a3a2/multidict-6.4.4-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:d1a20707492db9719a05fc62ee215fd2c29b22b47c1b1ba347f9abc831e26683", size = 220363, upload-time = "2025-05-19T14:14:12.638Z" }, - { url = "https://files.pythonhosted.org/packages/16/57/67b0516c3e348f8daaa79c369b3de4359a19918320ab82e2e586a1c624ef/multidict-6.4.4-cp310-cp310-win32.whl", hash = "sha256:d83f18315b9fca5db2452d1881ef20f79593c4aa824095b62cb280019ef7aa3d", size = 35175, upload-time = "2025-05-19T14:14:14.805Z" }, - { url = "https://files.pythonhosted.org/packages/86/5a/4ed8fec642d113fa653777cda30ef67aa5c8a38303c091e24c521278a6c6/multidict-6.4.4-cp310-cp310-win_amd64.whl", hash = "sha256:9c17341ee04545fd962ae07330cb5a39977294c883485c8d74634669b1f7fe04", size = 38678, upload-time = "2025-05-19T14:14:16.949Z" }, - { url = "https://files.pythonhosted.org/packages/19/1b/4c6e638195851524a63972c5773c7737bea7e47b1ba402186a37773acee2/multidict-6.4.4-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:4f5f29794ac0e73d2a06ac03fd18870adc0135a9d384f4a306a951188ed02f95", size = 65515, upload-time = "2025-05-19T14:14:19.767Z" }, - { url = "https://files.pythonhosted.org/packages/25/d5/10e6bca9a44b8af3c7f920743e5fc0c2bcf8c11bf7a295d4cfe00b08fb46/multidict-6.4.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c04157266344158ebd57b7120d9b0b35812285d26d0e78193e17ef57bfe2979a", size = 38609, upload-time = "2025-05-19T14:14:21.538Z" }, - { url = "https://files.pythonhosted.org/packages/26/b4/91fead447ccff56247edc7f0535fbf140733ae25187a33621771ee598a18/multidict-6.4.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:bb61ffd3ab8310d93427e460f565322c44ef12769f51f77277b4abad7b6f7223", size = 37871, upload-time = "2025-05-19T14:14:22.666Z" }, - { url = "https://files.pythonhosted.org/packages/3b/37/cbc977cae59277e99d15bbda84cc53b5e0c4929ffd91d958347200a42ad0/multidict-6.4.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5e0ba18a9afd495f17c351d08ebbc4284e9c9f7971d715f196b79636a4d0de44", size = 226661, upload-time = "2025-05-19T14:14:24.124Z" }, - { url = "https://files.pythonhosted.org/packages/15/cd/7e0b57fbd4dc2fc105169c4ecce5be1a63970f23bb4ec8c721b67e11953d/multidict-6.4.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:9faf1b1dcaadf9f900d23a0e6d6c8eadd6a95795a0e57fcca73acce0eb912065", size = 223422, upload-time = "2025-05-19T14:14:25.437Z" }, - { url = "https://files.pythonhosted.org/packages/f1/01/1de268da121bac9f93242e30cd3286f6a819e5f0b8896511162d6ed4bf8d/multidict-6.4.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a4d1cb1327c6082c4fce4e2a438483390964c02213bc6b8d782cf782c9b1471f", size = 235447, upload-time = "2025-05-19T14:14:26.793Z" }, - { url = "https://files.pythonhosted.org/packages/d2/8c/8b9a5e4aaaf4f2de14e86181a3a3d7b105077f668b6a06f043ec794f684c/multidict-6.4.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:941f1bec2f5dbd51feeb40aea654c2747f811ab01bdd3422a48a4e4576b7d76a", size = 231455, upload-time = "2025-05-19T14:14:28.149Z" }, - { url = "https://files.pythonhosted.org/packages/35/db/e1817dcbaa10b319c412769cf999b1016890849245d38905b73e9c286862/multidict-6.4.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e5f8a146184da7ea12910a4cec51ef85e44f6268467fb489c3caf0cd512f29c2", size = 223666, upload-time = "2025-05-19T14:14:29.584Z" }, - { url = "https://files.pythonhosted.org/packages/4a/e1/66e8579290ade8a00e0126b3d9a93029033ffd84f0e697d457ed1814d0fc/multidict-6.4.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:232b7237e57ec3c09be97206bfb83a0aa1c5d7d377faa019c68a210fa35831f1", size = 217392, upload-time = "2025-05-19T14:14:30.961Z" }, - { url = "https://files.pythonhosted.org/packages/7b/6f/f8639326069c24a48c7747c2a5485d37847e142a3f741ff3340c88060a9a/multidict-6.4.4-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:55ae0721c1513e5e3210bca4fc98456b980b0c2c016679d3d723119b6b202c42", size = 228969, upload-time = "2025-05-19T14:14:32.672Z" }, - { url = "https://files.pythonhosted.org/packages/d2/c3/3d58182f76b960eeade51c89fcdce450f93379340457a328e132e2f8f9ed/multidict-6.4.4-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:51d662c072579f63137919d7bb8fc250655ce79f00c82ecf11cab678f335062e", size = 217433, upload-time = "2025-05-19T14:14:34.016Z" }, - { url = "https://files.pythonhosted.org/packages/e1/4b/f31a562906f3bd375f3d0e83ce314e4a660c01b16c2923e8229b53fba5d7/multidict-6.4.4-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:0e05c39962baa0bb19a6b210e9b1422c35c093b651d64246b6c2e1a7e242d9fd", size = 225418, upload-time = "2025-05-19T14:14:35.376Z" }, - { url = "https://files.pythonhosted.org/packages/99/89/78bb95c89c496d64b5798434a3deee21996114d4d2c28dd65850bf3a691e/multidict-6.4.4-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:d5b1cc3ab8c31d9ebf0faa6e3540fb91257590da330ffe6d2393d4208e638925", size = 235042, upload-time = "2025-05-19T14:14:36.723Z" }, - { url = "https://files.pythonhosted.org/packages/74/91/8780a6e5885a8770442a8f80db86a0887c4becca0e5a2282ba2cae702bc4/multidict-6.4.4-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:93ec84488a384cd7b8a29c2c7f467137d8a73f6fe38bb810ecf29d1ade011a7c", size = 230280, upload-time = "2025-05-19T14:14:38.194Z" }, - { url = "https://files.pythonhosted.org/packages/68/c1/fcf69cabd542eb6f4b892469e033567ee6991d361d77abdc55e3a0f48349/multidict-6.4.4-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:b308402608493638763abc95f9dc0030bbd6ac6aff784512e8ac3da73a88af08", size = 223322, upload-time = "2025-05-19T14:14:40.015Z" }, - { url = "https://files.pythonhosted.org/packages/b8/85/5b80bf4b83d8141bd763e1d99142a9cdfd0db83f0739b4797172a4508014/multidict-6.4.4-cp311-cp311-win32.whl", hash = "sha256:343892a27d1a04d6ae455ecece12904d242d299ada01633d94c4f431d68a8c49", size = 35070, upload-time = "2025-05-19T14:14:41.904Z" }, - { url = "https://files.pythonhosted.org/packages/09/66/0bed198ffd590ab86e001f7fa46b740d58cf8ff98c2f254e4a36bf8861ad/multidict-6.4.4-cp311-cp311-win_amd64.whl", hash = "sha256:73484a94f55359780c0f458bbd3c39cb9cf9c182552177d2136e828269dee529", size = 38667, upload-time = "2025-05-19T14:14:43.534Z" }, - { url = "https://files.pythonhosted.org/packages/d2/b5/5675377da23d60875fe7dae6be841787755878e315e2f517235f22f59e18/multidict-6.4.4-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:dc388f75a1c00000824bf28b7633e40854f4127ede80512b44c3cfeeea1839a2", size = 64293, upload-time = "2025-05-19T14:14:44.724Z" }, - { url = "https://files.pythonhosted.org/packages/34/a7/be384a482754bb8c95d2bbe91717bf7ccce6dc38c18569997a11f95aa554/multidict-6.4.4-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:98af87593a666f739d9dba5d0ae86e01b0e1a9cfcd2e30d2d361fbbbd1a9162d", size = 38096, upload-time = "2025-05-19T14:14:45.95Z" }, - { url = "https://files.pythonhosted.org/packages/66/6d/d59854bb4352306145bdfd1704d210731c1bb2c890bfee31fb7bbc1c4c7f/multidict-6.4.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:aff4cafea2d120327d55eadd6b7f1136a8e5a0ecf6fb3b6863e8aca32cd8e50a", size = 37214, upload-time = "2025-05-19T14:14:47.158Z" }, - { url = "https://files.pythonhosted.org/packages/99/e0/c29d9d462d7cfc5fc8f9bf24f9c6843b40e953c0b55e04eba2ad2cf54fba/multidict-6.4.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:169c4ba7858176b797fe551d6e99040c531c775d2d57b31bcf4de6d7a669847f", size = 224686, upload-time = "2025-05-19T14:14:48.366Z" }, - { url = "https://files.pythonhosted.org/packages/dc/4a/da99398d7fd8210d9de068f9a1b5f96dfaf67d51e3f2521f17cba4ee1012/multidict-6.4.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:b9eb4c59c54421a32b3273d4239865cb14ead53a606db066d7130ac80cc8ec93", size = 231061, upload-time = "2025-05-19T14:14:49.952Z" }, - { url = "https://files.pythonhosted.org/packages/21/f5/ac11add39a0f447ac89353e6ca46666847051103649831c08a2800a14455/multidict-6.4.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7cf3bd54c56aa16fdb40028d545eaa8d051402b61533c21e84046e05513d5780", size = 232412, upload-time = "2025-05-19T14:14:51.812Z" }, - { url = "https://files.pythonhosted.org/packages/d9/11/4b551e2110cded705a3c13a1d4b6a11f73891eb5a1c449f1b2b6259e58a6/multidict-6.4.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f682c42003c7264134bfe886376299db4cc0c6cd06a3295b41b347044bcb5482", size = 231563, upload-time = "2025-05-19T14:14:53.262Z" }, - { url = "https://files.pythonhosted.org/packages/4c/02/751530c19e78fe73b24c3da66618eda0aa0d7f6e7aa512e46483de6be210/multidict-6.4.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a920f9cf2abdf6e493c519492d892c362007f113c94da4c239ae88429835bad1", size = 223811, upload-time = "2025-05-19T14:14:55.232Z" }, - { url = "https://files.pythonhosted.org/packages/c7/cb/2be8a214643056289e51ca356026c7b2ce7225373e7a1f8c8715efee8988/multidict-6.4.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:530d86827a2df6504526106b4c104ba19044594f8722d3e87714e847c74a0275", size = 216524, upload-time = "2025-05-19T14:14:57.226Z" }, - { url = "https://files.pythonhosted.org/packages/19/f3/6d5011ec375c09081f5250af58de85f172bfcaafebff286d8089243c4bd4/multidict-6.4.4-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:ecde56ea2439b96ed8a8d826b50c57364612ddac0438c39e473fafad7ae1c23b", size = 229012, upload-time = "2025-05-19T14:14:58.597Z" }, - { url = "https://files.pythonhosted.org/packages/67/9c/ca510785df5cf0eaf5b2a8132d7d04c1ce058dcf2c16233e596ce37a7f8e/multidict-6.4.4-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:dc8c9736d8574b560634775ac0def6bdc1661fc63fa27ffdfc7264c565bcb4f2", size = 226765, upload-time = "2025-05-19T14:15:00.048Z" }, - { url = "https://files.pythonhosted.org/packages/36/c8/ca86019994e92a0f11e642bda31265854e6ea7b235642f0477e8c2e25c1f/multidict-6.4.4-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:7f3d3b3c34867579ea47cbd6c1f2ce23fbfd20a273b6f9e3177e256584f1eacc", size = 222888, upload-time = "2025-05-19T14:15:01.568Z" }, - { url = "https://files.pythonhosted.org/packages/c6/67/bc25a8e8bd522935379066950ec4e2277f9b236162a73548a2576d4b9587/multidict-6.4.4-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:87a728af265e08f96b6318ebe3c0f68b9335131f461efab2fc64cc84a44aa6ed", size = 234041, upload-time = "2025-05-19T14:15:03.759Z" }, - { url = "https://files.pythonhosted.org/packages/f1/a0/70c4c2d12857fccbe607b334b7ee28b6b5326c322ca8f73ee54e70d76484/multidict-6.4.4-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:9f193eeda1857f8e8d3079a4abd258f42ef4a4bc87388452ed1e1c4d2b0c8740", size = 231046, upload-time = "2025-05-19T14:15:05.698Z" }, - { url = "https://files.pythonhosted.org/packages/c1/0f/52954601d02d39742aab01d6b92f53c1dd38b2392248154c50797b4df7f1/multidict-6.4.4-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:be06e73c06415199200e9a2324a11252a3d62030319919cde5e6950ffeccf72e", size = 227106, upload-time = "2025-05-19T14:15:07.124Z" }, - { url = "https://files.pythonhosted.org/packages/af/24/679d83ec4379402d28721790dce818e5d6b9f94ce1323a556fb17fa9996c/multidict-6.4.4-cp312-cp312-win32.whl", hash = "sha256:622f26ea6a7e19b7c48dd9228071f571b2fbbd57a8cd71c061e848f281550e6b", size = 35351, upload-time = "2025-05-19T14:15:08.556Z" }, - { url = "https://files.pythonhosted.org/packages/52/ef/40d98bc5f986f61565f9b345f102409534e29da86a6454eb6b7c00225a13/multidict-6.4.4-cp312-cp312-win_amd64.whl", hash = "sha256:5e2bcda30d5009996ff439e02a9f2b5c3d64a20151d34898c000a6281faa3781", size = 38791, upload-time = "2025-05-19T14:15:09.825Z" }, - { url = "https://files.pythonhosted.org/packages/df/2a/e166d2ffbf4b10131b2d5b0e458f7cee7d986661caceae0de8753042d4b2/multidict-6.4.4-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:82ffabefc8d84c2742ad19c37f02cde5ec2a1ee172d19944d380f920a340e4b9", size = 64123, upload-time = "2025-05-19T14:15:11.044Z" }, - { url = "https://files.pythonhosted.org/packages/8c/96/e200e379ae5b6f95cbae472e0199ea98913f03d8c9a709f42612a432932c/multidict-6.4.4-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:6a2f58a66fe2c22615ad26156354005391e26a2f3721c3621504cd87c1ea87bf", size = 38049, upload-time = "2025-05-19T14:15:12.902Z" }, - { url = "https://files.pythonhosted.org/packages/75/fb/47afd17b83f6a8c7fa863c6d23ac5ba6a0e6145ed8a6bcc8da20b2b2c1d2/multidict-6.4.4-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:5883d6ee0fd9d8a48e9174df47540b7545909841ac82354c7ae4cbe9952603bd", size = 37078, upload-time = "2025-05-19T14:15:14.282Z" }, - { url = "https://files.pythonhosted.org/packages/fa/70/1af3143000eddfb19fd5ca5e78393985ed988ac493bb859800fe0914041f/multidict-6.4.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9abcf56a9511653fa1d052bfc55fbe53dbee8f34e68bd6a5a038731b0ca42d15", size = 224097, upload-time = "2025-05-19T14:15:15.566Z" }, - { url = "https://files.pythonhosted.org/packages/b1/39/d570c62b53d4fba844e0378ffbcd02ac25ca423d3235047013ba2f6f60f8/multidict-6.4.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:6ed5ae5605d4ad5a049fad2a28bb7193400700ce2f4ae484ab702d1e3749c3f9", size = 230768, upload-time = "2025-05-19T14:15:17.308Z" }, - { url = "https://files.pythonhosted.org/packages/fd/f8/ed88f2c4d06f752b015933055eb291d9bc184936903752c66f68fb3c95a7/multidict-6.4.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:bbfcb60396f9bcfa63e017a180c3105b8c123a63e9d1428a36544e7d37ca9e20", size = 231331, upload-time = "2025-05-19T14:15:18.73Z" }, - { url = "https://files.pythonhosted.org/packages/9c/6f/8e07cffa32f483ab887b0d56bbd8747ac2c1acd00dc0af6fcf265f4a121e/multidict-6.4.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b0f1987787f5f1e2076b59692352ab29a955b09ccc433c1f6b8e8e18666f608b", size = 230169, upload-time = "2025-05-19T14:15:20.179Z" }, - { url = "https://files.pythonhosted.org/packages/e6/2b/5dcf173be15e42f330110875a2668ddfc208afc4229097312212dc9c1236/multidict-6.4.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1d0121ccce8c812047d8d43d691a1ad7641f72c4f730474878a5aeae1b8ead8c", size = 222947, upload-time = "2025-05-19T14:15:21.714Z" }, - { url = "https://files.pythonhosted.org/packages/39/75/4ddcbcebe5ebcd6faa770b629260d15840a5fc07ce8ad295a32e14993726/multidict-6.4.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:83ec4967114295b8afd120a8eec579920c882831a3e4c3331d591a8e5bfbbc0f", size = 215761, upload-time = "2025-05-19T14:15:23.242Z" }, - { url = "https://files.pythonhosted.org/packages/6a/c9/55e998ae45ff15c5608e384206aa71a11e1b7f48b64d166db400b14a3433/multidict-6.4.4-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:995f985e2e268deaf17867801b859a282e0448633f1310e3704b30616d269d69", size = 227605, upload-time = "2025-05-19T14:15:24.763Z" }, - { url = "https://files.pythonhosted.org/packages/04/49/c2404eac74497503c77071bd2e6f88c7e94092b8a07601536b8dbe99be50/multidict-6.4.4-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:d832c608f94b9f92a0ec8b7e949be7792a642b6e535fcf32f3e28fab69eeb046", size = 226144, upload-time = "2025-05-19T14:15:26.249Z" }, - { url = "https://files.pythonhosted.org/packages/62/c5/0cd0c3c6f18864c40846aa2252cd69d308699cb163e1c0d989ca301684da/multidict-6.4.4-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:d21c1212171cf7da703c5b0b7a0e85be23b720818aef502ad187d627316d5645", size = 221100, upload-time = "2025-05-19T14:15:28.303Z" }, - { url = "https://files.pythonhosted.org/packages/71/7b/f2f3887bea71739a046d601ef10e689528d4f911d84da873b6be9194ffea/multidict-6.4.4-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:cbebaa076aaecad3d4bb4c008ecc73b09274c952cf6a1b78ccfd689e51f5a5b0", size = 232731, upload-time = "2025-05-19T14:15:30.263Z" }, - { url = "https://files.pythonhosted.org/packages/e5/b3/d9de808349df97fa75ec1372758701b5800ebad3c46ae377ad63058fbcc6/multidict-6.4.4-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:c93a6fb06cc8e5d3628b2b5fda215a5db01e8f08fc15fadd65662d9b857acbe4", size = 229637, upload-time = "2025-05-19T14:15:33.337Z" }, - { url = "https://files.pythonhosted.org/packages/5e/57/13207c16b615eb4f1745b44806a96026ef8e1b694008a58226c2d8f5f0a5/multidict-6.4.4-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:8cd8f81f1310182362fb0c7898145ea9c9b08a71081c5963b40ee3e3cac589b1", size = 225594, upload-time = "2025-05-19T14:15:34.832Z" }, - { url = "https://files.pythonhosted.org/packages/3a/e4/d23bec2f70221604f5565000632c305fc8f25ba953e8ce2d8a18842b9841/multidict-6.4.4-cp313-cp313-win32.whl", hash = "sha256:3e9f1cd61a0ab857154205fb0b1f3d3ace88d27ebd1409ab7af5096e409614cd", size = 35359, upload-time = "2025-05-19T14:15:36.246Z" }, - { url = "https://files.pythonhosted.org/packages/a7/7a/cfe1a47632be861b627f46f642c1d031704cc1c0f5c0efbde2ad44aa34bd/multidict-6.4.4-cp313-cp313-win_amd64.whl", hash = "sha256:8ffb40b74400e4455785c2fa37eba434269149ec525fc8329858c862e4b35373", size = 38903, upload-time = "2025-05-19T14:15:37.507Z" }, - { url = "https://files.pythonhosted.org/packages/68/7b/15c259b0ab49938a0a1c8f3188572802704a779ddb294edc1b2a72252e7c/multidict-6.4.4-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:6a602151dbf177be2450ef38966f4be3467d41a86c6a845070d12e17c858a156", size = 68895, upload-time = "2025-05-19T14:15:38.856Z" }, - { url = "https://files.pythonhosted.org/packages/f1/7d/168b5b822bccd88142e0a3ce985858fea612404edd228698f5af691020c9/multidict-6.4.4-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:0d2b9712211b860d123815a80b859075d86a4d54787e247d7fbee9db6832cf1c", size = 40183, upload-time = "2025-05-19T14:15:40.197Z" }, - { url = "https://files.pythonhosted.org/packages/e0/b7/d4b8d98eb850ef28a4922ba508c31d90715fd9b9da3801a30cea2967130b/multidict-6.4.4-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:d2fa86af59f8fc1972e121ade052145f6da22758f6996a197d69bb52f8204e7e", size = 39592, upload-time = "2025-05-19T14:15:41.508Z" }, - { url = "https://files.pythonhosted.org/packages/18/28/a554678898a19583548e742080cf55d169733baf57efc48c2f0273a08583/multidict-6.4.4-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:50855d03e9e4d66eab6947ba688ffb714616f985838077bc4b490e769e48da51", size = 226071, upload-time = "2025-05-19T14:15:42.877Z" }, - { url = "https://files.pythonhosted.org/packages/ee/dc/7ba6c789d05c310e294f85329efac1bf5b450338d2542498db1491a264df/multidict-6.4.4-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:5bce06b83be23225be1905dcdb6b789064fae92499fbc458f59a8c0e68718601", size = 222597, upload-time = "2025-05-19T14:15:44.412Z" }, - { url = "https://files.pythonhosted.org/packages/24/4f/34eadbbf401b03768dba439be0fb94b0d187facae9142821a3d5599ccb3b/multidict-6.4.4-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:66ed0731f8e5dfd8369a883b6e564aca085fb9289aacabd9decd70568b9a30de", size = 228253, upload-time = "2025-05-19T14:15:46.474Z" }, - { url = "https://files.pythonhosted.org/packages/c0/e6/493225a3cdb0d8d80d43a94503fc313536a07dae54a3f030d279e629a2bc/multidict-6.4.4-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:329ae97fc2f56f44d91bc47fe0972b1f52d21c4b7a2ac97040da02577e2daca2", size = 226146, upload-time = "2025-05-19T14:15:48.003Z" }, - { url = "https://files.pythonhosted.org/packages/2f/70/e411a7254dc3bff6f7e6e004303b1b0591358e9f0b7c08639941e0de8bd6/multidict-6.4.4-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c27e5dcf520923d6474d98b96749e6805f7677e93aaaf62656005b8643f907ab", size = 220585, upload-time = "2025-05-19T14:15:49.546Z" }, - { url = "https://files.pythonhosted.org/packages/08/8f/beb3ae7406a619100d2b1fb0022c3bb55a8225ab53c5663648ba50dfcd56/multidict-6.4.4-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:058cc59b9e9b143cc56715e59e22941a5d868c322242278d28123a5d09cdf6b0", size = 212080, upload-time = "2025-05-19T14:15:51.151Z" }, - { url = "https://files.pythonhosted.org/packages/9c/ec/355124e9d3d01cf8edb072fd14947220f357e1c5bc79c88dff89297e9342/multidict-6.4.4-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:69133376bc9a03f8c47343d33f91f74a99c339e8b58cea90433d8e24bb298031", size = 226558, upload-time = "2025-05-19T14:15:52.665Z" }, - { url = "https://files.pythonhosted.org/packages/fd/22/d2b95cbebbc2ada3be3812ea9287dcc9712d7f1a012fad041770afddb2ad/multidict-6.4.4-cp313-cp313t-musllinux_1_2_armv7l.whl", hash = "sha256:d6b15c55721b1b115c5ba178c77104123745b1417527ad9641a4c5e2047450f0", size = 212168, upload-time = "2025-05-19T14:15:55.279Z" }, - { url = "https://files.pythonhosted.org/packages/4d/c5/62bfc0b2f9ce88326dbe7179f9824a939c6c7775b23b95de777267b9725c/multidict-6.4.4-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:a887b77f51d3d41e6e1a63cf3bc7ddf24de5939d9ff69441387dfefa58ac2e26", size = 217970, upload-time = "2025-05-19T14:15:56.806Z" }, - { url = "https://files.pythonhosted.org/packages/79/74/977cea1aadc43ff1c75d23bd5bc4768a8fac98c14e5878d6ee8d6bab743c/multidict-6.4.4-cp313-cp313t-musllinux_1_2_ppc64le.whl", hash = "sha256:632a3bf8f1787f7ef7d3c2f68a7bde5be2f702906f8b5842ad6da9d974d0aab3", size = 226980, upload-time = "2025-05-19T14:15:58.313Z" }, - { url = "https://files.pythonhosted.org/packages/48/fc/cc4a1a2049df2eb84006607dc428ff237af38e0fcecfdb8a29ca47b1566c/multidict-6.4.4-cp313-cp313t-musllinux_1_2_s390x.whl", hash = "sha256:a145c550900deb7540973c5cdb183b0d24bed6b80bf7bddf33ed8f569082535e", size = 220641, upload-time = "2025-05-19T14:15:59.866Z" }, - { url = "https://files.pythonhosted.org/packages/3b/6a/a7444d113ab918701988d4abdde373dbdfd2def7bd647207e2bf645c7eac/multidict-6.4.4-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:cc5d83c6619ca5c9672cb78b39ed8542f1975a803dee2cda114ff73cbb076edd", size = 221728, upload-time = "2025-05-19T14:16:01.535Z" }, - { url = "https://files.pythonhosted.org/packages/2b/b0/fdf4c73ad1c55e0f4dbbf2aa59dd37037334091f9a4961646d2b7ac91a86/multidict-6.4.4-cp313-cp313t-win32.whl", hash = "sha256:3312f63261b9df49be9d57aaa6abf53a6ad96d93b24f9cc16cf979956355ce6e", size = 41913, upload-time = "2025-05-19T14:16:03.199Z" }, - { url = "https://files.pythonhosted.org/packages/8e/92/27989ecca97e542c0d01d05a98a5ae12198a243a9ee12563a0313291511f/multidict-6.4.4-cp313-cp313t-win_amd64.whl", hash = "sha256:ba852168d814b2c73333073e1c7116d9395bea69575a01b0b3c89d2d5a87c8fb", size = 46112, upload-time = "2025-05-19T14:16:04.909Z" }, - { url = "https://files.pythonhosted.org/packages/84/5d/e17845bb0fa76334477d5de38654d27946d5b5d3695443987a094a71b440/multidict-6.4.4-py3-none-any.whl", hash = "sha256:bd4557071b561a8b3b6075c3ce93cf9bfb6182cb241805c3d66ced3b75eff4ac", size = 10481, upload-time = "2025-05-19T14:16:36.024Z" }, +version = "6.7.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/80/1e/5492c365f222f907de1039b91f922b93fa4f764c713ee858d235495d8f50/multidict-6.7.0.tar.gz", hash = "sha256:c6e99d9a65ca282e578dfea819cfa9c0a62b2499d8677392e09feaf305e9e6f5", size = 101834, upload-time = "2025-10-06T14:52:30.657Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/34/9e/5c727587644d67b2ed479041e4b1c58e30afc011e3d45d25bbe35781217c/multidict-6.7.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:4d409aa42a94c0b3fa617708ef5276dfe81012ba6753a0370fcc9d0195d0a1fc", size = 76604, upload-time = "2025-10-06T14:48:54.277Z" }, + { url = "https://files.pythonhosted.org/packages/17/e4/67b5c27bd17c085a5ea8f1ec05b8a3e5cba0ca734bfcad5560fb129e70ca/multidict-6.7.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:14c9e076eede3b54c636f8ce1c9c252b5f057c62131211f0ceeec273810c9721", size = 44715, upload-time = "2025-10-06T14:48:55.445Z" }, + { url = "https://files.pythonhosted.org/packages/4d/e1/866a5d77be6ea435711bef2a4291eed11032679b6b28b56b4776ab06ba3e/multidict-6.7.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:4c09703000a9d0fa3c3404b27041e574cc7f4df4c6563873246d0e11812a94b6", size = 44332, upload-time = "2025-10-06T14:48:56.706Z" }, + { url = "https://files.pythonhosted.org/packages/31/61/0c2d50241ada71ff61a79518db85ada85fdabfcf395d5968dae1cbda04e5/multidict-6.7.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:a265acbb7bb33a3a2d626afbe756371dce0279e7b17f4f4eda406459c2b5ff1c", size = 245212, upload-time = "2025-10-06T14:48:58.042Z" }, + { url = "https://files.pythonhosted.org/packages/ac/e0/919666a4e4b57fff1b57f279be1c9316e6cdc5de8a8b525d76f6598fefc7/multidict-6.7.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:51cb455de290ae462593e5b1cb1118c5c22ea7f0d3620d9940bf695cea5a4bd7", size = 246671, upload-time = "2025-10-06T14:49:00.004Z" }, + { url = "https://files.pythonhosted.org/packages/a1/cc/d027d9c5a520f3321b65adea289b965e7bcbd2c34402663f482648c716ce/multidict-6.7.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:db99677b4457c7a5c5a949353e125ba72d62b35f74e26da141530fbb012218a7", size = 225491, upload-time = "2025-10-06T14:49:01.393Z" }, + { url = "https://files.pythonhosted.org/packages/75/c4/bbd633980ce6155a28ff04e6a6492dd3335858394d7bb752d8b108708558/multidict-6.7.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:f470f68adc395e0183b92a2f4689264d1ea4b40504a24d9882c27375e6662bb9", size = 257322, upload-time = "2025-10-06T14:49:02.745Z" }, + { url = "https://files.pythonhosted.org/packages/4c/6d/d622322d344f1f053eae47e033b0b3f965af01212de21b10bcf91be991fb/multidict-6.7.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:0db4956f82723cc1c270de9c6e799b4c341d327762ec78ef82bb962f79cc07d8", size = 254694, upload-time = "2025-10-06T14:49:04.15Z" }, + { url = "https://files.pythonhosted.org/packages/a8/9f/78f8761c2705d4c6d7516faed63c0ebdac569f6db1bef95e0d5218fdc146/multidict-6.7.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:3e56d780c238f9e1ae66a22d2adf8d16f485381878250db8d496623cd38b22bd", size = 246715, upload-time = "2025-10-06T14:49:05.967Z" }, + { url = "https://files.pythonhosted.org/packages/78/59/950818e04f91b9c2b95aab3d923d9eabd01689d0dcd889563988e9ea0fd8/multidict-6.7.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:9d14baca2ee12c1a64740d4531356ba50b82543017f3ad6de0deb943c5979abb", size = 243189, upload-time = "2025-10-06T14:49:07.37Z" }, + { url = "https://files.pythonhosted.org/packages/7a/3d/77c79e1934cad2ee74991840f8a0110966d9599b3af95964c0cd79bb905b/multidict-6.7.0-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:295a92a76188917c7f99cda95858c822f9e4aae5824246bba9b6b44004ddd0a6", size = 237845, upload-time = "2025-10-06T14:49:08.759Z" }, + { url = "https://files.pythonhosted.org/packages/63/1b/834ce32a0a97a3b70f86437f685f880136677ac00d8bce0027e9fd9c2db7/multidict-6.7.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:39f1719f57adbb767ef592a50ae5ebb794220d1188f9ca93de471336401c34d2", size = 246374, upload-time = "2025-10-06T14:49:10.574Z" }, + { url = "https://files.pythonhosted.org/packages/23/ef/43d1c3ba205b5dec93dc97f3fba179dfa47910fc73aaaea4f7ceb41cec2a/multidict-6.7.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:0a13fb8e748dfc94749f622de065dd5c1def7e0d2216dba72b1d8069a389c6ff", size = 253345, upload-time = "2025-10-06T14:49:12.331Z" }, + { url = "https://files.pythonhosted.org/packages/6b/03/eaf95bcc2d19ead522001f6a650ef32811aa9e3624ff0ad37c445c7a588c/multidict-6.7.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:e3aa16de190d29a0ea1b48253c57d99a68492c8dd8948638073ab9e74dc9410b", size = 246940, upload-time = "2025-10-06T14:49:13.821Z" }, + { url = "https://files.pythonhosted.org/packages/e8/df/ec8a5fd66ea6cd6f525b1fcbb23511b033c3e9bc42b81384834ffa484a62/multidict-6.7.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a048ce45dcdaaf1defb76b2e684f997fb5abf74437b6cb7b22ddad934a964e34", size = 242229, upload-time = "2025-10-06T14:49:15.603Z" }, + { url = "https://files.pythonhosted.org/packages/8a/a2/59b405d59fd39ec86d1142630e9049243015a5f5291ba49cadf3c090c541/multidict-6.7.0-cp311-cp311-win32.whl", hash = "sha256:a90af66facec4cebe4181b9e62a68be65e45ac9b52b67de9eec118701856e7ff", size = 41308, upload-time = "2025-10-06T14:49:16.871Z" }, + { url = "https://files.pythonhosted.org/packages/32/0f/13228f26f8b882c34da36efa776c3b7348455ec383bab4a66390e42963ae/multidict-6.7.0-cp311-cp311-win_amd64.whl", hash = "sha256:95b5ffa4349df2887518bb839409bcf22caa72d82beec453216802f475b23c81", size = 46037, upload-time = "2025-10-06T14:49:18.457Z" }, + { url = "https://files.pythonhosted.org/packages/84/1f/68588e31b000535a3207fd3c909ebeec4fb36b52c442107499c18a896a2a/multidict-6.7.0-cp311-cp311-win_arm64.whl", hash = "sha256:329aa225b085b6f004a4955271a7ba9f1087e39dcb7e65f6284a988264a63912", size = 43023, upload-time = "2025-10-06T14:49:19.648Z" }, + { url = "https://files.pythonhosted.org/packages/c2/9e/9f61ac18d9c8b475889f32ccfa91c9f59363480613fc807b6e3023d6f60b/multidict-6.7.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:8a3862568a36d26e650a19bb5cbbba14b71789032aebc0423f8cc5f150730184", size = 76877, upload-time = "2025-10-06T14:49:20.884Z" }, + { url = "https://files.pythonhosted.org/packages/38/6f/614f09a04e6184f8824268fce4bc925e9849edfa654ddd59f0b64508c595/multidict-6.7.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:960c60b5849b9b4f9dcc9bea6e3626143c252c74113df2c1540aebce70209b45", size = 45467, upload-time = "2025-10-06T14:49:22.054Z" }, + { url = "https://files.pythonhosted.org/packages/b3/93/c4f67a436dd026f2e780c433277fff72be79152894d9fc36f44569cab1a6/multidict-6.7.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:2049be98fb57a31b4ccf870bf377af2504d4ae35646a19037ec271e4c07998aa", size = 43834, upload-time = "2025-10-06T14:49:23.566Z" }, + { url = "https://files.pythonhosted.org/packages/7f/f5/013798161ca665e4a422afbc5e2d9e4070142a9ff8905e482139cd09e4d0/multidict-6.7.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:0934f3843a1860dd465d38895c17fce1f1cb37295149ab05cd1b9a03afacb2a7", size = 250545, upload-time = "2025-10-06T14:49:24.882Z" }, + { url = "https://files.pythonhosted.org/packages/71/2f/91dbac13e0ba94669ea5119ba267c9a832f0cb65419aca75549fcf09a3dc/multidict-6.7.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b3e34f3a1b8131ba06f1a73adab24f30934d148afcd5f5de9a73565a4404384e", size = 258305, upload-time = "2025-10-06T14:49:26.778Z" }, + { url = "https://files.pythonhosted.org/packages/ef/b0/754038b26f6e04488b48ac621f779c341338d78503fb45403755af2df477/multidict-6.7.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:efbb54e98446892590dc2458c19c10344ee9a883a79b5cec4bc34d6656e8d546", size = 242363, upload-time = "2025-10-06T14:49:28.562Z" }, + { url = "https://files.pythonhosted.org/packages/87/15/9da40b9336a7c9fa606c4cf2ed80a649dffeb42b905d4f63a1d7eb17d746/multidict-6.7.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:a35c5fc61d4f51eb045061e7967cfe3123d622cd500e8868e7c0c592a09fedc4", size = 268375, upload-time = "2025-10-06T14:49:29.96Z" }, + { url = "https://files.pythonhosted.org/packages/82/72/c53fcade0cc94dfaad583105fd92b3a783af2091eddcb41a6d5a52474000/multidict-6.7.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:29fe6740ebccba4175af1b9b87bf553e9c15cd5868ee967e010efcf94e4fd0f1", size = 269346, upload-time = "2025-10-06T14:49:31.404Z" }, + { url = "https://files.pythonhosted.org/packages/0d/e2/9baffdae21a76f77ef8447f1a05a96ec4bc0a24dae08767abc0a2fe680b8/multidict-6.7.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:123e2a72e20537add2f33a79e605f6191fba2afda4cbb876e35c1a7074298a7d", size = 256107, upload-time = "2025-10-06T14:49:32.974Z" }, + { url = "https://files.pythonhosted.org/packages/3c/06/3f06f611087dc60d65ef775f1fb5aca7c6d61c6db4990e7cda0cef9b1651/multidict-6.7.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:b284e319754366c1aee2267a2036248b24eeb17ecd5dc16022095e747f2f4304", size = 253592, upload-time = "2025-10-06T14:49:34.52Z" }, + { url = "https://files.pythonhosted.org/packages/20/24/54e804ec7945b6023b340c412ce9c3f81e91b3bf5fa5ce65558740141bee/multidict-6.7.0-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:803d685de7be4303b5a657b76e2f6d1240e7e0a8aa2968ad5811fa2285553a12", size = 251024, upload-time = "2025-10-06T14:49:35.956Z" }, + { url = "https://files.pythonhosted.org/packages/14/48/011cba467ea0b17ceb938315d219391d3e421dfd35928e5dbdc3f4ae76ef/multidict-6.7.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:c04a328260dfd5db8c39538f999f02779012268f54614902d0afc775d44e0a62", size = 251484, upload-time = "2025-10-06T14:49:37.631Z" }, + { url = "https://files.pythonhosted.org/packages/0d/2f/919258b43bb35b99fa127435cfb2d91798eb3a943396631ef43e3720dcf4/multidict-6.7.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:8a19cdb57cd3df4cd865849d93ee14920fb97224300c88501f16ecfa2604b4e0", size = 263579, upload-time = "2025-10-06T14:49:39.502Z" }, + { url = "https://files.pythonhosted.org/packages/31/22/a0e884d86b5242b5a74cf08e876bdf299e413016b66e55511f7a804a366e/multidict-6.7.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:9b2fd74c52accced7e75de26023b7dccee62511a600e62311b918ec5c168fc2a", size = 259654, upload-time = "2025-10-06T14:49:41.32Z" }, + { url = "https://files.pythonhosted.org/packages/b2/e5/17e10e1b5c5f5a40f2fcbb45953c9b215f8a4098003915e46a93f5fcaa8f/multidict-6.7.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:3e8bfdd0e487acf992407a140d2589fe598238eaeffa3da8448d63a63cd363f8", size = 251511, upload-time = "2025-10-06T14:49:46.021Z" }, + { url = "https://files.pythonhosted.org/packages/e3/9a/201bb1e17e7af53139597069c375e7b0dcbd47594604f65c2d5359508566/multidict-6.7.0-cp312-cp312-win32.whl", hash = "sha256:dd32a49400a2c3d52088e120ee00c1e3576cbff7e10b98467962c74fdb762ed4", size = 41895, upload-time = "2025-10-06T14:49:48.718Z" }, + { url = "https://files.pythonhosted.org/packages/46/e2/348cd32faad84eaf1d20cce80e2bb0ef8d312c55bca1f7fa9865e7770aaf/multidict-6.7.0-cp312-cp312-win_amd64.whl", hash = "sha256:92abb658ef2d7ef22ac9f8bb88e8b6c3e571671534e029359b6d9e845923eb1b", size = 46073, upload-time = "2025-10-06T14:49:50.28Z" }, + { url = "https://files.pythonhosted.org/packages/25/ec/aad2613c1910dce907480e0c3aa306905830f25df2e54ccc9dea450cb5aa/multidict-6.7.0-cp312-cp312-win_arm64.whl", hash = "sha256:490dab541a6a642ce1a9d61a4781656b346a55c13038f0b1244653828e3a83ec", size = 43226, upload-time = "2025-10-06T14:49:52.304Z" }, + { url = "https://files.pythonhosted.org/packages/d2/86/33272a544eeb36d66e4d9a920602d1a2f57d4ebea4ef3cdfe5a912574c95/multidict-6.7.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:bee7c0588aa0076ce77c0ea5d19a68d76ad81fcd9fe8501003b9a24f9d4000f6", size = 76135, upload-time = "2025-10-06T14:49:54.26Z" }, + { url = "https://files.pythonhosted.org/packages/91/1c/eb97db117a1ebe46d457a3d235a7b9d2e6dcab174f42d1b67663dd9e5371/multidict-6.7.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:7ef6b61cad77091056ce0e7ce69814ef72afacb150b7ac6a3e9470def2198159", size = 45117, upload-time = "2025-10-06T14:49:55.82Z" }, + { url = "https://files.pythonhosted.org/packages/f1/d8/6c3442322e41fb1dd4de8bd67bfd11cd72352ac131f6368315617de752f1/multidict-6.7.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:9c0359b1ec12b1d6849c59f9d319610b7f20ef990a6d454ab151aa0e3b9f78ca", size = 43472, upload-time = "2025-10-06T14:49:57.048Z" }, + { url = "https://files.pythonhosted.org/packages/75/3f/e2639e80325af0b6c6febdf8e57cc07043ff15f57fa1ef808f4ccb5ac4cd/multidict-6.7.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:cd240939f71c64bd658f186330603aac1a9a81bf6273f523fca63673cb7378a8", size = 249342, upload-time = "2025-10-06T14:49:58.368Z" }, + { url = "https://files.pythonhosted.org/packages/5d/cc/84e0585f805cbeaa9cbdaa95f9a3d6aed745b9d25700623ac89a6ecff400/multidict-6.7.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:a60a4d75718a5efa473ebd5ab685786ba0c67b8381f781d1be14da49f1a2dc60", size = 257082, upload-time = "2025-10-06T14:49:59.89Z" }, + { url = "https://files.pythonhosted.org/packages/b0/9c/ac851c107c92289acbbf5cfb485694084690c1b17e555f44952c26ddc5bd/multidict-6.7.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:53a42d364f323275126aff81fb67c5ca1b7a04fda0546245730a55c8c5f24bc4", size = 240704, upload-time = "2025-10-06T14:50:01.485Z" }, + { url = "https://files.pythonhosted.org/packages/50/cc/5f93e99427248c09da95b62d64b25748a5f5c98c7c2ab09825a1d6af0e15/multidict-6.7.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:3b29b980d0ddbecb736735ee5bef69bb2ddca56eff603c86f3f29a1128299b4f", size = 266355, upload-time = "2025-10-06T14:50:02.955Z" }, + { url = "https://files.pythonhosted.org/packages/ec/0c/2ec1d883ceb79c6f7f6d7ad90c919c898f5d1c6ea96d322751420211e072/multidict-6.7.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:f8a93b1c0ed2d04b97a5e9336fd2d33371b9a6e29ab7dd6503d63407c20ffbaf", size = 267259, upload-time = "2025-10-06T14:50:04.446Z" }, + { url = "https://files.pythonhosted.org/packages/c6/2d/f0b184fa88d6630aa267680bdb8623fb69cb0d024b8c6f0d23f9a0f406d3/multidict-6.7.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9ff96e8815eecacc6645da76c413eb3b3d34cfca256c70b16b286a687d013c32", size = 254903, upload-time = "2025-10-06T14:50:05.98Z" }, + { url = "https://files.pythonhosted.org/packages/06/c9/11ea263ad0df7dfabcad404feb3c0dd40b131bc7f232d5537f2fb1356951/multidict-6.7.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:7516c579652f6a6be0e266aec0acd0db80829ca305c3d771ed898538804c2036", size = 252365, upload-time = "2025-10-06T14:50:07.511Z" }, + { url = "https://files.pythonhosted.org/packages/41/88/d714b86ee2c17d6e09850c70c9d310abac3d808ab49dfa16b43aba9d53fd/multidict-6.7.0-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:040f393368e63fb0f3330e70c26bfd336656bed925e5cbe17c9da839a6ab13ec", size = 250062, upload-time = "2025-10-06T14:50:09.074Z" }, + { url = "https://files.pythonhosted.org/packages/15/fe/ad407bb9e818c2b31383f6131ca19ea7e35ce93cf1310fce69f12e89de75/multidict-6.7.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:b3bc26a951007b1057a1c543af845f1c7e3e71cc240ed1ace7bf4484aa99196e", size = 249683, upload-time = "2025-10-06T14:50:10.714Z" }, + { url = "https://files.pythonhosted.org/packages/8c/a4/a89abdb0229e533fb925e7c6e5c40201c2873efebc9abaf14046a4536ee6/multidict-6.7.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:7b022717c748dd1992a83e219587aabe45980d88969f01b316e78683e6285f64", size = 261254, upload-time = "2025-10-06T14:50:12.28Z" }, + { url = "https://files.pythonhosted.org/packages/8d/aa/0e2b27bd88b40a4fb8dc53dd74eecac70edaa4c1dd0707eb2164da3675b3/multidict-6.7.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:9600082733859f00d79dee64effc7aef1beb26adb297416a4ad2116fd61374bd", size = 257967, upload-time = "2025-10-06T14:50:14.16Z" }, + { url = "https://files.pythonhosted.org/packages/d0/8e/0c67b7120d5d5f6d874ed85a085f9dc770a7f9d8813e80f44a9fec820bb7/multidict-6.7.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:94218fcec4d72bc61df51c198d098ce2b378e0ccbac41ddbed5ef44092913288", size = 250085, upload-time = "2025-10-06T14:50:15.639Z" }, + { url = "https://files.pythonhosted.org/packages/ba/55/b73e1d624ea4b8fd4dd07a3bb70f6e4c7c6c5d9d640a41c6ffe5cdbd2a55/multidict-6.7.0-cp313-cp313-win32.whl", hash = "sha256:a37bd74c3fa9d00be2d7b8eca074dc56bd8077ddd2917a839bd989612671ed17", size = 41713, upload-time = "2025-10-06T14:50:17.066Z" }, + { url = "https://files.pythonhosted.org/packages/32/31/75c59e7d3b4205075b4c183fa4ca398a2daf2303ddf616b04ae6ef55cffe/multidict-6.7.0-cp313-cp313-win_amd64.whl", hash = "sha256:30d193c6cc6d559db42b6bcec8a5d395d34d60c9877a0b71ecd7c204fcf15390", size = 45915, upload-time = "2025-10-06T14:50:18.264Z" }, + { url = "https://files.pythonhosted.org/packages/31/2a/8987831e811f1184c22bc2e45844934385363ee61c0a2dcfa8f71b87e608/multidict-6.7.0-cp313-cp313-win_arm64.whl", hash = "sha256:ea3334cabe4d41b7ccd01e4d349828678794edbc2d3ae97fc162a3312095092e", size = 43077, upload-time = "2025-10-06T14:50:19.853Z" }, + { url = "https://files.pythonhosted.org/packages/e8/68/7b3a5170a382a340147337b300b9eb25a9ddb573bcdfff19c0fa3f31ffba/multidict-6.7.0-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:ad9ce259f50abd98a1ca0aa6e490b58c316a0fce0617f609723e40804add2c00", size = 83114, upload-time = "2025-10-06T14:50:21.223Z" }, + { url = "https://files.pythonhosted.org/packages/55/5c/3fa2d07c84df4e302060f555bbf539310980362236ad49f50eeb0a1c1eb9/multidict-6.7.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:07f5594ac6d084cbb5de2df218d78baf55ef150b91f0ff8a21cc7a2e3a5a58eb", size = 48442, upload-time = "2025-10-06T14:50:22.871Z" }, + { url = "https://files.pythonhosted.org/packages/fc/56/67212d33239797f9bd91962bb899d72bb0f4c35a8652dcdb8ed049bef878/multidict-6.7.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:0591b48acf279821a579282444814a2d8d0af624ae0bc600aa4d1b920b6e924b", size = 46885, upload-time = "2025-10-06T14:50:24.258Z" }, + { url = "https://files.pythonhosted.org/packages/46/d1/908f896224290350721597a61a69cd19b89ad8ee0ae1f38b3f5cd12ea2ac/multidict-6.7.0-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:749a72584761531d2b9467cfbdfd29487ee21124c304c4b6cb760d8777b27f9c", size = 242588, upload-time = "2025-10-06T14:50:25.716Z" }, + { url = "https://files.pythonhosted.org/packages/ab/67/8604288bbd68680eee0ab568fdcb56171d8b23a01bcd5cb0c8fedf6e5d99/multidict-6.7.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6b4c3d199f953acd5b446bf7c0de1fe25d94e09e79086f8dc2f48a11a129cdf1", size = 249966, upload-time = "2025-10-06T14:50:28.192Z" }, + { url = "https://files.pythonhosted.org/packages/20/33/9228d76339f1ba51e3efef7da3ebd91964d3006217aae13211653193c3ff/multidict-6.7.0-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:9fb0211dfc3b51efea2f349ec92c114d7754dd62c01f81c3e32b765b70c45c9b", size = 228618, upload-time = "2025-10-06T14:50:29.82Z" }, + { url = "https://files.pythonhosted.org/packages/f8/2d/25d9b566d10cab1c42b3b9e5b11ef79c9111eaf4463b8c257a3bd89e0ead/multidict-6.7.0-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:a027ec240fe73a8d6281872690b988eed307cd7d91b23998ff35ff577ca688b5", size = 257539, upload-time = "2025-10-06T14:50:31.731Z" }, + { url = "https://files.pythonhosted.org/packages/b6/b1/8d1a965e6637fc33de3c0d8f414485c2b7e4af00f42cab3d84e7b955c222/multidict-6.7.0-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:d1d964afecdf3a8288789df2f5751dc0a8261138c3768d9af117ed384e538fad", size = 256345, upload-time = "2025-10-06T14:50:33.26Z" }, + { url = "https://files.pythonhosted.org/packages/ba/0c/06b5a8adbdeedada6f4fb8d8f193d44a347223b11939b42953eeb6530b6b/multidict-6.7.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:caf53b15b1b7df9fbd0709aa01409000a2b4dd03a5f6f5cc548183c7c8f8b63c", size = 247934, upload-time = "2025-10-06T14:50:34.808Z" }, + { url = "https://files.pythonhosted.org/packages/8f/31/b2491b5fe167ca044c6eb4b8f2c9f3b8a00b24c432c365358eadac5d7625/multidict-6.7.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:654030da3197d927f05a536a66186070e98765aa5142794c9904555d3a9d8fb5", size = 245243, upload-time = "2025-10-06T14:50:36.436Z" }, + { url = "https://files.pythonhosted.org/packages/61/1a/982913957cb90406c8c94f53001abd9eafc271cb3e70ff6371590bec478e/multidict-6.7.0-cp313-cp313t-musllinux_1_2_armv7l.whl", hash = "sha256:2090d3718829d1e484706a2f525e50c892237b2bf9b17a79b059cb98cddc2f10", size = 235878, upload-time = "2025-10-06T14:50:37.953Z" }, + { url = "https://files.pythonhosted.org/packages/be/c0/21435d804c1a1cf7a2608593f4d19bca5bcbd7a81a70b253fdd1c12af9c0/multidict-6.7.0-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:2d2cfeec3f6f45651b3d408c4acec0ebf3daa9bc8a112a084206f5db5d05b754", size = 243452, upload-time = "2025-10-06T14:50:39.574Z" }, + { url = "https://files.pythonhosted.org/packages/54/0a/4349d540d4a883863191be6eb9a928846d4ec0ea007d3dcd36323bb058ac/multidict-6.7.0-cp313-cp313t-musllinux_1_2_ppc64le.whl", hash = "sha256:4ef089f985b8c194d341eb2c24ae6e7408c9a0e2e5658699c92f497437d88c3c", size = 252312, upload-time = "2025-10-06T14:50:41.612Z" }, + { url = "https://files.pythonhosted.org/packages/26/64/d5416038dbda1488daf16b676e4dbfd9674dde10a0cc8f4fc2b502d8125d/multidict-6.7.0-cp313-cp313t-musllinux_1_2_s390x.whl", hash = "sha256:e93a0617cd16998784bf4414c7e40f17a35d2350e5c6f0bd900d3a8e02bd3762", size = 246935, upload-time = "2025-10-06T14:50:43.972Z" }, + { url = "https://files.pythonhosted.org/packages/9f/8c/8290c50d14e49f35e0bd4abc25e1bc7711149ca9588ab7d04f886cdf03d9/multidict-6.7.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:f0feece2ef8ebc42ed9e2e8c78fc4aa3cf455733b507c09ef7406364c94376c6", size = 243385, upload-time = "2025-10-06T14:50:45.648Z" }, + { url = "https://files.pythonhosted.org/packages/ef/a0/f83ae75e42d694b3fbad3e047670e511c138be747bc713cf1b10d5096416/multidict-6.7.0-cp313-cp313t-win32.whl", hash = "sha256:19a1d55338ec1be74ef62440ca9e04a2f001a04d0cc49a4983dc320ff0f3212d", size = 47777, upload-time = "2025-10-06T14:50:47.154Z" }, + { url = "https://files.pythonhosted.org/packages/dc/80/9b174a92814a3830b7357307a792300f42c9e94664b01dee8e457551fa66/multidict-6.7.0-cp313-cp313t-win_amd64.whl", hash = "sha256:3da4fb467498df97e986af166b12d01f05d2e04f978a9c1c680ea1988e0bc4b6", size = 53104, upload-time = "2025-10-06T14:50:48.851Z" }, + { url = "https://files.pythonhosted.org/packages/cc/28/04baeaf0428d95bb7a7bea0e691ba2f31394338ba424fb0679a9ed0f4c09/multidict-6.7.0-cp313-cp313t-win_arm64.whl", hash = "sha256:b4121773c49a0776461f4a904cdf6264c88e42218aaa8407e803ca8025872792", size = 45503, upload-time = "2025-10-06T14:50:50.16Z" }, + { url = "https://files.pythonhosted.org/packages/e2/b1/3da6934455dd4b261d4c72f897e3a5728eba81db59959f3a639245891baa/multidict-6.7.0-cp314-cp314-macosx_10_13_universal2.whl", hash = "sha256:3bab1e4aff7adaa34410f93b1f8e57c4b36b9af0426a76003f441ee1d3c7e842", size = 75128, upload-time = "2025-10-06T14:50:51.92Z" }, + { url = "https://files.pythonhosted.org/packages/14/2c/f069cab5b51d175a1a2cb4ccdf7a2c2dabd58aa5bd933fa036a8d15e2404/multidict-6.7.0-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:b8512bac933afc3e45fb2b18da8e59b78d4f408399a960339598374d4ae3b56b", size = 44410, upload-time = "2025-10-06T14:50:53.275Z" }, + { url = "https://files.pythonhosted.org/packages/42/e2/64bb41266427af6642b6b128e8774ed84c11b80a90702c13ac0a86bb10cc/multidict-6.7.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:79dcf9e477bc65414ebfea98ffd013cb39552b5ecd62908752e0e413d6d06e38", size = 43205, upload-time = "2025-10-06T14:50:54.911Z" }, + { url = "https://files.pythonhosted.org/packages/02/68/6b086fef8a3f1a8541b9236c594f0c9245617c29841f2e0395d979485cde/multidict-6.7.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:31bae522710064b5cbeddaf2e9f32b1abab70ac6ac91d42572502299e9953128", size = 245084, upload-time = "2025-10-06T14:50:56.369Z" }, + { url = "https://files.pythonhosted.org/packages/15/ee/f524093232007cd7a75c1d132df70f235cfd590a7c9eaccd7ff422ef4ae8/multidict-6.7.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:4a0df7ff02397bb63e2fd22af2c87dfa39e8c7f12947bc524dbdc528282c7e34", size = 252667, upload-time = "2025-10-06T14:50:57.991Z" }, + { url = "https://files.pythonhosted.org/packages/02/a5/eeb3f43ab45878f1895118c3ef157a480db58ede3f248e29b5354139c2c9/multidict-6.7.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:7a0222514e8e4c514660e182d5156a415c13ef0aabbd71682fc714e327b95e99", size = 233590, upload-time = "2025-10-06T14:50:59.589Z" }, + { url = "https://files.pythonhosted.org/packages/6a/1e/76d02f8270b97269d7e3dbd45644b1785bda457b474315f8cf999525a193/multidict-6.7.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:2397ab4daaf2698eb51a76721e98db21ce4f52339e535725de03ea962b5a3202", size = 264112, upload-time = "2025-10-06T14:51:01.183Z" }, + { url = "https://files.pythonhosted.org/packages/76/0b/c28a70ecb58963847c2a8efe334904cd254812b10e535aefb3bcce513918/multidict-6.7.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:8891681594162635948a636c9fe0ff21746aeb3dd5463f6e25d9bea3a8a39ca1", size = 261194, upload-time = "2025-10-06T14:51:02.794Z" }, + { url = "https://files.pythonhosted.org/packages/b4/63/2ab26e4209773223159b83aa32721b4021ffb08102f8ac7d689c943fded1/multidict-6.7.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:18706cc31dbf402a7945916dd5cddf160251b6dab8a2c5f3d6d5a55949f676b3", size = 248510, upload-time = "2025-10-06T14:51:04.724Z" }, + { url = "https://files.pythonhosted.org/packages/93/cd/06c1fa8282af1d1c46fd55c10a7930af652afdce43999501d4d68664170c/multidict-6.7.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:f844a1bbf1d207dd311a56f383f7eda2d0e134921d45751842d8235e7778965d", size = 248395, upload-time = "2025-10-06T14:51:06.306Z" }, + { url = "https://files.pythonhosted.org/packages/99/ac/82cb419dd6b04ccf9e7e61befc00c77614fc8134362488b553402ecd55ce/multidict-6.7.0-cp314-cp314-musllinux_1_2_armv7l.whl", hash = "sha256:d4393e3581e84e5645506923816b9cc81f5609a778c7e7534054091acc64d1c6", size = 239520, upload-time = "2025-10-06T14:51:08.091Z" }, + { url = "https://files.pythonhosted.org/packages/fa/f3/a0f9bf09493421bd8716a362e0cd1d244f5a6550f5beffdd6b47e885b331/multidict-6.7.0-cp314-cp314-musllinux_1_2_i686.whl", hash = "sha256:fbd18dc82d7bf274b37aa48d664534330af744e03bccf696d6f4c6042e7d19e7", size = 245479, upload-time = "2025-10-06T14:51:10.365Z" }, + { url = "https://files.pythonhosted.org/packages/8d/01/476d38fc73a212843f43c852b0eee266b6971f0e28329c2184a8df90c376/multidict-6.7.0-cp314-cp314-musllinux_1_2_ppc64le.whl", hash = "sha256:b6234e14f9314731ec45c42fc4554b88133ad53a09092cc48a88e771c125dadb", size = 258903, upload-time = "2025-10-06T14:51:12.466Z" }, + { url = "https://files.pythonhosted.org/packages/49/6d/23faeb0868adba613b817d0e69c5f15531b24d462af8012c4f6de4fa8dc3/multidict-6.7.0-cp314-cp314-musllinux_1_2_s390x.whl", hash = "sha256:08d4379f9744d8f78d98c8673c06e202ffa88296f009c71bbafe8a6bf847d01f", size = 252333, upload-time = "2025-10-06T14:51:14.48Z" }, + { url = "https://files.pythonhosted.org/packages/1e/cc/48d02ac22b30fa247f7dad82866e4b1015431092f4ba6ebc7e77596e0b18/multidict-6.7.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:9fe04da3f79387f450fd0061d4dd2e45a72749d31bf634aecc9e27f24fdc4b3f", size = 243411, upload-time = "2025-10-06T14:51:16.072Z" }, + { url = "https://files.pythonhosted.org/packages/4a/03/29a8bf5a18abf1fe34535c88adbdfa88c9fb869b5a3b120692c64abe8284/multidict-6.7.0-cp314-cp314-win32.whl", hash = "sha256:fbafe31d191dfa7c4c51f7a6149c9fb7e914dcf9ffead27dcfd9f1ae382b3885", size = 40940, upload-time = "2025-10-06T14:51:17.544Z" }, + { url = "https://files.pythonhosted.org/packages/82/16/7ed27b680791b939de138f906d5cf2b4657b0d45ca6f5dd6236fdddafb1a/multidict-6.7.0-cp314-cp314-win_amd64.whl", hash = "sha256:2f67396ec0310764b9222a1728ced1ab638f61aadc6226f17a71dd9324f9a99c", size = 45087, upload-time = "2025-10-06T14:51:18.875Z" }, + { url = "https://files.pythonhosted.org/packages/cd/3c/e3e62eb35a1950292fe39315d3c89941e30a9d07d5d2df42965ab041da43/multidict-6.7.0-cp314-cp314-win_arm64.whl", hash = "sha256:ba672b26069957ee369cfa7fc180dde1fc6f176eaf1e6beaf61fbebbd3d9c000", size = 42368, upload-time = "2025-10-06T14:51:20.225Z" }, + { url = "https://files.pythonhosted.org/packages/8b/40/cd499bd0dbc5f1136726db3153042a735fffd0d77268e2ee20d5f33c010f/multidict-6.7.0-cp314-cp314t-macosx_10_13_universal2.whl", hash = "sha256:c1dcc7524066fa918c6a27d61444d4ee7900ec635779058571f70d042d86ed63", size = 82326, upload-time = "2025-10-06T14:51:21.588Z" }, + { url = "https://files.pythonhosted.org/packages/13/8a/18e031eca251c8df76daf0288e6790561806e439f5ce99a170b4af30676b/multidict-6.7.0-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:27e0b36c2d388dc7b6ced3406671b401e84ad7eb0656b8f3a2f46ed0ce483718", size = 48065, upload-time = "2025-10-06T14:51:22.93Z" }, + { url = "https://files.pythonhosted.org/packages/40/71/5e6701277470a87d234e433fb0a3a7deaf3bcd92566e421e7ae9776319de/multidict-6.7.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:2a7baa46a22e77f0988e3b23d4ede5513ebec1929e34ee9495be535662c0dfe2", size = 46475, upload-time = "2025-10-06T14:51:24.352Z" }, + { url = "https://files.pythonhosted.org/packages/fe/6a/bab00cbab6d9cfb57afe1663318f72ec28289ea03fd4e8236bb78429893a/multidict-6.7.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:7bf77f54997a9166a2f5675d1201520586439424c2511723a7312bdb4bcc034e", size = 239324, upload-time = "2025-10-06T14:51:25.822Z" }, + { url = "https://files.pythonhosted.org/packages/2a/5f/8de95f629fc22a7769ade8b41028e3e5a822c1f8904f618d175945a81ad3/multidict-6.7.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e011555abada53f1578d63389610ac8a5400fc70ce71156b0aa30d326f1a5064", size = 246877, upload-time = "2025-10-06T14:51:27.604Z" }, + { url = "https://files.pythonhosted.org/packages/23/b4/38881a960458f25b89e9f4a4fdcb02ac101cfa710190db6e5528841e67de/multidict-6.7.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:28b37063541b897fd6a318007373930a75ca6d6ac7c940dbe14731ffdd8d498e", size = 225824, upload-time = "2025-10-06T14:51:29.664Z" }, + { url = "https://files.pythonhosted.org/packages/1e/39/6566210c83f8a261575f18e7144736059f0c460b362e96e9cf797a24b8e7/multidict-6.7.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:05047ada7a2fde2631a0ed706f1fd68b169a681dfe5e4cf0f8e4cb6618bbc2cd", size = 253558, upload-time = "2025-10-06T14:51:31.684Z" }, + { url = "https://files.pythonhosted.org/packages/00/a3/67f18315100f64c269f46e6c0319fa87ba68f0f64f2b8e7fd7c72b913a0b/multidict-6.7.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:716133f7d1d946a4e1b91b1756b23c088881e70ff180c24e864c26192ad7534a", size = 252339, upload-time = "2025-10-06T14:51:33.699Z" }, + { url = "https://files.pythonhosted.org/packages/c8/2a/1cb77266afee2458d82f50da41beba02159b1d6b1f7973afc9a1cad1499b/multidict-6.7.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:d1bed1b467ef657f2a0ae62844a607909ef1c6889562de5e1d505f74457d0b96", size = 244895, upload-time = "2025-10-06T14:51:36.189Z" }, + { url = "https://files.pythonhosted.org/packages/dd/72/09fa7dd487f119b2eb9524946ddd36e2067c08510576d43ff68469563b3b/multidict-6.7.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:ca43bdfa5d37bd6aee89d85e1d0831fb86e25541be7e9d376ead1b28974f8e5e", size = 241862, upload-time = "2025-10-06T14:51:41.291Z" }, + { url = "https://files.pythonhosted.org/packages/65/92/bc1f8bd0853d8669300f732c801974dfc3702c3eeadae2f60cef54dc69d7/multidict-6.7.0-cp314-cp314t-musllinux_1_2_armv7l.whl", hash = "sha256:44b546bd3eb645fd26fb949e43c02a25a2e632e2ca21a35e2e132c8105dc8599", size = 232376, upload-time = "2025-10-06T14:51:43.55Z" }, + { url = "https://files.pythonhosted.org/packages/09/86/ac39399e5cb9d0c2ac8ef6e10a768e4d3bc933ac808d49c41f9dc23337eb/multidict-6.7.0-cp314-cp314t-musllinux_1_2_i686.whl", hash = "sha256:a6ef16328011d3f468e7ebc326f24c1445f001ca1dec335b2f8e66bed3006394", size = 240272, upload-time = "2025-10-06T14:51:45.265Z" }, + { url = "https://files.pythonhosted.org/packages/3d/b6/fed5ac6b8563ec72df6cb1ea8dac6d17f0a4a1f65045f66b6d3bf1497c02/multidict-6.7.0-cp314-cp314t-musllinux_1_2_ppc64le.whl", hash = "sha256:5aa873cbc8e593d361ae65c68f85faadd755c3295ea2c12040ee146802f23b38", size = 248774, upload-time = "2025-10-06T14:51:46.836Z" }, + { url = "https://files.pythonhosted.org/packages/6b/8d/b954d8c0dc132b68f760aefd45870978deec6818897389dace00fcde32ff/multidict-6.7.0-cp314-cp314t-musllinux_1_2_s390x.whl", hash = "sha256:3d7b6ccce016e29df4b7ca819659f516f0bc7a4b3efa3bb2012ba06431b044f9", size = 242731, upload-time = "2025-10-06T14:51:48.541Z" }, + { url = "https://files.pythonhosted.org/packages/16/9d/a2dac7009125d3540c2f54e194829ea18ac53716c61b655d8ed300120b0f/multidict-6.7.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:171b73bd4ee683d307599b66793ac80981b06f069b62eea1c9e29c9241aa66b0", size = 240193, upload-time = "2025-10-06T14:51:50.355Z" }, + { url = "https://files.pythonhosted.org/packages/39/ca/c05f144128ea232ae2178b008d5011d4e2cea86e4ee8c85c2631b1b94802/multidict-6.7.0-cp314-cp314t-win32.whl", hash = "sha256:b2d7f80c4e1fd010b07cb26820aae86b7e73b681ee4889684fb8d2d4537aab13", size = 48023, upload-time = "2025-10-06T14:51:51.883Z" }, + { url = "https://files.pythonhosted.org/packages/ba/8f/0a60e501584145588be1af5cc829265701ba3c35a64aec8e07cbb71d39bb/multidict-6.7.0-cp314-cp314t-win_amd64.whl", hash = "sha256:09929cab6fcb68122776d575e03c6cc64ee0b8fca48d17e135474b042ce515cd", size = 53507, upload-time = "2025-10-06T14:51:53.672Z" }, + { url = "https://files.pythonhosted.org/packages/7f/ae/3148b988a9c6239903e786eac19c889fab607c31d6efa7fb2147e5680f23/multidict-6.7.0-cp314-cp314t-win_arm64.whl", hash = "sha256:cc41db090ed742f32bd2d2c721861725e6109681eddf835d0a82bd3a5c382827", size = 44804, upload-time = "2025-10-06T14:51:55.415Z" }, + { url = "https://files.pythonhosted.org/packages/b7/da/7d22601b625e241d4f23ef1ebff8acfc60da633c9e7e7922e24d10f592b3/multidict-6.7.0-py3-none-any.whl", hash = "sha256:394fc5c42a333c9ffc3e421a4c85e08580d990e08b99f6bf35b4132114c5dcb3", size = 12317, upload-time = "2025-10-06T14:52:29.272Z" }, ] [[package]] @@ -6467,11 +5809,11 @@ wheels = [ [[package]] name = "narwhals" -version = "1.42.0" +version = "2.13.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/a2/7e/9484c2427453bd0024fd36cf7923de4367d749f0b216b9ca56b9dfc3c516/narwhals-1.42.0.tar.gz", hash = "sha256:a5e554782446d1197593312651352cd39b2025e995053d8e6bdfaa01a70a91d3", size = 490671, upload-time = "2025-06-09T09:20:27.794Z" } +sdist = { url = "https://files.pythonhosted.org/packages/89/ea/f82ef99ced4d03c33bb314c9b84a08a0a86c448aaa11ffd6256b99538aa5/narwhals-2.13.0.tar.gz", hash = "sha256:ee94c97f4cf7cfeebbeca8d274784df8b3d7fd3f955ce418af998d405576fdd9", size = 594555, upload-time = "2025-12-01T13:54:05.329Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/8d/0f/f9ae7c8c55f9078c852b13ea4a6e92e5f4d6d4c8fc0781ec2882957006bb/narwhals-1.42.0-py3-none-any.whl", hash = "sha256:ef6cedf7700dc22c09d17973b9ede11b53e25331e238b24ac73884a8c5e27c19", size = 359033, upload-time = "2025-06-09T09:20:25.668Z" }, + { url = "https://files.pythonhosted.org/packages/87/0d/1861d1599571974b15b025e12b142d8e6b42ad66c8a07a89cb0fc21f1e03/narwhals-2.13.0-py3-none-any.whl", hash = "sha256:9b795523c179ca78204e3be53726da374168f906e38de2ff174c2363baaaf481", size = 426407, upload-time = "2025-12-01T13:54:03.861Z" }, ] [[package]] @@ -6531,7 +5873,7 @@ wheels = [ [[package]] name = "nbsphinx" -version = "0.9.7" +version = "0.9.8" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "docutils" }, @@ -6541,9 +5883,9 @@ dependencies = [ { name = "sphinx" }, { name = "traitlets" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/1e/84/b1856b7651ac34e965aa567a158714c7f3bd42a1b1ce76bf423ffb99872c/nbsphinx-0.9.7.tar.gz", hash = "sha256:abd298a686d55fa894ef697c51d44f24e53aa312dadae38e82920f250a5456fe", size = 180479, upload-time = "2025-03-03T19:46:08.069Z" } +sdist = { url = "https://files.pythonhosted.org/packages/e7/d1/82081750f8a78ad0399c6ed831d42623b891904e8e7b8a75878225cf1dce/nbsphinx-0.9.8.tar.gz", hash = "sha256:d0765908399a8ee2b57be7ae881cf2ea58d66db3af7bbf33e6eb48f83bea5495", size = 417469, upload-time = "2025-11-28T17:41:02.336Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/49/2d/8c8e635bcc6757573d311bb3c5445426382f280da32b8cd6d82d501ef4a4/nbsphinx-0.9.7-py3-none-any.whl", hash = "sha256:7292c3767fea29e405c60743eee5393682a83982ab202ff98f5eb2db02629da8", size = 31660, upload-time = "2025-03-03T19:46:06.581Z" }, + { url = "https://files.pythonhosted.org/packages/03/78/843bcf0cf31f88d2f8a9a063d2d80817b1901657d83d65b89b3aa835732e/nbsphinx-0.9.8-py3-none-any.whl", hash = "sha256:92d95ee91784e56bc633b60b767a6b6f23a0445f891e24641ce3c3f004759ccf", size = 31961, upload-time = "2025-11-28T17:41:00.796Z" }, ] [[package]] @@ -6557,564 +5899,11 @@ wheels = [ [[package]] name = "networkx" -version = "3.4.2" +version = "3.6" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", -] -sdist = { url = "https://files.pythonhosted.org/packages/fd/1d/06475e1cd5264c0b870ea2cc6fdb3e37177c1e565c43f56ff17a10e3937f/networkx-3.4.2.tar.gz", hash = "sha256:307c3669428c5362aab27c8a1260aa8f47c4e91d3891f48be0141738d8d053e1", size = 2151368, upload-time = "2024-10-21T12:39:38.695Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/b9/54/dd730b32ea14ea797530a4479b2ed46a6fb250f682a9cfb997e968bf0261/networkx-3.4.2-py3-none-any.whl", hash = "sha256:df5d4365b724cf81b8c6a7312509d0c22386097011ad1abe274afd5e9d3bbc5f", size = 1723263, upload-time = "2024-10-21T12:39:36.247Z" }, -] - -[[package]] -name = "networkx" -version = "3.5" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", -] -sdist = { url = "https://files.pythonhosted.org/packages/6c/4f/ccdb8ad3a38e583f214547fd2f7ff1fc160c43a75af88e6aec213404b96a/networkx-3.5.tar.gz", hash = "sha256:d4c6f9cf81f52d69230866796b82afbccdec3db7ae4fbd1b65ea750feed50037", size = 2471065, upload-time = "2025-05-29T11:35:07.804Z" } +sdist = { url = "https://files.pythonhosted.org/packages/e8/fc/7b6fd4d22c8c4dc5704430140d8b3f520531d4fe7328b8f8d03f5a7950e8/networkx-3.6.tar.gz", hash = "sha256:285276002ad1f7f7da0f7b42f004bcba70d381e936559166363707fdad3d72ad", size = 2511464, upload-time = "2025-11-24T03:03:47.158Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/eb/8d/776adee7bbf76365fdd7f2552710282c79a4ead5d2a46408c9043a2b70ba/networkx-3.5-py3-none-any.whl", hash = "sha256:0030d386a9a06dee3565298b4a734b68589749a544acbb6c412dc9e2489ec6ec", size = 2034406, upload-time = "2025-05-29T11:35:04.961Z" }, + { url = "https://files.pythonhosted.org/packages/07/c7/d64168da60332c17d24c0d2f08bdf3987e8d1ae9d84b5bbd0eec2eb26a55/networkx-3.6-py3-none-any.whl", hash = "sha256:cdb395b105806062473d3be36458d8f1459a4e4b98e236a66c3a48996e07684f", size = 2063713, upload-time = "2025-11-24T03:03:45.21Z" }, ] [[package]] @@ -7128,34 +5917,29 @@ wheels = [ [[package]] name = "numba" -version = "0.61.2" +version = "0.62.1" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "llvmlite" }, - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" } }, -] -sdist = { url = "https://files.pythonhosted.org/packages/1c/a0/e21f57604304aa03ebb8e098429222722ad99176a4f979d34af1d1ee80da/numba-0.61.2.tar.gz", hash = "sha256:8750ee147940a6637b80ecf7f95062185ad8726c8c28a2295b8ec1160a196f7d", size = 2820615, upload-time = "2025-04-09T02:58:07.659Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/eb/ca/f470be59552ccbf9531d2d383b67ae0b9b524d435fb4a0d229fef135116e/numba-0.61.2-cp310-cp310-macosx_10_14_x86_64.whl", hash = "sha256:cf9f9fc00d6eca0c23fc840817ce9f439b9f03c8f03d6246c0e7f0cb15b7162a", size = 2775663, upload-time = "2025-04-09T02:57:34.143Z" }, - { url = "https://files.pythonhosted.org/packages/f5/13/3bdf52609c80d460a3b4acfb9fdb3817e392875c0d6270cf3fd9546f138b/numba-0.61.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ea0247617edcb5dd61f6106a56255baab031acc4257bddaeddb3a1003b4ca3fd", size = 2778344, upload-time = "2025-04-09T02:57:36.609Z" }, - { url = "https://files.pythonhosted.org/packages/e2/7d/bfb2805bcfbd479f04f835241ecf28519f6e3609912e3a985aed45e21370/numba-0.61.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:ae8c7a522c26215d5f62ebec436e3d341f7f590079245a2f1008dfd498cc1642", size = 3824054, upload-time = "2025-04-09T02:57:38.162Z" }, - { url = "https://files.pythonhosted.org/packages/e3/27/797b2004745c92955470c73c82f0e300cf033c791f45bdecb4b33b12bdea/numba-0.61.2-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:bd1e74609855aa43661edffca37346e4e8462f6903889917e9f41db40907daa2", size = 3518531, upload-time = "2025-04-09T02:57:39.709Z" }, - { url = "https://files.pythonhosted.org/packages/b1/c6/c2fb11e50482cb310afae87a997707f6c7d8a48967b9696271347441f650/numba-0.61.2-cp310-cp310-win_amd64.whl", hash = "sha256:ae45830b129c6137294093b269ef0a22998ccc27bf7cf096ab8dcf7bca8946f9", size = 2831612, upload-time = "2025-04-09T02:57:41.559Z" }, - { url = "https://files.pythonhosted.org/packages/3f/97/c99d1056aed767503c228f7099dc11c402906b42a4757fec2819329abb98/numba-0.61.2-cp311-cp311-macosx_10_14_x86_64.whl", hash = "sha256:efd3db391df53aaa5cfbee189b6c910a5b471488749fd6606c3f33fc984c2ae2", size = 2775825, upload-time = "2025-04-09T02:57:43.442Z" }, - { url = "https://files.pythonhosted.org/packages/95/9e/63c549f37136e892f006260c3e2613d09d5120672378191f2dc387ba65a2/numba-0.61.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:49c980e4171948ffebf6b9a2520ea81feed113c1f4890747ba7f59e74be84b1b", size = 2778695, upload-time = "2025-04-09T02:57:44.968Z" }, - { url = "https://files.pythonhosted.org/packages/97/c8/8740616c8436c86c1b9a62e72cb891177d2c34c2d24ddcde4c390371bf4c/numba-0.61.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:3945615cd73c2c7eba2a85ccc9c1730c21cd3958bfcf5a44302abae0fb07bb60", size = 3829227, upload-time = "2025-04-09T02:57:46.63Z" }, - { url = "https://files.pythonhosted.org/packages/fc/06/66e99ae06507c31d15ff3ecd1f108f2f59e18b6e08662cd5f8a5853fbd18/numba-0.61.2-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:bbfdf4eca202cebade0b7d43896978e146f39398909a42941c9303f82f403a18", size = 3523422, upload-time = "2025-04-09T02:57:48.222Z" }, - { url = "https://files.pythonhosted.org/packages/0f/a4/2b309a6a9f6d4d8cfba583401c7c2f9ff887adb5d54d8e2e130274c0973f/numba-0.61.2-cp311-cp311-win_amd64.whl", hash = "sha256:76bcec9f46259cedf888041b9886e257ae101c6268261b19fda8cfbc52bec9d1", size = 2831505, upload-time = "2025-04-09T02:57:50.108Z" }, - { url = "https://files.pythonhosted.org/packages/b4/a0/c6b7b9c615cfa3b98c4c63f4316e3f6b3bbe2387740277006551784218cd/numba-0.61.2-cp312-cp312-macosx_10_14_x86_64.whl", hash = "sha256:34fba9406078bac7ab052efbf0d13939426c753ad72946baaa5bf9ae0ebb8dd2", size = 2776626, upload-time = "2025-04-09T02:57:51.857Z" }, - { url = "https://files.pythonhosted.org/packages/92/4a/fe4e3c2ecad72d88f5f8cd04e7f7cff49e718398a2fac02d2947480a00ca/numba-0.61.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:4ddce10009bc097b080fc96876d14c051cc0c7679e99de3e0af59014dab7dfe8", size = 2779287, upload-time = "2025-04-09T02:57:53.658Z" }, - { url = "https://files.pythonhosted.org/packages/9a/2d/e518df036feab381c23a624dac47f8445ac55686ec7f11083655eb707da3/numba-0.61.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:5b1bb509d01f23d70325d3a5a0e237cbc9544dd50e50588bc581ba860c213546", size = 3885928, upload-time = "2025-04-09T02:57:55.206Z" }, - { url = "https://files.pythonhosted.org/packages/10/0f/23cced68ead67b75d77cfcca3df4991d1855c897ee0ff3fe25a56ed82108/numba-0.61.2-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:48a53a3de8f8793526cbe330f2a39fe9a6638efcbf11bd63f3d2f9757ae345cd", size = 3577115, upload-time = "2025-04-09T02:57:56.818Z" }, - { url = "https://files.pythonhosted.org/packages/68/1d/ddb3e704c5a8fb90142bf9dc195c27db02a08a99f037395503bfbc1d14b3/numba-0.61.2-cp312-cp312-win_amd64.whl", hash = "sha256:97cf4f12c728cf77c9c1d7c23707e4d8fb4632b46275f8f3397de33e5877af18", size = 2831929, upload-time = "2025-04-09T02:57:58.45Z" }, - { url = "https://files.pythonhosted.org/packages/0b/f3/0fe4c1b1f2569e8a18ad90c159298d862f96c3964392a20d74fc628aee44/numba-0.61.2-cp313-cp313-macosx_10_14_x86_64.whl", hash = "sha256:3a10a8fc9afac40b1eac55717cece1b8b1ac0b946f5065c89e00bde646b5b154", size = 2771785, upload-time = "2025-04-09T02:57:59.96Z" }, - { url = "https://files.pythonhosted.org/packages/e9/71/91b277d712e46bd5059f8a5866862ed1116091a7cb03bd2704ba8ebe015f/numba-0.61.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:7d3bcada3c9afba3bed413fba45845f2fb9cd0d2b27dd58a1be90257e293d140", size = 2773289, upload-time = "2025-04-09T02:58:01.435Z" }, - { url = "https://files.pythonhosted.org/packages/0d/e0/5ea04e7ad2c39288c0f0f9e8d47638ad70f28e275d092733b5817cf243c9/numba-0.61.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:bdbca73ad81fa196bd53dc12e3aaf1564ae036e0c125f237c7644fe64a4928ab", size = 3893918, upload-time = "2025-04-09T02:58:02.933Z" }, - { url = "https://files.pythonhosted.org/packages/17/58/064f4dcb7d7e9412f16ecf80ed753f92297e39f399c905389688cf950b81/numba-0.61.2-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:5f154aaea625fb32cfbe3b80c5456d514d416fcdf79733dd69c0df3a11348e9e", size = 3584056, upload-time = "2025-04-09T02:58:04.538Z" }, - { url = "https://files.pythonhosted.org/packages/af/a4/6d3a0f2d3989e62a18749e1e9913d5fa4910bbb3e3311a035baea6caf26d/numba-0.61.2-cp313-cp313-win_amd64.whl", hash = "sha256:59321215e2e0ac5fa928a8020ab00b8e57cda8a97384963ac0dfa4d4e6aa54e7", size = 2831846, upload-time = "2025-04-09T02:58:06.125Z" }, + { name = "numpy", version = "2.1.3", source = { registry = "https://pypi.org/simple" } }, +] +sdist = { url = "https://files.pythonhosted.org/packages/a3/20/33dbdbfe60e5fd8e3dbfde299d106279a33d9f8308346022316781368591/numba-0.62.1.tar.gz", hash = "sha256:7b774242aa890e34c21200a1fc62e5b5757d5286267e71103257f4e2af0d5161", size = 2749817, upload-time = "2025-09-29T10:46:31.551Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/dd/5f/8b3491dd849474f55e33c16ef55678ace1455c490555337899c35826836c/numba-0.62.1-cp311-cp311-macosx_10_15_x86_64.whl", hash = "sha256:f43e24b057714e480fe44bc6031de499e7cf8150c63eb461192caa6cc8530bc8", size = 2684279, upload-time = "2025-09-29T10:43:37.213Z" }, + { url = "https://files.pythonhosted.org/packages/bf/18/71969149bfeb65a629e652b752b80167fe8a6a6f6e084f1f2060801f7f31/numba-0.62.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:57cbddc53b9ee02830b828a8428757f5c218831ccc96490a314ef569d8342b7b", size = 2687330, upload-time = "2025-09-29T10:43:59.601Z" }, + { url = "https://files.pythonhosted.org/packages/0e/7d/403be3fecae33088027bc8a95dc80a2fda1e3beff3e0e5fc4374ada3afbe/numba-0.62.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:604059730c637c7885386521bb1b0ddcbc91fd56131a6dcc54163d6f1804c872", size = 3739727, upload-time = "2025-09-29T10:42:45.922Z" }, + { url = "https://files.pythonhosted.org/packages/e0/c3/3d910d08b659a6d4c62ab3cd8cd93c4d8b7709f55afa0d79a87413027ff6/numba-0.62.1-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d6c540880170bee817011757dc9049dba5a29db0c09b4d2349295991fe3ee55f", size = 3445490, upload-time = "2025-09-29T10:43:12.692Z" }, + { url = "https://files.pythonhosted.org/packages/5b/82/9d425c2f20d9f0a37f7cb955945a553a00fa06a2b025856c3550227c5543/numba-0.62.1-cp311-cp311-win_amd64.whl", hash = "sha256:03de6d691d6b6e2b76660ba0f38f37b81ece8b2cc524a62f2a0cfae2bfb6f9da", size = 2745550, upload-time = "2025-09-29T10:44:20.571Z" }, + { url = "https://files.pythonhosted.org/packages/5e/fa/30fa6873e9f821c0ae755915a3ca444e6ff8d6a7b6860b669a3d33377ac7/numba-0.62.1-cp312-cp312-macosx_10_15_x86_64.whl", hash = "sha256:1b743b32f8fa5fff22e19c2e906db2f0a340782caf024477b97801b918cf0494", size = 2685346, upload-time = "2025-09-29T10:43:43.677Z" }, + { url = "https://files.pythonhosted.org/packages/a9/d5/504ce8dc46e0dba2790c77e6b878ee65b60fe3e7d6d0006483ef6fde5a97/numba-0.62.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:90fa21b0142bcf08ad8e32a97d25d0b84b1e921bc9423f8dda07d3652860eef6", size = 2688139, upload-time = "2025-09-29T10:44:04.894Z" }, + { url = "https://files.pythonhosted.org/packages/50/5f/6a802741176c93f2ebe97ad90751894c7b0c922b52ba99a4395e79492205/numba-0.62.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:6ef84d0ac19f1bf80431347b6f4ce3c39b7ec13f48f233a48c01e2ec06ecbc59", size = 3796453, upload-time = "2025-09-29T10:42:52.771Z" }, + { url = "https://files.pythonhosted.org/packages/7e/df/efd21527d25150c4544eccc9d0b7260a5dec4b7e98b5a581990e05a133c0/numba-0.62.1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:9315cc5e441300e0ca07c828a627d92a6802bcbf27c5487f31ae73783c58da53", size = 3496451, upload-time = "2025-09-29T10:43:19.279Z" }, + { url = "https://files.pythonhosted.org/packages/80/44/79bfdab12a02796bf4f1841630355c82b5a69933b1d50eb15c7fa37dabe8/numba-0.62.1-cp312-cp312-win_amd64.whl", hash = "sha256:44e3aa6228039992f058f5ebfcfd372c83798e9464297bdad8cc79febcf7891e", size = 2745552, upload-time = "2025-09-29T10:44:26.399Z" }, + { url = "https://files.pythonhosted.org/packages/22/76/501ea2c07c089ef1386868f33dff2978f43f51b854e34397b20fc55e0a58/numba-0.62.1-cp313-cp313-macosx_10_15_x86_64.whl", hash = "sha256:b72489ba8411cc9fdcaa2458d8f7677751e94f0109eeb53e5becfdc818c64afb", size = 2685766, upload-time = "2025-09-29T10:43:49.161Z" }, + { url = "https://files.pythonhosted.org/packages/80/68/444986ed95350c0611d5c7b46828411c222ce41a0c76707c36425d27ce29/numba-0.62.1-cp313-cp313-macosx_12_0_arm64.whl", hash = "sha256:44a1412095534a26fb5da2717bc755b57da5f3053965128fe3dc286652cc6a92", size = 2688741, upload-time = "2025-09-29T10:44:10.07Z" }, + { url = "https://files.pythonhosted.org/packages/78/7e/bf2e3634993d57f95305c7cee4c9c6cb3c9c78404ee7b49569a0dfecfe33/numba-0.62.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:8c9460b9e936c5bd2f0570e20a0a5909ee6e8b694fd958b210e3bde3a6dba2d7", size = 3804576, upload-time = "2025-09-29T10:42:59.53Z" }, + { url = "https://files.pythonhosted.org/packages/e8/b6/8a1723fff71f63bbb1354bdc60a1513a068acc0f5322f58da6f022d20247/numba-0.62.1-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:728f91a874192df22d74e3fd42c12900b7ce7190b1aad3574c6c61b08313e4c5", size = 3503367, upload-time = "2025-09-29T10:43:26.326Z" }, + { url = "https://files.pythonhosted.org/packages/9c/ec/9d414e7a80d6d1dc4af0e07c6bfe293ce0b04ea4d0ed6c45dad9bd6e72eb/numba-0.62.1-cp313-cp313-win_amd64.whl", hash = "sha256:bbf3f88b461514287df66bc8d0307e949b09f2b6f67da92265094e8fa1282dd8", size = 2745529, upload-time = "2025-09-29T10:44:31.738Z" }, ] [[package]] @@ -7163,389 +5947,12 @@ name = "numpy" version = "1.26.4" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux'", + "python_full_version == '3.12.*' and sys_platform == 'linux'", + "python_full_version < '3.12' and sys_platform == 'linux'", ] sdist = { url = "https://files.pythonhosted.org/packages/65/6e/09db70a523a96d25e115e71cc56a6f9031e7b8cd166c1ac8438307c14058/numpy-1.26.4.tar.gz", hash = "sha256:2a02aba9ed12e4ac4eb3ea9421c420301a0c6460d9830d74a9df87efa4912010", size = 15786129, upload-time = "2024-02-06T00:26:44.495Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/a7/94/ace0fdea5241a27d13543ee117cbc65868e82213fb31a8eb7fe9ff23f313/numpy-1.26.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:9ff0f4f29c51e2803569d7a51c2304de5554655a60c5d776e35b4a41413830d0", size = 20631468, upload-time = "2024-02-05T23:48:01.194Z" }, - { url = "https://files.pythonhosted.org/packages/20/f7/b24208eba89f9d1b58c1668bc6c8c4fd472b20c45573cb767f59d49fb0f6/numpy-1.26.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2e4ee3380d6de9c9ec04745830fd9e2eccb3e6cf790d39d7b98ffd19b0dd754a", size = 13966411, upload-time = "2024-02-05T23:48:29.038Z" }, - { url = "https://files.pythonhosted.org/packages/fc/a5/4beee6488160798683eed5bdb7eead455892c3b4e1f78d79d8d3f3b084ac/numpy-1.26.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d209d8969599b27ad20994c8e41936ee0964e6da07478d6c35016bc386b66ad4", size = 14219016, upload-time = "2024-02-05T23:48:54.098Z" }, - { url = "https://files.pythonhosted.org/packages/4b/d7/ecf66c1cd12dc28b4040b15ab4d17b773b87fa9d29ca16125de01adb36cd/numpy-1.26.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ffa75af20b44f8dba823498024771d5ac50620e6915abac414251bd971b4529f", size = 18240889, upload-time = "2024-02-05T23:49:25.361Z" }, - { url = "https://files.pythonhosted.org/packages/24/03/6f229fe3187546435c4f6f89f6d26c129d4f5bed40552899fcf1f0bf9e50/numpy-1.26.4-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:62b8e4b1e28009ef2846b4c7852046736bab361f7aeadeb6a5b89ebec3c7055a", size = 13876746, upload-time = "2024-02-05T23:49:51.983Z" }, - { url = "https://files.pythonhosted.org/packages/39/fe/39ada9b094f01f5a35486577c848fe274e374bbf8d8f472e1423a0bbd26d/numpy-1.26.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:a4abb4f9001ad2858e7ac189089c42178fcce737e4169dc61321660f1a96c7d2", size = 18078620, upload-time = "2024-02-05T23:50:22.515Z" }, - { url = "https://files.pythonhosted.org/packages/d5/ef/6ad11d51197aad206a9ad2286dc1aac6a378059e06e8cf22cd08ed4f20dc/numpy-1.26.4-cp310-cp310-win32.whl", hash = "sha256:bfe25acf8b437eb2a8b2d49d443800a5f18508cd811fea3181723922a8a82b07", size = 5972659, upload-time = "2024-02-05T23:50:35.834Z" }, - { url = "https://files.pythonhosted.org/packages/19/77/538f202862b9183f54108557bfda67e17603fc560c384559e769321c9d92/numpy-1.26.4-cp310-cp310-win_amd64.whl", hash = "sha256:b97fe8060236edf3662adfc2c633f56a08ae30560c56310562cb4f95500022d5", size = 15808905, upload-time = "2024-02-05T23:51:03.701Z" }, { url = "https://files.pythonhosted.org/packages/11/57/baae43d14fe163fa0e4c47f307b6b2511ab8d7d30177c491960504252053/numpy-1.26.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:4c66707fabe114439db9068ee468c26bbdf909cac0fb58686a42a24de1760c71", size = 20630554, upload-time = "2024-02-05T23:51:50.149Z" }, { url = "https://files.pythonhosted.org/packages/1a/2e/151484f49fd03944c4a3ad9c418ed193cfd02724e138ac8a9505d056c582/numpy-1.26.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:edd8b5fe47dab091176d21bb6de568acdd906d1887a4584a15a9a96a1dca06ef", size = 13997127, upload-time = "2024-02-05T23:52:15.314Z" }, { url = "https://files.pythonhosted.org/packages/79/ae/7e5b85136806f9dadf4878bf73cf223fe5c2636818ba3ab1c585d0403164/numpy-1.26.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7ab55401287bfec946ced39700c053796e7cc0e3acbef09993a9ad2adba6ca6e", size = 14222994, upload-time = "2024-02-05T23:52:47.569Z" }, @@ -7566,248 +5973,481 @@ wheels = [ [[package]] name = "numpy" -version = "2.2.6" +version = "2.1.3" source = { registry = "https://pypi.org/simple" } resolution-markers = [ + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", -] -sdist = { url = "https://files.pythonhosted.org/packages/76/21/7d2a95e4bba9dc13d043ee156a356c0a8f0c6309dff6b21b4d71a073b8a8/numpy-2.2.6.tar.gz", hash = "sha256:e29554e2bef54a90aa5cc07da6ce955accb83f21ab5de01a62c8478897b264fd", size = 20276440, upload-time = "2025-05-17T22:38:04.611Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/9a/3e/ed6db5be21ce87955c0cbd3009f2803f59fa08df21b5df06862e2d8e2bdd/numpy-2.2.6-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:b412caa66f72040e6d268491a59f2c43bf03eb6c96dd8f0307829feb7fa2b6fb", size = 21165245, upload-time = "2025-05-17T21:27:58.555Z" }, - { url = "https://files.pythonhosted.org/packages/22/c2/4b9221495b2a132cc9d2eb862e21d42a009f5a60e45fc44b00118c174bff/numpy-2.2.6-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8e41fd67c52b86603a91c1a505ebaef50b3314de0213461c7a6e99c9a3beff90", size = 14360048, upload-time = "2025-05-17T21:28:21.406Z" }, - { url = "https://files.pythonhosted.org/packages/fd/77/dc2fcfc66943c6410e2bf598062f5959372735ffda175b39906d54f02349/numpy-2.2.6-cp310-cp310-macosx_14_0_arm64.whl", hash = "sha256:37e990a01ae6ec7fe7fa1c26c55ecb672dd98b19c3d0e1d1f326fa13cb38d163", size = 5340542, upload-time = "2025-05-17T21:28:30.931Z" }, - { url = "https://files.pythonhosted.org/packages/7a/4f/1cb5fdc353a5f5cc7feb692db9b8ec2c3d6405453f982435efc52561df58/numpy-2.2.6-cp310-cp310-macosx_14_0_x86_64.whl", hash = "sha256:5a6429d4be8ca66d889b7cf70f536a397dc45ba6faeb5f8c5427935d9592e9cf", size = 6878301, upload-time = "2025-05-17T21:28:41.613Z" }, - { url = "https://files.pythonhosted.org/packages/eb/17/96a3acd228cec142fcb8723bd3cc39c2a474f7dcf0a5d16731980bcafa95/numpy-2.2.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:efd28d4e9cd7d7a8d39074a4d44c63eda73401580c5c76acda2ce969e0a38e83", size = 14297320, upload-time = "2025-05-17T21:29:02.78Z" }, - { url = "https://files.pythonhosted.org/packages/b4/63/3de6a34ad7ad6646ac7d2f55ebc6ad439dbbf9c4370017c50cf403fb19b5/numpy-2.2.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fc7b73d02efb0e18c000e9ad8b83480dfcd5dfd11065997ed4c6747470ae8915", size = 16801050, upload-time = "2025-05-17T21:29:27.675Z" }, - { url = "https://files.pythonhosted.org/packages/07/b6/89d837eddef52b3d0cec5c6ba0456c1bf1b9ef6a6672fc2b7873c3ec4e2e/numpy-2.2.6-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:74d4531beb257d2c3f4b261bfb0fc09e0f9ebb8842d82a7b4209415896adc680", size = 15807034, upload-time = "2025-05-17T21:29:51.102Z" }, - { url = "https://files.pythonhosted.org/packages/01/c8/dc6ae86e3c61cfec1f178e5c9f7858584049b6093f843bca541f94120920/numpy-2.2.6-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8fc377d995680230e83241d8a96def29f204b5782f371c532579b4f20607a289", size = 18614185, upload-time = "2025-05-17T21:30:18.703Z" }, - { url = "https://files.pythonhosted.org/packages/5b/c5/0064b1b7e7c89137b471ccec1fd2282fceaae0ab3a9550f2568782d80357/numpy-2.2.6-cp310-cp310-win32.whl", hash = "sha256:b093dd74e50a8cba3e873868d9e93a85b78e0daf2e98c6797566ad8044e8363d", size = 6527149, upload-time = "2025-05-17T21:30:29.788Z" }, - { url = "https://files.pythonhosted.org/packages/a3/dd/4b822569d6b96c39d1215dbae0582fd99954dcbcf0c1a13c61783feaca3f/numpy-2.2.6-cp310-cp310-win_amd64.whl", hash = "sha256:f0fd6321b839904e15c46e0d257fdd101dd7f530fe03fd6359c1ea63738703f3", size = 12904620, upload-time = "2025-05-17T21:30:48.994Z" }, - { url = "https://files.pythonhosted.org/packages/da/a8/4f83e2aa666a9fbf56d6118faaaf5f1974d456b1823fda0a176eff722839/numpy-2.2.6-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:f9f1adb22318e121c5c69a09142811a201ef17ab257a1e66ca3025065b7f53ae", size = 21176963, upload-time = "2025-05-17T21:31:19.36Z" }, - { url = "https://files.pythonhosted.org/packages/b3/2b/64e1affc7972decb74c9e29e5649fac940514910960ba25cd9af4488b66c/numpy-2.2.6-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:c820a93b0255bc360f53eca31a0e676fd1101f673dda8da93454a12e23fc5f7a", size = 14406743, upload-time = "2025-05-17T21:31:41.087Z" }, - { url = "https://files.pythonhosted.org/packages/4a/9f/0121e375000b5e50ffdd8b25bf78d8e1a5aa4cca3f185d41265198c7b834/numpy-2.2.6-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:3d70692235e759f260c3d837193090014aebdf026dfd167834bcba43e30c2a42", size = 5352616, upload-time = "2025-05-17T21:31:50.072Z" }, - { url = "https://files.pythonhosted.org/packages/31/0d/b48c405c91693635fbe2dcd7bc84a33a602add5f63286e024d3b6741411c/numpy-2.2.6-cp311-cp311-macosx_14_0_x86_64.whl", hash = "sha256:481b49095335f8eed42e39e8041327c05b0f6f4780488f61286ed3c01368d491", size = 6889579, upload-time = "2025-05-17T21:32:01.712Z" }, - { url = "https://files.pythonhosted.org/packages/52/b8/7f0554d49b565d0171eab6e99001846882000883998e7b7d9f0d98b1f934/numpy-2.2.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b64d8d4d17135e00c8e346e0a738deb17e754230d7e0810ac5012750bbd85a5a", size = 14312005, upload-time = "2025-05-17T21:32:23.332Z" }, - { url = "https://files.pythonhosted.org/packages/b3/dd/2238b898e51bd6d389b7389ffb20d7f4c10066d80351187ec8e303a5a475/numpy-2.2.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba10f8411898fc418a521833e014a77d3ca01c15b0c6cdcce6a0d2897e6dbbdf", size = 16821570, upload-time = "2025-05-17T21:32:47.991Z" }, - { url = "https://files.pythonhosted.org/packages/83/6c/44d0325722cf644f191042bf47eedad61c1e6df2432ed65cbe28509d404e/numpy-2.2.6-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:bd48227a919f1bafbdda0583705e547892342c26fb127219d60a5c36882609d1", size = 15818548, upload-time = "2025-05-17T21:33:11.728Z" }, - { url = "https://files.pythonhosted.org/packages/ae/9d/81e8216030ce66be25279098789b665d49ff19eef08bfa8cb96d4957f422/numpy-2.2.6-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:9551a499bf125c1d4f9e250377c1ee2eddd02e01eac6644c080162c0c51778ab", size = 18620521, upload-time = "2025-05-17T21:33:39.139Z" }, - { url = "https://files.pythonhosted.org/packages/6a/fd/e19617b9530b031db51b0926eed5345ce8ddc669bb3bc0044b23e275ebe8/numpy-2.2.6-cp311-cp311-win32.whl", hash = "sha256:0678000bb9ac1475cd454c6b8c799206af8107e310843532b04d49649c717a47", size = 6525866, upload-time = "2025-05-17T21:33:50.273Z" }, - { url = "https://files.pythonhosted.org/packages/31/0a/f354fb7176b81747d870f7991dc763e157a934c717b67b58456bc63da3df/numpy-2.2.6-cp311-cp311-win_amd64.whl", hash = "sha256:e8213002e427c69c45a52bbd94163084025f533a55a59d6f9c5b820774ef3303", size = 12907455, upload-time = "2025-05-17T21:34:09.135Z" }, - { url = "https://files.pythonhosted.org/packages/82/5d/c00588b6cf18e1da539b45d3598d3557084990dcc4331960c15ee776ee41/numpy-2.2.6-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:41c5a21f4a04fa86436124d388f6ed60a9343a6f767fced1a8a71c3fbca038ff", size = 20875348, upload-time = "2025-05-17T21:34:39.648Z" }, - { url = "https://files.pythonhosted.org/packages/66/ee/560deadcdde6c2f90200450d5938f63a34b37e27ebff162810f716f6a230/numpy-2.2.6-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:de749064336d37e340f640b05f24e9e3dd678c57318c7289d222a8a2f543e90c", size = 14119362, upload-time = "2025-05-17T21:35:01.241Z" }, - { url = "https://files.pythonhosted.org/packages/3c/65/4baa99f1c53b30adf0acd9a5519078871ddde8d2339dc5a7fde80d9d87da/numpy-2.2.6-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:894b3a42502226a1cac872f840030665f33326fc3dac8e57c607905773cdcde3", size = 5084103, upload-time = "2025-05-17T21:35:10.622Z" }, - { url = "https://files.pythonhosted.org/packages/cc/89/e5a34c071a0570cc40c9a54eb472d113eea6d002e9ae12bb3a8407fb912e/numpy-2.2.6-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:71594f7c51a18e728451bb50cc60a3ce4e6538822731b2933209a1f3614e9282", size = 6625382, upload-time = "2025-05-17T21:35:21.414Z" }, - { url = "https://files.pythonhosted.org/packages/f8/35/8c80729f1ff76b3921d5c9487c7ac3de9b2a103b1cd05e905b3090513510/numpy-2.2.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f2618db89be1b4e05f7a1a847a9c1c0abd63e63a1607d892dd54668dd92faf87", size = 14018462, upload-time = "2025-05-17T21:35:42.174Z" }, - { url = "https://files.pythonhosted.org/packages/8c/3d/1e1db36cfd41f895d266b103df00ca5b3cbe965184df824dec5c08c6b803/numpy-2.2.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fd83c01228a688733f1ded5201c678f0c53ecc1006ffbc404db9f7a899ac6249", size = 16527618, upload-time = "2025-05-17T21:36:06.711Z" }, - { url = "https://files.pythonhosted.org/packages/61/c6/03ed30992602c85aa3cd95b9070a514f8b3c33e31124694438d88809ae36/numpy-2.2.6-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:37c0ca431f82cd5fa716eca9506aefcabc247fb27ba69c5062a6d3ade8cf8f49", size = 15505511, upload-time = "2025-05-17T21:36:29.965Z" }, - { url = "https://files.pythonhosted.org/packages/b7/25/5761d832a81df431e260719ec45de696414266613c9ee268394dd5ad8236/numpy-2.2.6-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:fe27749d33bb772c80dcd84ae7e8df2adc920ae8297400dabec45f0dedb3f6de", size = 18313783, upload-time = "2025-05-17T21:36:56.883Z" }, - { url = "https://files.pythonhosted.org/packages/57/0a/72d5a3527c5ebffcd47bde9162c39fae1f90138c961e5296491ce778e682/numpy-2.2.6-cp312-cp312-win32.whl", hash = "sha256:4eeaae00d789f66c7a25ac5f34b71a7035bb474e679f410e5e1a94deb24cf2d4", size = 6246506, upload-time = "2025-05-17T21:37:07.368Z" }, - { url = "https://files.pythonhosted.org/packages/36/fa/8c9210162ca1b88529ab76b41ba02d433fd54fecaf6feb70ef9f124683f1/numpy-2.2.6-cp312-cp312-win_amd64.whl", hash = "sha256:c1f9540be57940698ed329904db803cf7a402f3fc200bfe599334c9bd84a40b2", size = 12614190, upload-time = "2025-05-17T21:37:26.213Z" }, - { url = "https://files.pythonhosted.org/packages/f9/5c/6657823f4f594f72b5471f1db1ab12e26e890bb2e41897522d134d2a3e81/numpy-2.2.6-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:0811bb762109d9708cca4d0b13c4f67146e3c3b7cf8d34018c722adb2d957c84", size = 20867828, upload-time = "2025-05-17T21:37:56.699Z" }, - { url = "https://files.pythonhosted.org/packages/dc/9e/14520dc3dadf3c803473bd07e9b2bd1b69bc583cb2497b47000fed2fa92f/numpy-2.2.6-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:287cc3162b6f01463ccd86be154f284d0893d2b3ed7292439ea97eafa8170e0b", size = 14143006, upload-time = "2025-05-17T21:38:18.291Z" }, - { url = "https://files.pythonhosted.org/packages/4f/06/7e96c57d90bebdce9918412087fc22ca9851cceaf5567a45c1f404480e9e/numpy-2.2.6-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:f1372f041402e37e5e633e586f62aa53de2eac8d98cbfb822806ce4bbefcb74d", size = 5076765, upload-time = "2025-05-17T21:38:27.319Z" }, - { url = "https://files.pythonhosted.org/packages/73/ed/63d920c23b4289fdac96ddbdd6132e9427790977d5457cd132f18e76eae0/numpy-2.2.6-cp313-cp313-macosx_14_0_x86_64.whl", hash = "sha256:55a4d33fa519660d69614a9fad433be87e5252f4b03850642f88993f7b2ca566", size = 6617736, upload-time = "2025-05-17T21:38:38.141Z" }, - { url = "https://files.pythonhosted.org/packages/85/c5/e19c8f99d83fd377ec8c7e0cf627a8049746da54afc24ef0a0cb73d5dfb5/numpy-2.2.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f92729c95468a2f4f15e9bb94c432a9229d0d50de67304399627a943201baa2f", size = 14010719, upload-time = "2025-05-17T21:38:58.433Z" }, - { url = "https://files.pythonhosted.org/packages/19/49/4df9123aafa7b539317bf6d342cb6d227e49f7a35b99c287a6109b13dd93/numpy-2.2.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1bc23a79bfabc5d056d106f9befb8d50c31ced2fbc70eedb8155aec74a45798f", size = 16526072, upload-time = "2025-05-17T21:39:22.638Z" }, - { url = "https://files.pythonhosted.org/packages/b2/6c/04b5f47f4f32f7c2b0e7260442a8cbcf8168b0e1a41ff1495da42f42a14f/numpy-2.2.6-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:e3143e4451880bed956e706a3220b4e5cf6172ef05fcc397f6f36a550b1dd868", size = 15503213, upload-time = "2025-05-17T21:39:45.865Z" }, - { url = "https://files.pythonhosted.org/packages/17/0a/5cd92e352c1307640d5b6fec1b2ffb06cd0dabe7d7b8227f97933d378422/numpy-2.2.6-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:b4f13750ce79751586ae2eb824ba7e1e8dba64784086c98cdbbcc6a42112ce0d", size = 18316632, upload-time = "2025-05-17T21:40:13.331Z" }, - { url = "https://files.pythonhosted.org/packages/f0/3b/5cba2b1d88760ef86596ad0f3d484b1cbff7c115ae2429678465057c5155/numpy-2.2.6-cp313-cp313-win32.whl", hash = "sha256:5beb72339d9d4fa36522fc63802f469b13cdbe4fdab4a288f0c441b74272ebfd", size = 6244532, upload-time = "2025-05-17T21:43:46.099Z" }, - { url = "https://files.pythonhosted.org/packages/cb/3b/d58c12eafcb298d4e6d0d40216866ab15f59e55d148a5658bb3132311fcf/numpy-2.2.6-cp313-cp313-win_amd64.whl", hash = "sha256:b0544343a702fa80c95ad5d3d608ea3599dd54d4632df855e4c8d24eb6ecfa1c", size = 12610885, upload-time = "2025-05-17T21:44:05.145Z" }, - { url = "https://files.pythonhosted.org/packages/6b/9e/4bf918b818e516322db999ac25d00c75788ddfd2d2ade4fa66f1f38097e1/numpy-2.2.6-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:0bca768cd85ae743b2affdc762d617eddf3bcf8724435498a1e80132d04879e6", size = 20963467, upload-time = "2025-05-17T21:40:44Z" }, - { url = "https://files.pythonhosted.org/packages/61/66/d2de6b291507517ff2e438e13ff7b1e2cdbdb7cb40b3ed475377aece69f9/numpy-2.2.6-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:fc0c5673685c508a142ca65209b4e79ed6740a4ed6b2267dbba90f34b0b3cfda", size = 14225144, upload-time = "2025-05-17T21:41:05.695Z" }, - { url = "https://files.pythonhosted.org/packages/e4/25/480387655407ead912e28ba3a820bc69af9adf13bcbe40b299d454ec011f/numpy-2.2.6-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:5bd4fc3ac8926b3819797a7c0e2631eb889b4118a9898c84f585a54d475b7e40", size = 5200217, upload-time = "2025-05-17T21:41:15.903Z" }, - { url = "https://files.pythonhosted.org/packages/aa/4a/6e313b5108f53dcbf3aca0c0f3e9c92f4c10ce57a0a721851f9785872895/numpy-2.2.6-cp313-cp313t-macosx_14_0_x86_64.whl", hash = "sha256:fee4236c876c4e8369388054d02d0e9bb84821feb1a64dd59e137e6511a551f8", size = 6712014, upload-time = "2025-05-17T21:41:27.321Z" }, - { url = "https://files.pythonhosted.org/packages/b7/30/172c2d5c4be71fdf476e9de553443cf8e25feddbe185e0bd88b096915bcc/numpy-2.2.6-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e1dda9c7e08dc141e0247a5b8f49cf05984955246a327d4c48bda16821947b2f", size = 14077935, upload-time = "2025-05-17T21:41:49.738Z" }, - { url = "https://files.pythonhosted.org/packages/12/fb/9e743f8d4e4d3c710902cf87af3512082ae3d43b945d5d16563f26ec251d/numpy-2.2.6-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f447e6acb680fd307f40d3da4852208af94afdfab89cf850986c3ca00562f4fa", size = 16600122, upload-time = "2025-05-17T21:42:14.046Z" }, - { url = "https://files.pythonhosted.org/packages/12/75/ee20da0e58d3a66f204f38916757e01e33a9737d0b22373b3eb5a27358f9/numpy-2.2.6-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:389d771b1623ec92636b0786bc4ae56abafad4a4c513d36a55dce14bd9ce8571", size = 15586143, upload-time = "2025-05-17T21:42:37.464Z" }, - { url = "https://files.pythonhosted.org/packages/76/95/bef5b37f29fc5e739947e9ce5179ad402875633308504a52d188302319c8/numpy-2.2.6-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:8e9ace4a37db23421249ed236fdcdd457d671e25146786dfc96835cd951aa7c1", size = 18385260, upload-time = "2025-05-17T21:43:05.189Z" }, - { url = "https://files.pythonhosted.org/packages/09/04/f2f83279d287407cf36a7a8053a5abe7be3622a4363337338f2585e4afda/numpy-2.2.6-cp313-cp313t-win32.whl", hash = "sha256:038613e9fb8c72b0a41f025a7e4c3f0b7a1b5d768ece4796b674c8f3fe13efff", size = 6377225, upload-time = "2025-05-17T21:43:16.254Z" }, - { url = "https://files.pythonhosted.org/packages/67/0e/35082d13c09c02c011cf21570543d202ad929d961c02a147493cb0c2bdf5/numpy-2.2.6-cp313-cp313t-win_amd64.whl", hash = "sha256:6031dd6dfecc0cf9f668681a37648373bddd6421fff6c66ec1624eed0180ee06", size = 12771374, upload-time = "2025-05-17T21:43:35.479Z" }, - { url = "https://files.pythonhosted.org/packages/9e/3b/d94a75f4dbf1ef5d321523ecac21ef23a3cd2ac8b78ae2aac40873590229/numpy-2.2.6-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:0b605b275d7bd0c640cad4e5d30fa701a8d59302e127e5f79138ad62762c3e3d", size = 21040391, upload-time = "2025-05-17T21:44:35.948Z" }, - { url = "https://files.pythonhosted.org/packages/17/f4/09b2fa1b58f0fb4f7c7963a1649c64c4d315752240377ed74d9cd878f7b5/numpy-2.2.6-pp310-pypy310_pp73-macosx_14_0_x86_64.whl", hash = "sha256:7befc596a7dc9da8a337f79802ee8adb30a552a94f792b9c9d18c840055907db", size = 6786754, upload-time = "2025-05-17T21:44:47.446Z" }, - { url = "https://files.pythonhosted.org/packages/af/30/feba75f143bdc868a1cc3f44ccfa6c4b9ec522b36458e738cd00f67b573f/numpy-2.2.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ce47521a4754c8f4593837384bd3424880629f718d87c5d44f8ed763edd63543", size = 16643476, upload-time = "2025-05-17T21:45:11.871Z" }, - { url = "https://files.pythonhosted.org/packages/37/48/ac2a9584402fb6c0cd5b5d1a91dcf176b15760130dd386bbafdbfe3640bf/numpy-2.2.6-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:d042d24c90c41b54fd506da306759e06e568864df8ec17ccc17e9e884634fd00", size = 12812666, upload-time = "2025-05-17T21:45:31.426Z" }, -] - -[[package]] -name = "nvidia-cublas-cu12" -version = "12.1.3.1" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.12' and sys_platform == 'linux'", - "python_full_version == '3.11.*' and sys_platform == 'linux'", - "python_full_version < '3.11' and sys_platform == 'linux'", -] -wheels = [ - { url = "https://files.pythonhosted.org/packages/37/6d/121efd7382d5b0284239f4ab1fc1590d86d34ed4a4a2fdb13b30ca8e5740/nvidia_cublas_cu12-12.1.3.1-py3-none-manylinux1_x86_64.whl", hash = "sha256:ee53ccca76a6fc08fb9701aa95b6ceb242cdaab118c3bb152af4e579af792728", size = 410594774, upload-time = "2023-04-19T15:50:03.519Z" }, - { url = "https://files.pythonhosted.org/packages/c5/ef/32a375b74bea706c93deea5613552f7c9104f961b21df423f5887eca713b/nvidia_cublas_cu12-12.1.3.1-py3-none-win_amd64.whl", hash = "sha256:2b964d60e8cf11b5e1073d179d85fa340c120e99b3067558f3cf98dd69d02906", size = 439918445, upload-time = "2023-04-19T15:56:13.346Z" }, + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", +] +sdist = { url = "https://files.pythonhosted.org/packages/25/ca/1166b75c21abd1da445b97bf1fa2f14f423c6cfb4fc7c4ef31dccf9f6a94/numpy-2.1.3.tar.gz", hash = "sha256:aa08e04e08aaf974d4458def539dece0d28146d866a39da5639596f4921fd761", size = 20166090, upload-time = "2024-11-02T17:48:55.832Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ad/81/c8167192eba5247593cd9d305ac236847c2912ff39e11402e72ae28a4985/numpy-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:4d1167c53b93f1f5d8a139a742b3c6f4d429b54e74e6b57d0eff40045187b15d", size = 21156252, upload-time = "2024-11-02T17:34:01.372Z" }, + { url = "https://files.pythonhosted.org/packages/da/74/5a60003fc3d8a718d830b08b654d0eea2d2db0806bab8f3c2aca7e18e010/numpy-2.1.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:c80e4a09b3d95b4e1cac08643f1152fa71a0a821a2d4277334c88d54b2219a41", size = 13784119, upload-time = "2024-11-02T17:34:23.809Z" }, + { url = "https://files.pythonhosted.org/packages/47/7c/864cb966b96fce5e63fcf25e1e4d957fe5725a635e5f11fe03f39dd9d6b5/numpy-2.1.3-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:576a1c1d25e9e02ed7fa5477f30a127fe56debd53b8d2c89d5578f9857d03ca9", size = 5352978, upload-time = "2024-11-02T17:34:34.001Z" }, + { url = "https://files.pythonhosted.org/packages/09/ac/61d07930a4993dd9691a6432de16d93bbe6aa4b1c12a5e573d468eefc1ca/numpy-2.1.3-cp311-cp311-macosx_14_0_x86_64.whl", hash = "sha256:973faafebaae4c0aaa1a1ca1ce02434554d67e628b8d805e61f874b84e136b09", size = 6892570, upload-time = "2024-11-02T17:34:45.401Z" }, + { url = "https://files.pythonhosted.org/packages/27/2f/21b94664f23af2bb52030653697c685022119e0dc93d6097c3cb45bce5f9/numpy-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:762479be47a4863e261a840e8e01608d124ee1361e48b96916f38b119cfda04a", size = 13896715, upload-time = "2024-11-02T17:35:06.564Z" }, + { url = "https://files.pythonhosted.org/packages/7a/f0/80811e836484262b236c684a75dfc4ba0424bc670e765afaa911468d9f39/numpy-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc6f24b3d1ecc1eebfbf5d6051faa49af40b03be1aaa781ebdadcbc090b4539b", size = 16339644, upload-time = "2024-11-02T17:35:30.888Z" }, + { url = "https://files.pythonhosted.org/packages/fa/81/ce213159a1ed8eb7d88a2a6ef4fbdb9e4ffd0c76b866c350eb4e3c37e640/numpy-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:17ee83a1f4fef3c94d16dc1802b998668b5419362c8a4f4e8a491de1b41cc3ee", size = 16712217, upload-time = "2024-11-02T17:35:56.703Z" }, + { url = "https://files.pythonhosted.org/packages/7d/84/4de0b87d5a72f45556b2a8ee9fc8801e8518ec867fc68260c1f5dcb3903f/numpy-2.1.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:15cb89f39fa6d0bdfb600ea24b250e5f1a3df23f901f51c8debaa6a5d122b2f0", size = 14399053, upload-time = "2024-11-02T17:36:22.3Z" }, + { url = "https://files.pythonhosted.org/packages/7e/1c/e5fabb9ad849f9d798b44458fd12a318d27592d4bc1448e269dec070ff04/numpy-2.1.3-cp311-cp311-win32.whl", hash = "sha256:d9beb777a78c331580705326d2367488d5bc473b49a9bc3036c154832520aca9", size = 6534741, upload-time = "2024-11-02T17:36:33.552Z" }, + { url = "https://files.pythonhosted.org/packages/1e/48/a9a4b538e28f854bfb62e1dea3c8fea12e90216a276c7777ae5345ff29a7/numpy-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:d89dd2b6da69c4fff5e39c28a382199ddedc3a5be5390115608345dec660b9e2", size = 12869487, upload-time = "2024-11-02T17:36:52.909Z" }, + { url = "https://files.pythonhosted.org/packages/8a/f0/385eb9970309643cbca4fc6eebc8bb16e560de129c91258dfaa18498da8b/numpy-2.1.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:f55ba01150f52b1027829b50d70ef1dafd9821ea82905b63936668403c3b471e", size = 20849658, upload-time = "2024-11-02T17:37:23.919Z" }, + { url = "https://files.pythonhosted.org/packages/54/4a/765b4607f0fecbb239638d610d04ec0a0ded9b4951c56dc68cef79026abf/numpy-2.1.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:13138eadd4f4da03074851a698ffa7e405f41a0845a6b1ad135b81596e4e9958", size = 13492258, upload-time = "2024-11-02T17:37:45.252Z" }, + { url = "https://files.pythonhosted.org/packages/bd/a7/2332679479c70b68dccbf4a8eb9c9b5ee383164b161bee9284ac141fbd33/numpy-2.1.3-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:a6b46587b14b888e95e4a24d7b13ae91fa22386c199ee7b418f449032b2fa3b8", size = 5090249, upload-time = "2024-11-02T17:37:54.252Z" }, + { url = "https://files.pythonhosted.org/packages/c1/67/4aa00316b3b981a822c7a239d3a8135be2a6945d1fd11d0efb25d361711a/numpy-2.1.3-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:0fa14563cc46422e99daef53d725d0c326e99e468a9320a240affffe87852564", size = 6621704, upload-time = "2024-11-02T17:38:05.127Z" }, + { url = "https://files.pythonhosted.org/packages/5e/da/1a429ae58b3b6c364eeec93bf044c532f2ff7b48a52e41050896cf15d5b1/numpy-2.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8637dcd2caa676e475503d1f8fdb327bc495554e10838019651b76d17b98e512", size = 13606089, upload-time = "2024-11-02T17:38:25.997Z" }, + { url = "https://files.pythonhosted.org/packages/9e/3e/3757f304c704f2f0294a6b8340fcf2be244038be07da4cccf390fa678a9f/numpy-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2312b2aa89e1f43ecea6da6ea9a810d06aae08321609d8dc0d0eda6d946a541b", size = 16043185, upload-time = "2024-11-02T17:38:51.07Z" }, + { url = "https://files.pythonhosted.org/packages/43/97/75329c28fea3113d00c8d2daf9bc5828d58d78ed661d8e05e234f86f0f6d/numpy-2.1.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:a38c19106902bb19351b83802531fea19dee18e5b37b36454f27f11ff956f7fc", size = 16410751, upload-time = "2024-11-02T17:39:15.801Z" }, + { url = "https://files.pythonhosted.org/packages/ad/7a/442965e98b34e0ae9da319f075b387bcb9a1e0658276cc63adb8c9686f7b/numpy-2.1.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:02135ade8b8a84011cbb67dc44e07c58f28575cf9ecf8ab304e51c05528c19f0", size = 14082705, upload-time = "2024-11-02T17:39:38.274Z" }, + { url = "https://files.pythonhosted.org/packages/ac/b6/26108cf2cfa5c7e03fb969b595c93131eab4a399762b51ce9ebec2332e80/numpy-2.1.3-cp312-cp312-win32.whl", hash = "sha256:e6988e90fcf617da2b5c78902fe8e668361b43b4fe26dbf2d7b0f8034d4cafb9", size = 6239077, upload-time = "2024-11-02T17:39:49.299Z" }, + { url = "https://files.pythonhosted.org/packages/a6/84/fa11dad3404b7634aaab50733581ce11e5350383311ea7a7010f464c0170/numpy-2.1.3-cp312-cp312-win_amd64.whl", hash = "sha256:0d30c543f02e84e92c4b1f415b7c6b5326cbe45ee7882b6b77db7195fb971e3a", size = 12566858, upload-time = "2024-11-02T17:40:08.851Z" }, + { url = "https://files.pythonhosted.org/packages/4d/0b/620591441457e25f3404c8057eb924d04f161244cb8a3680d529419aa86e/numpy-2.1.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:96fe52fcdb9345b7cd82ecd34547fca4321f7656d500eca497eb7ea5a926692f", size = 20836263, upload-time = "2024-11-02T17:40:39.528Z" }, + { url = "https://files.pythonhosted.org/packages/45/e1/210b2d8b31ce9119145433e6ea78046e30771de3fe353f313b2778142f34/numpy-2.1.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f653490b33e9c3a4c1c01d41bc2aef08f9475af51146e4a7710c450cf9761598", size = 13507771, upload-time = "2024-11-02T17:41:01.368Z" }, + { url = "https://files.pythonhosted.org/packages/55/44/aa9ee3caee02fa5a45f2c3b95cafe59c44e4b278fbbf895a93e88b308555/numpy-2.1.3-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:dc258a761a16daa791081d026f0ed4399b582712e6fc887a95af09df10c5ca57", size = 5075805, upload-time = "2024-11-02T17:41:11.213Z" }, + { url = "https://files.pythonhosted.org/packages/78/d6/61de6e7e31915ba4d87bbe1ae859e83e6582ea14c6add07c8f7eefd8488f/numpy-2.1.3-cp313-cp313-macosx_14_0_x86_64.whl", hash = "sha256:016d0f6f5e77b0f0d45d77387ffa4bb89816b57c835580c3ce8e099ef830befe", size = 6608380, upload-time = "2024-11-02T17:41:22.19Z" }, + { url = "https://files.pythonhosted.org/packages/3e/46/48bdf9b7241e317e6cf94276fe11ba673c06d1fdf115d8b4ebf616affd1a/numpy-2.1.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c181ba05ce8299c7aa3125c27b9c2167bca4a4445b7ce73d5febc411ca692e43", size = 13602451, upload-time = "2024-11-02T17:41:43.094Z" }, + { url = "https://files.pythonhosted.org/packages/70/50/73f9a5aa0810cdccda9c1d20be3cbe4a4d6ea6bfd6931464a44c95eef731/numpy-2.1.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5641516794ca9e5f8a4d17bb45446998c6554704d888f86df9b200e66bdcce56", size = 16039822, upload-time = "2024-11-02T17:42:07.595Z" }, + { url = "https://files.pythonhosted.org/packages/ad/cd/098bc1d5a5bc5307cfc65ee9369d0ca658ed88fbd7307b0d49fab6ca5fa5/numpy-2.1.3-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:ea4dedd6e394a9c180b33c2c872b92f7ce0f8e7ad93e9585312b0c5a04777a4a", size = 16411822, upload-time = "2024-11-02T17:42:32.48Z" }, + { url = "https://files.pythonhosted.org/packages/83/a2/7d4467a2a6d984549053b37945620209e702cf96a8bc658bc04bba13c9e2/numpy-2.1.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:b0df3635b9c8ef48bd3be5f862cf71b0a4716fa0e702155c45067c6b711ddcef", size = 14079598, upload-time = "2024-11-02T17:42:53.773Z" }, + { url = "https://files.pythonhosted.org/packages/e9/6a/d64514dcecb2ee70bfdfad10c42b76cab657e7ee31944ff7a600f141d9e9/numpy-2.1.3-cp313-cp313-win32.whl", hash = "sha256:50ca6aba6e163363f132b5c101ba078b8cbd3fa92c7865fd7d4d62d9779ac29f", size = 6236021, upload-time = "2024-11-02T17:46:19.171Z" }, + { url = "https://files.pythonhosted.org/packages/bb/f9/12297ed8d8301a401e7d8eb6b418d32547f1d700ed3c038d325a605421a4/numpy-2.1.3-cp313-cp313-win_amd64.whl", hash = "sha256:747641635d3d44bcb380d950679462fae44f54b131be347d5ec2bce47d3df9ed", size = 12560405, upload-time = "2024-11-02T17:46:38.177Z" }, + { url = "https://files.pythonhosted.org/packages/a7/45/7f9244cd792e163b334e3a7f02dff1239d2890b6f37ebf9e82cbe17debc0/numpy-2.1.3-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:996bb9399059c5b82f76b53ff8bb686069c05acc94656bb259b1d63d04a9506f", size = 20859062, upload-time = "2024-11-02T17:43:24.599Z" }, + { url = "https://files.pythonhosted.org/packages/b1/b4/a084218e7e92b506d634105b13e27a3a6645312b93e1c699cc9025adb0e1/numpy-2.1.3-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:45966d859916ad02b779706bb43b954281db43e185015df6eb3323120188f9e4", size = 13515839, upload-time = "2024-11-02T17:43:45.498Z" }, + { url = "https://files.pythonhosted.org/packages/27/45/58ed3f88028dcf80e6ea580311dc3edefdd94248f5770deb980500ef85dd/numpy-2.1.3-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:baed7e8d7481bfe0874b566850cb0b85243e982388b7b23348c6db2ee2b2ae8e", size = 5116031, upload-time = "2024-11-02T17:43:54.585Z" }, + { url = "https://files.pythonhosted.org/packages/37/a8/eb689432eb977d83229094b58b0f53249d2209742f7de529c49d61a124a0/numpy-2.1.3-cp313-cp313t-macosx_14_0_x86_64.whl", hash = "sha256:a9f7f672a3388133335589cfca93ed468509cb7b93ba3105fce780d04a6576a0", size = 6629977, upload-time = "2024-11-02T17:44:05.31Z" }, + { url = "https://files.pythonhosted.org/packages/42/a3/5355ad51ac73c23334c7caaed01adadfda49544f646fcbfbb4331deb267b/numpy-2.1.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d7aac50327da5d208db2eec22eb11e491e3fe13d22653dce51b0f4109101b408", size = 13575951, upload-time = "2024-11-02T17:44:25.881Z" }, + { url = "https://files.pythonhosted.org/packages/c4/70/ea9646d203104e647988cb7d7279f135257a6b7e3354ea6c56f8bafdb095/numpy-2.1.3-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4394bc0dbd074b7f9b52024832d16e019decebf86caf909d94f6b3f77a8ee3b6", size = 16022655, upload-time = "2024-11-02T17:44:50.115Z" }, + { url = "https://files.pythonhosted.org/packages/14/ce/7fc0612903e91ff9d0b3f2eda4e18ef9904814afcae5b0f08edb7f637883/numpy-2.1.3-cp313-cp313t-musllinux_1_1_x86_64.whl", hash = "sha256:50d18c4358a0a8a53f12a8ba9d772ab2d460321e6a93d6064fc22443d189853f", size = 16399902, upload-time = "2024-11-02T17:45:15.685Z" }, + { url = "https://files.pythonhosted.org/packages/ef/62/1d3204313357591c913c32132a28f09a26357e33ea3c4e2fe81269e0dca1/numpy-2.1.3-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:14e253bd43fc6b37af4921b10f6add6925878a42a0c5fe83daee390bca80bc17", size = 14067180, upload-time = "2024-11-02T17:45:37.234Z" }, + { url = "https://files.pythonhosted.org/packages/24/d7/78a40ed1d80e23a774cb8a34ae8a9493ba1b4271dde96e56ccdbab1620ef/numpy-2.1.3-cp313-cp313t-win32.whl", hash = "sha256:08788d27a5fd867a663f6fc753fd7c3ad7e92747efc73c53bca2f19f8bc06f48", size = 6291907, upload-time = "2024-11-02T17:45:48.951Z" }, + { url = "https://files.pythonhosted.org/packages/86/09/a5ab407bd7f5f5599e6a9261f964ace03a73e7c6928de906981c31c38082/numpy-2.1.3-cp313-cp313t-win_amd64.whl", hash = "sha256:2564fbdf2b99b3f815f2107c1bbc93e2de8ee655a69c261363a1172a79a257d4", size = 12644098, upload-time = "2024-11-02T17:46:07.941Z" }, ] [[package]] @@ -7817,32 +6457,24 @@ source = { registry = "https://pypi.org/simple" } resolution-markers = [ "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", ] wheels = [ { url = "https://files.pythonhosted.org/packages/7f/7f/7fbae15a3982dc9595e49ce0f19332423b260045d0a6afe93cdbe2f1f624/nvidia_cublas_cu12-12.4.5.8-py3-none-manylinux2014_aarch64.whl", hash = "sha256:0f8aa1706812e00b9f19dfe0cdb3999b092ccb8ca168c0db5b8ea712456fd9b3", size = 363333771, upload-time = "2024-06-18T19:28:09.881Z" }, @@ -7855,146 +6487,141 @@ name = "nvidia-cublas-cu12" version = "12.6.4.1" source = { registry = "https://pypi.org/simple" } resolution-markers = [ + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", ] wheels = [ { url = "https://files.pythonhosted.org/packages/af/eb/ff4b8c503fa1f1796679dce648854d58751982426e4e4b37d6fce49d259c/nvidia_cublas_cu12-12.6.4.1-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:08ed2686e9875d01b58e3cb379c6896df8e76c75e0d4a7f7dace3d7b6d9ef8eb", size = 393138322, upload-time = "2024-11-20T17:40:25.65Z" }, @@ -8002,20 +6629,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/84/f7/985e9bdbe3e0ac9298fcc8cfa51a392862a46a0ffaccbbd56939b62a9c83/nvidia_cublas_cu12-12.6.4.1-py3-none-win_amd64.whl", hash = "sha256:9e4fa264f4d8a4eb0cdbd34beadc029f453b3bafae02401e999cf3d5a5af75f8", size = 434535301, upload-time = "2024-11-20T17:50:41.681Z" }, ] -[[package]] -name = "nvidia-cuda-cupti-cu12" -version = "12.1.105" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.12' and sys_platform == 'linux'", - "python_full_version == '3.11.*' and sys_platform == 'linux'", - "python_full_version < '3.11' and sys_platform == 'linux'", -] -wheels = [ - { url = "https://files.pythonhosted.org/packages/7e/00/6b218edd739ecfc60524e585ba8e6b00554dd908de2c9c66c1af3e44e18d/nvidia_cuda_cupti_cu12-12.1.105-py3-none-manylinux1_x86_64.whl", hash = "sha256:e54fde3983165c624cb79254ae9818a456eb6e87a7fd4d56a2352c24ee542d7e", size = 14109015, upload-time = "2023-04-19T15:47:32.502Z" }, - { url = "https://files.pythonhosted.org/packages/d0/56/0021e32ea2848c24242f6b56790bd0ccc8bf99f973ca790569c6ca028107/nvidia_cuda_cupti_cu12-12.1.105-py3-none-win_amd64.whl", hash = "sha256:bea8236d13a0ac7190bd2919c3e8e6ce1e402104276e6f9694479e48bb0eb2a4", size = 10154340, upload-time = "2023-04-19T15:53:33.563Z" }, -] - [[package]] name = "nvidia-cuda-cupti-cu12" version = "12.4.127" @@ -8023,32 +6636,24 @@ source = { registry = "https://pypi.org/simple" } resolution-markers = [ "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", ] wheels = [ { url = "https://files.pythonhosted.org/packages/93/b5/9fb3d00386d3361b03874246190dfec7b206fd74e6e287b26a8fcb359d95/nvidia_cuda_cupti_cu12-12.4.127-py3-none-manylinux2014_aarch64.whl", hash = "sha256:79279b35cf6f91da114182a5ce1864997fd52294a87a16179ce275773799458a", size = 12354556, upload-time = "2024-06-18T19:30:40.546Z" }, @@ -8061,146 +6666,141 @@ name = "nvidia-cuda-cupti-cu12" version = "12.6.80" source = { registry = "https://pypi.org/simple" } resolution-markers = [ + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", ] wheels = [ { url = "https://files.pythonhosted.org/packages/e6/8b/2f6230cb715646c3a9425636e513227ce5c93c4d65823a734f4bb86d43c3/nvidia_cuda_cupti_cu12-12.6.80-py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:166ee35a3ff1587f2490364f90eeeb8da06cd867bd5b701bf7f9a02b78bc63fc", size = 8236764, upload-time = "2024-11-20T17:35:41.03Z" }, @@ -8210,20 +6810,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/1c/81/7796f096afaf726796b1b648f3bc80cafc61fe7f77f44a483c89e6c5ef34/nvidia_cuda_cupti_cu12-12.6.80-py3-none-win_amd64.whl", hash = "sha256:bbe6ae76e83ce5251b56e8c8e61a964f757175682bbad058b170b136266ab00a", size = 5724175, upload-time = "2024-10-01T17:09:47.955Z" }, ] -[[package]] -name = "nvidia-cuda-nvrtc-cu12" -version = "12.1.105" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.12' and sys_platform == 'linux'", - "python_full_version == '3.11.*' and sys_platform == 'linux'", - "python_full_version < '3.11' and sys_platform == 'linux'", -] -wheels = [ - { url = "https://files.pythonhosted.org/packages/b6/9f/c64c03f49d6fbc56196664d05dba14e3a561038a81a638eeb47f4d4cfd48/nvidia_cuda_nvrtc_cu12-12.1.105-py3-none-manylinux1_x86_64.whl", hash = "sha256:339b385f50c309763ca65456ec75e17bbefcbbf2893f462cb8b90584cd27a1c2", size = 23671734, upload-time = "2023-04-19T15:48:32.42Z" }, - { url = "https://files.pythonhosted.org/packages/ad/1d/f76987c4f454eb86e0b9a0e4f57c3bf1ac1d13ad13cd1a4da4eb0e0c0ce9/nvidia_cuda_nvrtc_cu12-12.1.105-py3-none-win_amd64.whl", hash = "sha256:0a98a522d9ff138b96c010a65e145dc1b4850e9ecb75a0172371793752fd46ed", size = 19331863, upload-time = "2023-04-19T15:54:34.603Z" }, -] - [[package]] name = "nvidia-cuda-nvrtc-cu12" version = "12.4.127" @@ -8231,32 +6817,24 @@ source = { registry = "https://pypi.org/simple" } resolution-markers = [ "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", ] wheels = [ { url = "https://files.pythonhosted.org/packages/77/aa/083b01c427e963ad0b314040565ea396f914349914c298556484f799e61b/nvidia_cuda_nvrtc_cu12-12.4.127-py3-none-manylinux2014_aarch64.whl", hash = "sha256:0eedf14185e04b76aa05b1fea04133e59f465b6f960c0cbf4e37c3cb6b0ea198", size = 24133372, upload-time = "2024-06-18T19:32:00.576Z" }, @@ -8269,146 +6847,141 @@ name = "nvidia-cuda-nvrtc-cu12" version = "12.6.77" source = { registry = "https://pypi.org/simple" } resolution-markers = [ + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", ] wheels = [ { url = "https://files.pythonhosted.org/packages/f4/2f/72df534873235983cc0a5371c3661bebef7c4682760c275590b972c7b0f9/nvidia_cuda_nvrtc_cu12-12.6.77-py3-none-manylinux2014_aarch64.whl", hash = "sha256:5847f1d6e5b757f1d2b3991a01082a44aad6f10ab3c5c0213fa3e25bddc25a13", size = 23162955, upload-time = "2024-10-01T16:59:50.922Z" }, @@ -8416,20 +6989,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/f5/46/d3a1cdda8bb113c80f43a0a6f3a853356d487b830f3483f92d49ce87fa55/nvidia_cuda_nvrtc_cu12-12.6.77-py3-none-win_amd64.whl", hash = "sha256:f7007dbd914c56bd80ea31bc43e8e149da38f68158f423ba845fc3292684e45a", size = 39026742, upload-time = "2024-10-01T17:10:49.058Z" }, ] -[[package]] -name = "nvidia-cuda-runtime-cu12" -version = "12.1.105" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.12' and sys_platform == 'linux'", - "python_full_version == '3.11.*' and sys_platform == 'linux'", - "python_full_version < '3.11' and sys_platform == 'linux'", -] -wheels = [ - { url = "https://files.pythonhosted.org/packages/eb/d5/c68b1d2cdfcc59e72e8a5949a37ddb22ae6cade80cd4a57a84d4c8b55472/nvidia_cuda_runtime_cu12-12.1.105-py3-none-manylinux1_x86_64.whl", hash = "sha256:6e258468ddf5796e25f1dc591a31029fa317d97a0a94ed93468fc86301d61e40", size = 823596, upload-time = "2023-04-19T15:47:22.471Z" }, - { url = "https://files.pythonhosted.org/packages/9f/e2/7a2b4b5064af56ea8ea2d8b2776c0f2960d95c88716138806121ae52a9c9/nvidia_cuda_runtime_cu12-12.1.105-py3-none-win_amd64.whl", hash = "sha256:dfb46ef84d73fababab44cf03e3b83f80700d27ca300e537f85f636fac474344", size = 821226, upload-time = "2023-04-19T15:53:23.082Z" }, -] - [[package]] name = "nvidia-cuda-runtime-cu12" version = "12.4.127" @@ -8437,32 +6996,24 @@ source = { registry = "https://pypi.org/simple" } resolution-markers = [ "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", ] wheels = [ { url = "https://files.pythonhosted.org/packages/a1/aa/b656d755f474e2084971e9a297def515938d56b466ab39624012070cb773/nvidia_cuda_runtime_cu12-12.4.127-py3-none-manylinux2014_aarch64.whl", hash = "sha256:961fe0e2e716a2a1d967aab7caee97512f71767f852f67432d572e36cb3a11f3", size = 894177, upload-time = "2024-06-18T19:32:52.877Z" }, @@ -8475,146 +7026,141 @@ name = "nvidia-cuda-runtime-cu12" version = "12.6.77" source = { registry = "https://pypi.org/simple" } resolution-markers = [ + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", ] wheels = [ { url = "https://files.pythonhosted.org/packages/8f/ea/590b2ac00d772a8abd1c387a92b46486d2679ca6622fd25c18ff76265663/nvidia_cuda_runtime_cu12-12.6.77-py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:6116fad3e049e04791c0256a9778c16237837c08b27ed8c8401e2e45de8d60cd", size = 908052, upload-time = "2024-11-20T17:35:19.905Z" }, @@ -8624,22 +7170,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/fa/76/4c80fa138333cc975743fd0687a745fccb30d167f906f13c1c7f9a85e5ea/nvidia_cuda_runtime_cu12-12.6.77-py3-none-win_amd64.whl", hash = "sha256:86c58044c824bf3c173c49a2dbc7a6c8b53cb4e4dca50068be0bf64e9dab3f7f", size = 891773, upload-time = "2024-10-01T17:09:26.362Z" }, ] -[[package]] -name = "nvidia-cudnn-cu12" -version = "8.9.2.26" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.12' and sys_platform == 'linux'", - "python_full_version == '3.11.*' and sys_platform == 'linux'", - "python_full_version < '3.11' and sys_platform == 'linux'", -] -dependencies = [ - { name = "nvidia-cublas-cu12", version = "12.1.3.1", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn')" }, -] -wheels = [ - { url = "https://files.pythonhosted.org/packages/ff/74/a2e2be7fb83aaedec84f391f082cf765dfb635e7caa9b49065f73e4835d8/nvidia_cudnn_cu12-8.9.2.26-py3-none-manylinux1_x86_64.whl", hash = "sha256:5ccb288774fdfb07a7e7025ffec286971c06d8d7b4fb162525334616d7629ff9", size = 731725872, upload-time = "2023-06-01T19:24:57.328Z" }, -] - [[package]] name = "nvidia-cudnn-cu12" version = "9.1.0.70" @@ -8647,35 +7177,27 @@ source = { registry = "https://pypi.org/simple" } resolution-markers = [ "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", ] dependencies = [ - { name = "nvidia-cublas-cu12", version = "12.4.5.8", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'extra-5-mlipx-fairchem') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "nvidia-cublas-cu12", version = "12.4.5.8", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'extra-5-mlipx-fairchem') or (sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem') or (sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-orb') or (sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, ] wheels = [ { url = "https://files.pythonhosted.org/packages/9f/fd/713452cd72343f682b1c7b9321e23829f00b842ceaedcda96e742ea0b0b3/nvidia_cudnn_cu12-9.1.0.70-py3-none-manylinux2014_x86_64.whl", hash = "sha256:165764f44ef8c61fcdfdfdbe769d687e06374059fbb388b6c89ecb0e28793a6f", size = 664752741, upload-time = "2024-04-22T15:24:15.253Z" }, @@ -8687,149 +7209,144 @@ name = "nvidia-cudnn-cu12" version = "9.5.1.17" source = { registry = "https://pypi.org/simple" } resolution-markers = [ + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", ] dependencies = [ - { name = "nvidia-cublas-cu12", version = "12.6.4.1", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace') or (sys_platform != 'win32' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes') or (sys_platform == 'linux' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-matpes') or (sys_platform != 'win32' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn')" }, + { name = "nvidia-cublas-cu12", version = "12.6.4.1", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra != 'extra-5-mlipx-fairchem') or (sys_platform != 'win32' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace') or (sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform == 'win32' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform == 'win32' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform == 'win32' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (sys_platform == 'win32' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, ] wheels = [ { url = "https://files.pythonhosted.org/packages/99/93/a201a12d3ec1caa8c6ac34c1c2f9eeb696b886f0c36ff23c638b46603bd0/nvidia_cudnn_cu12-9.5.1.17-py3-none-manylinux_2_28_aarch64.whl", hash = "sha256:9fd4584468533c61873e5fda8ca41bac3a38bcb2d12350830c69b0a96a7e4def", size = 570523509, upload-time = "2024-10-25T19:53:03.148Z" }, @@ -8837,20 +7354,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/b6/b2/3f60d15f037fa5419d9d7f788b100ef33ea913ae5315c87ca6d6fa606c35/nvidia_cudnn_cu12-9.5.1.17-py3-none-win_amd64.whl", hash = "sha256:d7af0f8a4f3b4b9dbb3122f2ef553b45694ed9c384d5a75bab197b8eefb79ab8", size = 565440743, upload-time = "2024-10-25T19:55:49.74Z" }, ] -[[package]] -name = "nvidia-cufft-cu12" -version = "11.0.2.54" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.12' and sys_platform == 'linux'", - "python_full_version == '3.11.*' and sys_platform == 'linux'", - "python_full_version < '3.11' and sys_platform == 'linux'", -] -wheels = [ - { url = "https://files.pythonhosted.org/packages/86/94/eb540db023ce1d162e7bea9f8f5aa781d57c65aed513c33ee9a5123ead4d/nvidia_cufft_cu12-11.0.2.54-py3-none-manylinux1_x86_64.whl", hash = "sha256:794e3948a1aa71fd817c3775866943936774d1c14e7628c74f6f7417224cdf56", size = 121635161, upload-time = "2023-04-19T15:50:46Z" }, - { url = "https://files.pythonhosted.org/packages/f7/57/7927a3aa0e19927dfed30256d1c854caf991655d847a4e7c01fe87e3d4ac/nvidia_cufft_cu12-11.0.2.54-py3-none-win_amd64.whl", hash = "sha256:d9ac353f78ff89951da4af698f80870b1534ed69993f10a4cf1d96f21357e253", size = 121344196, upload-time = "2023-04-19T15:56:59.562Z" }, -] - [[package]] name = "nvidia-cufft-cu12" version = "11.2.1.3" @@ -8858,35 +7361,27 @@ source = { registry = "https://pypi.org/simple" } resolution-markers = [ "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", ] dependencies = [ - { name = "nvidia-nvjitlink-cu12", version = "12.4.127", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'extra-5-mlipx-fairchem') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "nvidia-nvjitlink-cu12", version = "12.4.127", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'extra-5-mlipx-fairchem') or (sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem') or (sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-orb') or (sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, ] wheels = [ { url = "https://files.pythonhosted.org/packages/7a/8a/0e728f749baca3fbeffad762738276e5df60851958be7783af121a7221e7/nvidia_cufft_cu12-11.2.1.3-py3-none-manylinux2014_aarch64.whl", hash = "sha256:5dad8008fc7f92f5ddfa2101430917ce2ffacd86824914c82e28990ad7f00399", size = 211422548, upload-time = "2024-06-18T19:33:39.396Z" }, @@ -8899,149 +7394,144 @@ name = "nvidia-cufft-cu12" version = "11.3.0.4" source = { registry = "https://pypi.org/simple" } resolution-markers = [ + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", ] dependencies = [ - { name = "nvidia-nvjitlink-cu12", version = "12.6.85", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace') or (sys_platform != 'win32' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes') or (sys_platform == 'linux' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-matpes') or (sys_platform != 'win32' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn')" }, + { name = "nvidia-nvjitlink-cu12", version = "12.6.85", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra != 'extra-5-mlipx-fairchem') or (sys_platform != 'win32' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace') or (sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform == 'win32' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform == 'win32' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform == 'win32' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (sys_platform == 'win32' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, ] wheels = [ { url = "https://files.pythonhosted.org/packages/1f/37/c50d2b2f2c07e146776389e3080f4faf70bcc4fa6e19d65bb54ca174ebc3/nvidia_cufft_cu12-11.3.0.4-py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:d16079550df460376455cba121db6564089176d9bac9e4f360493ca4741b22a6", size = 200164144, upload-time = "2024-11-20T17:40:58.288Z" }, @@ -9060,20 +7550,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/17/bf/cc834147263b929229ce4aadd62869f0b195e98569d4c28b23edc72b85d9/nvidia_cufile_cu12-1.11.1.6-py3-none-manylinux_2_27_aarch64.whl", hash = "sha256:8f57a0051dcf2543f6dc2b98a98cb2719c37d3cee1baba8965d57f3bbc90d4db", size = 1066155, upload-time = "2024-11-20T17:41:49.376Z" }, ] -[[package]] -name = "nvidia-curand-cu12" -version = "10.3.2.106" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.12' and sys_platform == 'linux'", - "python_full_version == '3.11.*' and sys_platform == 'linux'", - "python_full_version < '3.11' and sys_platform == 'linux'", -] -wheels = [ - { url = "https://files.pythonhosted.org/packages/44/31/4890b1c9abc496303412947fc7dcea3d14861720642b49e8ceed89636705/nvidia_curand_cu12-10.3.2.106-py3-none-manylinux1_x86_64.whl", hash = "sha256:9d264c5036dde4e64f1de8c50ae753237c12e0b1348738169cd0f8a536c0e1e0", size = 56467784, upload-time = "2023-04-19T15:51:04.804Z" }, - { url = "https://files.pythonhosted.org/packages/5c/97/4c9c7c79efcdf5b70374241d48cf03b94ef6707fd18ea0c0f53684931d0b/nvidia_curand_cu12-10.3.2.106-py3-none-win_amd64.whl", hash = "sha256:75b6b0c574c0037839121317e17fd01f8a69fd2ef8e25853d826fec30bdba74a", size = 55995813, upload-time = "2023-04-19T15:57:16.676Z" }, -] - [[package]] name = "nvidia-curand-cu12" version = "10.3.5.147" @@ -9081,32 +7557,24 @@ source = { registry = "https://pypi.org/simple" } resolution-markers = [ "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", ] wheels = [ { url = "https://files.pythonhosted.org/packages/80/9c/a79180e4d70995fdf030c6946991d0171555c6edf95c265c6b2bf7011112/nvidia_curand_cu12-10.3.5.147-py3-none-manylinux2014_aarch64.whl", hash = "sha256:1f173f09e3e3c76ab084aba0de819c49e56614feae5c12f69883f4ae9bb5fad9", size = 56314811, upload-time = "2024-06-18T19:34:48.575Z" }, @@ -9119,146 +7587,141 @@ name = "nvidia-curand-cu12" version = "10.3.7.77" source = { registry = "https://pypi.org/simple" } resolution-markers = [ + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", ] wheels = [ { url = "https://files.pythonhosted.org/packages/42/ac/36543605358a355632f1a6faa3e2d5dfb91eab1e4bc7d552040e0383c335/nvidia_curand_cu12-10.3.7.77-py3-none-manylinux2014_aarch64.whl", hash = "sha256:6e82df077060ea28e37f48a3ec442a8f47690c7499bff392a5938614b56c98d8", size = 56289881, upload-time = "2024-10-01T17:04:18.981Z" }, @@ -9268,25 +7731,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/a9/a8/0cd0cec757bd4b4b4ef150fca62ec064db7d08a291dced835a0be7d2c147/nvidia_curand_cu12-10.3.7.77-py3-none-win_amd64.whl", hash = "sha256:6d6d935ffba0f3d439b7cd968192ff068fafd9018dbf1b85b37261b13cfc9905", size = 55783873, upload-time = "2024-10-01T17:13:30.377Z" }, ] -[[package]] -name = "nvidia-cusolver-cu12" -version = "11.4.5.107" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.12' and sys_platform == 'linux'", - "python_full_version == '3.11.*' and sys_platform == 'linux'", - "python_full_version < '3.11' and sys_platform == 'linux'", -] -dependencies = [ - { name = "nvidia-cublas-cu12", version = "12.1.3.1", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "nvidia-cusparse-cu12", version = "12.1.0.106", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "nvidia-nvjitlink-cu12", version = "12.9.86", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn')" }, -] -wheels = [ - { url = "https://files.pythonhosted.org/packages/bc/1d/8de1e5c67099015c834315e333911273a8c6aaba78923dd1d1e25fc5f217/nvidia_cusolver_cu12-11.4.5.107-py3-none-manylinux1_x86_64.whl", hash = "sha256:8a7ec542f0412294b15072fa7dab71d31334014a69f953004ea7a118206fe0dd", size = 124161928, upload-time = "2023-04-19T15:51:25.781Z" }, - { url = "https://files.pythonhosted.org/packages/b8/80/8fca0bf819122a631c3976b6fc517c1b10741b643b94046bd8dd451522c5/nvidia_cusolver_cu12-11.4.5.107-py3-none-win_amd64.whl", hash = "sha256:74e0c3a24c78612192a74fcd90dd117f1cf21dea4822e66d89e8ea80e3cd2da5", size = 121643081, upload-time = "2023-04-19T15:57:43.035Z" }, -] - [[package]] name = "nvidia-cusolver-cu12" version = "11.6.1.9" @@ -9294,37 +7738,29 @@ source = { registry = "https://pypi.org/simple" } resolution-markers = [ "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", ] dependencies = [ - { name = "nvidia-cublas-cu12", version = "12.4.5.8", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'extra-5-mlipx-fairchem') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, - { name = "nvidia-cusparse-cu12", version = "12.3.1.170", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'extra-5-mlipx-fairchem') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, - { name = "nvidia-nvjitlink-cu12", version = "12.4.127", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'extra-5-mlipx-fairchem') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "nvidia-cublas-cu12", version = "12.4.5.8", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'extra-5-mlipx-fairchem') or (sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem') or (sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-orb') or (sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "nvidia-cusparse-cu12", version = "12.3.1.170", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'extra-5-mlipx-fairchem') or (sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem') or (sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-orb') or (sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "nvidia-nvjitlink-cu12", version = "12.4.127", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'extra-5-mlipx-fairchem') or (sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem') or (sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-orb') or (sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, ] wheels = [ { url = "https://files.pythonhosted.org/packages/46/6b/a5c33cf16af09166845345275c34ad2190944bcc6026797a39f8e0a282e0/nvidia_cusolver_cu12-11.6.1.9-py3-none-manylinux2014_aarch64.whl", hash = "sha256:d338f155f174f90724bbde3758b7ac375a70ce8e706d70b018dd3375545fc84e", size = 127634111, upload-time = "2024-06-18T19:35:01.793Z" }, @@ -9337,151 +7773,146 @@ name = "nvidia-cusolver-cu12" version = "11.7.1.2" source = { registry = "https://pypi.org/simple" } resolution-markers = [ + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", ] dependencies = [ - { name = "nvidia-cublas-cu12", version = "12.6.4.1", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace') or (sys_platform != 'win32' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes') or (sys_platform == 'linux' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-matpes') or (sys_platform != 'win32' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "nvidia-cusparse-cu12", version = "12.5.4.2", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace') or (sys_platform != 'win32' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes') or (sys_platform == 'linux' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-matpes') or (sys_platform != 'win32' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "nvidia-nvjitlink-cu12", version = "12.6.85", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace') or (sys_platform != 'win32' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes') or (sys_platform == 'linux' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-matpes') or (sys_platform != 'win32' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn')" }, + { name = "nvidia-cublas-cu12", version = "12.6.4.1", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra != 'extra-5-mlipx-fairchem') or (sys_platform != 'win32' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace') or (sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform == 'win32' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform == 'win32' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform == 'win32' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (sys_platform == 'win32' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "nvidia-cusparse-cu12", version = "12.5.4.2", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra != 'extra-5-mlipx-fairchem') or (sys_platform != 'win32' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace') or (sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform == 'win32' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform == 'win32' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform == 'win32' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (sys_platform == 'win32' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "nvidia-nvjitlink-cu12", version = "12.6.85", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra != 'extra-5-mlipx-fairchem') or (sys_platform != 'win32' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace') or (sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform == 'win32' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform == 'win32' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform == 'win32' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (sys_platform == 'win32' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, ] wheels = [ { url = "https://files.pythonhosted.org/packages/93/17/dbe1aa865e4fdc7b6d4d0dd308fdd5aaab60f939abfc0ea1954eac4fb113/nvidia_cusolver_cu12-11.7.1.2-py3-none-manylinux2014_aarch64.whl", hash = "sha256:0ce237ef60acde1efc457335a2ddadfd7610b892d94efee7b776c64bb1cac9e0", size = 157833628, upload-time = "2024-10-01T17:05:05.591Z" }, @@ -9491,23 +7922,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/d4/53/fff50a0808df7113d77e3bbc7c2b7eaed6f57d5eb80fbe93ead2aea1e09a/nvidia_cusolver_cu12-11.7.1.2-py3-none-win_amd64.whl", hash = "sha256:6813f9d8073f555444a8705f3ab0296d3e1cb37a16d694c5fc8b862a0d8706d7", size = 149287877, upload-time = "2024-10-01T17:13:49.804Z" }, ] -[[package]] -name = "nvidia-cusparse-cu12" -version = "12.1.0.106" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.12' and sys_platform == 'linux'", - "python_full_version == '3.11.*' and sys_platform == 'linux'", - "python_full_version < '3.11' and sys_platform == 'linux'", -] -dependencies = [ - { name = "nvidia-nvjitlink-cu12", version = "12.9.86", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn')" }, -] -wheels = [ - { url = "https://files.pythonhosted.org/packages/65/5b/cfaeebf25cd9fdec14338ccb16f6b2c4c7fa9163aefcf057d86b9cc248bb/nvidia_cusparse_cu12-12.1.0.106-py3-none-manylinux1_x86_64.whl", hash = "sha256:f3b50f42cf363f86ab21f720998517a659a48131e8d538dc02f8768237bd884c", size = 195958278, upload-time = "2023-04-19T15:51:49.939Z" }, - { url = "https://files.pythonhosted.org/packages/0f/95/48fdbba24c93614d1ecd35bc6bdc6087bd17cbacc3abc4b05a9c2a1ca232/nvidia_cusparse_cu12-12.1.0.106-py3-none-win_amd64.whl", hash = "sha256:b798237e81b9719373e8fae8d4f091b70a0cf09d9d85c95a557e11df2d8e9a5a", size = 195414588, upload-time = "2023-04-19T15:58:08.389Z" }, -] - [[package]] name = "nvidia-cusparse-cu12" version = "12.3.1.170" @@ -9515,35 +7929,27 @@ source = { registry = "https://pypi.org/simple" } resolution-markers = [ "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", ] dependencies = [ - { name = "nvidia-nvjitlink-cu12", version = "12.4.127", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'extra-5-mlipx-fairchem') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "nvidia-nvjitlink-cu12", version = "12.4.127", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'extra-5-mlipx-fairchem') or (sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem') or (sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-orb') or (sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, ] wheels = [ { url = "https://files.pythonhosted.org/packages/96/a9/c0d2f83a53d40a4a41be14cea6a0bf9e668ffcf8b004bd65633f433050c0/nvidia_cusparse_cu12-12.3.1.170-py3-none-manylinux2014_aarch64.whl", hash = "sha256:9d32f62896231ebe0480efd8a7f702e143c98cfaa0e8a76df3386c1ba2b54df3", size = 207381987, upload-time = "2024-06-18T19:35:32.989Z" }, @@ -9556,149 +7962,144 @@ name = "nvidia-cusparse-cu12" version = "12.5.4.2" source = { registry = "https://pypi.org/simple" } resolution-markers = [ + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", ] dependencies = [ - { name = "nvidia-nvjitlink-cu12", version = "12.6.85", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace') or (sys_platform != 'win32' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes') or (sys_platform == 'linux' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-matpes') or (sys_platform != 'win32' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn')" }, + { name = "nvidia-nvjitlink-cu12", version = "12.6.85", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra != 'extra-5-mlipx-fairchem') or (sys_platform != 'win32' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace') or (sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform == 'win32' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform == 'win32' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform == 'win32' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (sys_platform == 'win32' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, ] wheels = [ { url = "https://files.pythonhosted.org/packages/eb/eb/6681efd0aa7df96b4f8067b3ce7246833dd36830bb4cec8896182773db7d/nvidia_cusparse_cu12-12.5.4.2-py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:d25b62fb18751758fe3c93a4a08eff08effedfe4edf1c6bb5afd0890fe88f887", size = 216451147, upload-time = "2024-11-20T17:44:18.055Z" }, @@ -9715,32 +8116,24 @@ source = { registry = "https://pypi.org/simple" } resolution-markers = [ "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", ] wheels = [ { url = "https://files.pythonhosted.org/packages/98/8e/675498726c605c9441cf46653bd29cb1b8666da1fb1469ffa25f67f20c58/nvidia_cusparselt_cu12-0.6.2-py3-none-manylinux2014_aarch64.whl", hash = "sha256:067a7f6d03ea0d4841c85f0c6f1991c5dda98211f6302cb83a4ab234ee95bef8", size = 149422781, upload-time = "2024-07-23T17:35:27.203Z" }, @@ -9753,146 +8146,141 @@ name = "nvidia-cusparselt-cu12" version = "0.6.3" source = { registry = "https://pypi.org/simple" } resolution-markers = [ + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", ] wheels = [ { url = "https://files.pythonhosted.org/packages/62/da/4de092c61c6dea1fc9c936e69308a02531d122e12f1f649825934ad651b5/nvidia_cusparselt_cu12-0.6.3-py3-none-manylinux2014_aarch64.whl", hash = "sha256:8371549623ba601a06322af2133c4a44350575f5a3108fb75f3ef20b822ad5f1", size = 156402859, upload-time = "2024-10-16T02:23:17.184Z" }, @@ -9906,19 +8294,6 @@ version = "7.352.0" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/6d/64/cce82bddb80c0b0f5c703bbdafa94bfb69a1c5ad7a79cff00b482468f0d3/nvidia-ml-py3-7.352.0.tar.gz", hash = "sha256:390f02919ee9d73fe63a98c73101061a6b37fa694a793abf56673320f1f51277", size = 19494, upload-time = "2017-06-03T07:43:46.299Z" } -[[package]] -name = "nvidia-nccl-cu12" -version = "2.19.3" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.12' and sys_platform == 'linux'", - "python_full_version == '3.11.*' and sys_platform == 'linux'", - "python_full_version < '3.11' and sys_platform == 'linux'", -] -wheels = [ - { url = "https://files.pythonhosted.org/packages/38/00/d0d4e48aef772ad5aebcf70b73028f88db6e5640b36c38e90445b7a57c45/nvidia_nccl_cu12-2.19.3-py3-none-manylinux1_x86_64.whl", hash = "sha256:a9734707a2c96443331c1e48c717024aa6678a0e2a4cb66b2c364d18cee6b48d", size = 165987969, upload-time = "2023-10-24T16:16:24.789Z" }, -] - [[package]] name = "nvidia-nccl-cu12" version = "2.21.5" @@ -9926,32 +8301,24 @@ source = { registry = "https://pypi.org/simple" } resolution-markers = [ "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", ] wheels = [ { url = "https://files.pythonhosted.org/packages/df/99/12cd266d6233f47d00daf3a72739872bdc10267d0383508b0b9c84a18bb6/nvidia_nccl_cu12-2.21.5-py3-none-manylinux2014_x86_64.whl", hash = "sha256:8579076d30a8c24988834445f8d633c697d42397e92ffc3f63fa26766d25e0a0", size = 188654414, upload-time = "2024-04-03T15:32:57.427Z" }, @@ -9962,146 +8329,141 @@ name = "nvidia-nccl-cu12" version = "2.26.2" source = { registry = "https://pypi.org/simple" } resolution-markers = [ + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", ] wheels = [ { url = "https://files.pythonhosted.org/packages/69/5b/ca2f213f637305633814ae8c36b153220e40a07ea001966dcd87391f3acb/nvidia_nccl_cu12-2.26.2-py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:5c196e95e832ad30fbbb50381eb3cbd1fadd5675e587a548563993609af19522", size = 291671495, upload-time = "2025-03-13T00:30:07.805Z" }, @@ -10115,32 +8477,24 @@ source = { registry = "https://pypi.org/simple" } resolution-markers = [ "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", ] wheels = [ { url = "https://files.pythonhosted.org/packages/02/45/239d52c05074898a80a900f49b1615d81c07fceadd5ad6c4f86a987c0bc4/nvidia_nvjitlink_cu12-12.4.127-py3-none-manylinux2014_aarch64.whl", hash = "sha256:4abe7fef64914ccfa909bc2ba39739670ecc9e820c83ccc7a6ed414122599b83", size = 20552510, upload-time = "2024-06-18T20:20:13.871Z" }, @@ -10153,146 +8507,141 @@ name = "nvidia-nvjitlink-cu12" version = "12.6.85" source = { registry = "https://pypi.org/simple" } resolution-markers = [ + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", ] wheels = [ { url = "https://files.pythonhosted.org/packages/9d/d7/c5383e47c7e9bf1c99d5bd2a8c935af2b6d705ad831a7ec5c97db4d82f4f/nvidia_nvjitlink_cu12-12.6.85-py3-none-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", hash = "sha256:eedc36df9e88b682efe4309aa16b5b4e78c2407eac59e8c10a6a47535164369a", size = 19744971, upload-time = "2024-11-20T17:46:53.366Z" }, @@ -10300,35 +8649,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/89/76/93c1467b1387387440a4d25102d86b7794535449b689f8e2dc22c1c8ff7f/nvidia_nvjitlink_cu12-12.6.85-py3-none-win_amd64.whl", hash = "sha256:e61120e52ed675747825cdd16febc6a0730537451d867ee58bee3853b1b13d1c", size = 161908572, upload-time = "2024-11-20T17:52:40.124Z" }, ] -[[package]] -name = "nvidia-nvjitlink-cu12" -version = "12.9.86" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.12' and sys_platform == 'linux'", - "python_full_version == '3.11.*' and sys_platform == 'linux'", - "python_full_version < '3.11' and sys_platform == 'linux'", -] -wheels = [ - { url = "https://files.pythonhosted.org/packages/46/0c/c75bbfb967457a0b7670b8ad267bfc4fffdf341c074e0a80db06c24ccfd4/nvidia_nvjitlink_cu12-12.9.86-py3-none-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", hash = "sha256:e3f1171dbdc83c5932a45f0f4c99180a70de9bd2718c1ab77d14104f6d7147f9", size = 39748338, upload-time = "2025-06-05T20:10:25.613Z" }, - { url = "https://files.pythonhosted.org/packages/97/bc/2dcba8e70cf3115b400fef54f213bcd6715a3195eba000f8330f11e40c45/nvidia_nvjitlink_cu12-12.9.86-py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:994a05ef08ef4b0b299829cde613a424382aff7efb08a7172c1fa616cc3af2ca", size = 39514880, upload-time = "2025-06-05T20:10:04.89Z" }, - { url = "https://files.pythonhosted.org/packages/dd/7e/2eecb277d8a98184d881fb98a738363fd4f14577a4d2d7f8264266e82623/nvidia_nvjitlink_cu12-12.9.86-py3-none-win_amd64.whl", hash = "sha256:cc6fcec260ca843c10e34c936921a1c426b351753587fdd638e8cff7b16bb9db", size = 35584936, upload-time = "2025-06-05T20:16:08.525Z" }, -] - -[[package]] -name = "nvidia-nvtx-cu12" -version = "12.1.105" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.12' and sys_platform == 'linux'", - "python_full_version == '3.11.*' and sys_platform == 'linux'", - "python_full_version < '3.11' and sys_platform == 'linux'", -] -wheels = [ - { url = "https://files.pythonhosted.org/packages/da/d3/8057f0587683ed2fcd4dbfbdfdfa807b9160b809976099d36b8f60d08f03/nvidia_nvtx_cu12-12.1.105-py3-none-manylinux1_x86_64.whl", hash = "sha256:dc21cf308ca5691e7c04d962e213f8a4aa9bbfa23d95412f452254c2caeb09e5", size = 99138, upload-time = "2023-04-19T15:48:43.556Z" }, - { url = "https://files.pythonhosted.org/packages/b8/d7/bd7cb2d95ac6ac6e8d05bfa96cdce69619f1ef2808e072919044c2d47a8c/nvidia_nvtx_cu12-12.1.105-py3-none-win_amd64.whl", hash = "sha256:65f4d98982b31b60026e0e6de73fbdfc09d08a96f4656dd3665ca616a11e1e82", size = 66307, upload-time = "2023-04-19T15:54:45.736Z" }, -] - [[package]] name = "nvidia-nvtx-cu12" version = "12.4.127" @@ -10336,32 +8656,24 @@ source = { registry = "https://pypi.org/simple" } resolution-markers = [ "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", ] wheels = [ { url = "https://files.pythonhosted.org/packages/06/39/471f581edbb7804b39e8063d92fc8305bdc7a80ae5c07dbe6ea5c50d14a5/nvidia_nvtx_cu12-12.4.127-py3-none-manylinux2014_aarch64.whl", hash = "sha256:7959ad635db13edf4fc65c06a6e9f9e55fc2f92596db928d169c0bb031e88ef3", size = 100417, upload-time = "2024-06-18T20:16:22.484Z" }, @@ -10374,146 +8686,141 @@ name = "nvidia-nvtx-cu12" version = "12.6.77" source = { registry = "https://pypi.org/simple" } resolution-markers = [ + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", ] wheels = [ { url = "https://files.pythonhosted.org/packages/b9/93/80f8a520375af9d7ee44571a6544653a176e53c2b8ccce85b97b83c2491b/nvidia_nvtx_cu12-12.6.77-py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:f44f8d86bb7d5629988d61c8d3ae61dddb2015dee142740536bc7481b022fe4b", size = 90549, upload-time = "2024-11-20T17:38:17.387Z" }, @@ -10550,11 +8857,10 @@ name = "opt-einsum-fx" version = "0.1.4" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "opt-einsum" }, - { name = "packaging" }, - { name = "torch", version = "2.2.0", source = { registry = "https://pypi.org/simple" }, marker = "(extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, + { name = "opt-einsum", marker = "extra == 'extra-5-mlipx-fairchem' or extra == 'extra-5-mlipx-mace' or extra == 'extra-5-mlipx-mattersim' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, + { name = "packaging", marker = "extra == 'extra-5-mlipx-fairchem' or extra == 'extra-5-mlipx-mace' or extra == 'extra-5-mlipx-mattersim' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, { name = "torch", version = "2.6.0", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-5-mlipx-fairchem' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "torch", version = "2.7.1", source = { registry = "https://pypi.org/simple" }, marker = "(extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, + { name = "torch", version = "2.7.0", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-5-mlipx-mace' or extra == 'extra-5-mlipx-mattersim' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-sevenn')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/93/de/856dab99be0360c7275fee075eb0450a2ec82a54c4c33689606f62e9615b/opt_einsum_fx-0.1.4.tar.gz", hash = "sha256:7eeb7f91ecb70be65e6179c106ea7f64fc1db6319e3d1289a4518b384f81e74f", size = 12969, upload-time = "2021-11-07T20:49:33.811Z" } wheels = [ @@ -10563,166 +8869,189 @@ wheels = [ [[package]] name = "optree" -version = "0.16.0" +version = "0.18.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "typing-extensions" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/49/58/4cd2614b5379e25bf7be0a2d494c55e182b749326d3d89086a369e5c06be/optree-0.16.0.tar.gz", hash = "sha256:3b3432754b0753f5166a0899c693e99fe00e02c48f90b511c0604aa6e4b4a59e", size = 161599, upload-time = "2025-05-28T09:44:45.505Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/3b/66/015eccd3ada96bf6edc32652419ab1506d224a6a8916f3ab29559d8a8afa/optree-0.16.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:af2e95499f546bdb8dcd2a3e2d7f5b515a1d298d785ea51f95ee912642e07252", size = 605912, upload-time = "2025-05-28T09:42:56.036Z" }, - { url = "https://files.pythonhosted.org/packages/37/72/3cfae4c1450a57ee066bf35073c875559a5e341ddccb89810e01d9f508f2/optree-0.16.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:aa37afcb8ed7cf9492cdd34d7abc0495c32496ae870a9abd09445dc69f9109db", size = 330340, upload-time = "2025-05-28T09:42:57.892Z" }, - { url = "https://files.pythonhosted.org/packages/55/5c/a9e18210b25e8756b3fdda15cb805aeab7b25305ed842cb23fb0e81b87d3/optree-0.16.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:854b97cc98ac540a4ddfa4f079597642368dbeea14016f7f5ff0817cd943762b", size = 368282, upload-time = "2025-05-28T09:42:59.566Z" }, - { url = "https://files.pythonhosted.org/packages/6c/ce/c01842a5967c23f917d6d1d022dbd7c250b728d1e0c40976762a9d8182d9/optree-0.16.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:774f5d97dbb94691f3543a09dafd83555b34fbce7cf195d7d28bd62aa153a13e", size = 414932, upload-time = "2025-05-28T09:43:00.871Z" }, - { url = "https://files.pythonhosted.org/packages/33/4d/46b01e4b65fd49368b2f3fdd217de4ee4916fcde438937c7fccdf0ee4f55/optree-0.16.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ea26056208854a2c23ff0316bca637e1666796a36d67f3bb64d478f50340aa9e", size = 411487, upload-time = "2025-05-28T09:43:02Z" }, - { url = "https://files.pythonhosted.org/packages/30/ec/93a3f514091bf9275ec28091343376ea01ee46685012cbb705d27cd6d48d/optree-0.16.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a51f2f11d2a6e7e13be49dc585090a8032485f08feb83a11dda90f8669858454", size = 381268, upload-time = "2025-05-28T09:43:03.633Z" }, - { url = "https://files.pythonhosted.org/packages/fb/b0/b3c239aa98bc3250a4b644c7fc21709cbbd28d10611368b32ac909834f84/optree-0.16.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a7150b7008583aba9bf0ee4dabeaec98a8dfcdd2563543c0915dc28f7dd63449", size = 405818, upload-time = "2025-05-28T09:43:05.29Z" }, - { url = "https://files.pythonhosted.org/packages/16/47/c6106e860cd279fd70fbe65c8f7f904c7c63e6df7b8796750d5be0aa536e/optree-0.16.0-cp310-cp310-win32.whl", hash = "sha256:9e9627f89d9294553e162ee04548b53baa74c4fb55ad53306457b8b74dbceed7", size = 276028, upload-time = "2025-05-28T09:43:06.594Z" }, - { url = "https://files.pythonhosted.org/packages/7a/d5/04a36a2cd8ce441de941c559f33d9594d60d11b8e68780763785dcd22880/optree-0.16.0-cp310-cp310-win_amd64.whl", hash = "sha256:a1a89c4a03cbf5dd6533faa05659d1288f41d53d13e241aa862d69b07dca533a", size = 304828, upload-time = "2025-05-28T09:43:08.15Z" }, - { url = "https://files.pythonhosted.org/packages/21/8c/40d4a460054f31e84d29112757990160f92d00ed8a7848fd0a67203ecc18/optree-0.16.0-cp310-cp310-win_arm64.whl", hash = "sha256:bed06e3d5af706943afd14a425b4475871e97f5e780cea8506f709f043436808", size = 303237, upload-time = "2025-05-28T09:43:09.884Z" }, - { url = "https://files.pythonhosted.org/packages/b2/2c/9cf4bf8054b9e91ff9189b250e410e0b586530dcfaae28eab8904759888b/optree-0.16.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:22b015d8d7b948d7815924763d473cc7f691731f3b67198f83cea835ae3e2c98", size = 626084, upload-time = "2025-05-28T09:43:11.745Z" }, - { url = "https://files.pythonhosted.org/packages/ad/25/276ba4dae7cb5a53f9b4b24bace4db9ff93b06f62f9fa93add225244637e/optree-0.16.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:768d2e12d3626a3d37f8594b7e0d7e633ff66d5de420ca6a1df7132c6a8cdc15", size = 338246, upload-time = "2025-05-28T09:43:12.986Z" }, - { url = "https://files.pythonhosted.org/packages/87/94/2e63bc4ffca82431b167388e1f56df9409c89e6f4af3d8cdeaa3dcd28ca9/optree-0.16.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d7147cef7950eee1dd8a06815f7f7be71ae0e75874d7fad1aa822a88a954b5e4", size = 381032, upload-time = "2025-05-28T09:43:14.726Z" }, - { url = "https://files.pythonhosted.org/packages/29/09/ea90f2e1660537f198c7ef722a12e6e27d4c80f1d34376a693e24f16ccc3/optree-0.16.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e2dced5d55f1ae100f475e217eab5fec8ba884e9d03f688cc654e388ec882266", size = 428110, upload-time = "2025-05-28T09:43:15.913Z" }, - { url = "https://files.pythonhosted.org/packages/e1/94/c3581125dbba0e407e65edbe183b28a681f1521c328d90b6ac5cdee1043b/optree-0.16.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9dbdbdbff6e25f3d27de8201e05ffec43c504117a48ba3ed0a2bc17ec32a1f7a", size = 423020, upload-time = "2025-05-28T09:43:17.134Z" }, - { url = "https://files.pythonhosted.org/packages/4f/56/a9e9bf3334c5ea883a7fbdbda957f667c5c983f7b0056ed54354254d99b2/optree-0.16.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0deafe21b6605bcc24f07743543e3656b2dd631772fcd152eaa26fb8a2bc0e66", size = 394549, upload-time = "2025-05-28T09:43:18.276Z" }, - { url = "https://files.pythonhosted.org/packages/43/6e/3721bf455834a4cfef1ecd9410666ec1d5708b32f01f57da7c10c2297e09/optree-0.16.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:95f0f9b05dbd53cb04f37c49a508f6462ce06fbdb1bb0e0552129de91f8d36b6", size = 416764, upload-time = "2025-05-28T09:43:19.938Z" }, - { url = "https://files.pythonhosted.org/packages/d6/72/628865bf96079052114317ecb5b93644f2a7ffbebe4687a1f05a0ef0e952/optree-0.16.0-cp311-cp311-win32.whl", hash = "sha256:cc89c7aaec64af13b78ad0018cc235599a3768310557e6dcb6e11032743f4fb7", size = 281407, upload-time = "2025-05-28T09:43:21.316Z" }, - { url = "https://files.pythonhosted.org/packages/a2/24/f29c7c819402b342020622304092a1607d6e8e8ede76610a3075663a19a7/optree-0.16.0-cp311-cp311-win_amd64.whl", hash = "sha256:f703d7926c36eebdd56fc08aabefcf32a8b7292a9dd4468e56b0ab61bf6214bd", size = 314213, upload-time = "2025-05-28T09:43:23.091Z" }, - { url = "https://files.pythonhosted.org/packages/c8/bf/3ea23ceb2cfa2c3cabf511da79e471db6e60aed74a83d584ab8f5b1f4991/optree-0.16.0-cp311-cp311-win_arm64.whl", hash = "sha256:86d5b19975bb043fbba4715d90579054af11d8fab950f1ca11f0ccfd3538c1c0", size = 311624, upload-time = "2025-05-28T09:43:24.691Z" }, - { url = "https://files.pythonhosted.org/packages/c6/08/c18e47472189bf9901ce98678f958bda15ec2f39803fea83cdf88b2f8a67/optree-0.16.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:b08eee60cd0756cd9874ffb44f5e47337c698100fd19dcdc18b86eb1518e3a0a", size = 634383, upload-time = "2025-05-28T09:43:26.09Z" }, - { url = "https://files.pythonhosted.org/packages/cc/73/d106c9d4ffcd24086504539bfb333ba0fec60664b0c4b59ce6b86268c684/optree-0.16.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:71e667b1dd0d331590e1356af506ab9896803acb85aea114f9e76a16a4e1be36", size = 341559, upload-time = "2025-05-28T09:43:27.353Z" }, - { url = "https://files.pythonhosted.org/packages/74/66/d5e668e1b54fcbaa99391b9a04504b2a1b1d992eccace3fcc04b3c7fb573/optree-0.16.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a010c919cf9652dcf0152c14a948f502c5ca7cb34a61157b4eb9c4766d3eea43", size = 376781, upload-time = "2025-05-28T09:43:28.992Z" }, - { url = "https://files.pythonhosted.org/packages/83/df/064eb5ac0aea384d7cddb4b27705ec9d59271da44a6b268e67ff589b8fb2/optree-0.16.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:78d54dbc082fc5a3402ca73c129f997dc7a13e3d64ea457a7e5688a99af36d3f", size = 424733, upload-time = "2025-05-28T09:43:30.858Z" }, - { url = "https://files.pythonhosted.org/packages/b0/ae/b0262777f4fa560b556c7971a63ccc4682c090a547d0aff45a8b41296d4d/optree-0.16.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ecb34c46af996c6d7ed9eda4ea0bf01671aee84a5503cf3f4445502d0c01a853", size = 420486, upload-time = "2025-05-28T09:43:32.172Z" }, - { url = "https://files.pythonhosted.org/packages/fe/63/2f91e91e743fd70966bf558855f8ce42156a459dcda4f4569091a5960c71/optree-0.16.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:690440c8296bc8b9e76f830066ed899186dcfa51d404c9b72dca3acced17ca6f", size = 390836, upload-time = "2025-05-28T09:43:34.493Z" }, - { url = "https://files.pythonhosted.org/packages/e5/33/48ac6749986e440838990a16beb830ddc1c30d8dba150a030a53377abf77/optree-0.16.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f08aaa1c2ae092b3e662125ad19860046c63d7451d41be133ddd6594920e295e", size = 412699, upload-time = "2025-05-28T09:43:36.81Z" }, - { url = "https://files.pythonhosted.org/packages/0e/d2/c87a225c14c4ca642c67b1e7a668091441aa52dcf142ea0147f2fdba21d4/optree-0.16.0-cp312-cp312-win32.whl", hash = "sha256:c9ba09623fc287a1c887a1e070d780369df561c78acb51281d8bf373a0fcef27", size = 282475, upload-time = "2025-05-28T09:43:38.051Z" }, - { url = "https://files.pythonhosted.org/packages/4e/9e/d485bff9dee0efa90883bb54590dd8b18067ae3ea34c34a7b91d30cd5d1d/optree-0.16.0-cp312-cp312-win_amd64.whl", hash = "sha256:6ae2bf009f2a6a7c38f69d70eb0d8e9afd7a871b80c8682d98ce8f25cc50df40", size = 315159, upload-time = "2025-05-28T09:43:39.605Z" }, - { url = "https://files.pythonhosted.org/packages/d0/84/da021d0b557518fcb7120954f3d55d50d62b2d44945d000033b238cb9330/optree-0.16.0-cp312-cp312-win_arm64.whl", hash = "sha256:9185e76a826a3e0c10f73917b05e3a79a969e9b6a9e83b26d9b4130fa9d3fc06", size = 307796, upload-time = "2025-05-28T09:43:40.823Z" }, - { url = "https://files.pythonhosted.org/packages/1a/e9/8abe32635c32b23e4dc8aaa93746229557046f01e2ecbf3cf8b776995a12/optree-0.16.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e974f28c699baf1565765645a71cfe5a47886fd6297225090c18204f49b4037c", size = 643038, upload-time = "2025-05-28T09:43:42.05Z" }, - { url = "https://files.pythonhosted.org/packages/8b/70/3b8d96e14c182e606d83402e27b364b50a34a992b7c4ac419de2deed3609/optree-0.16.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:33a839c1740c73de589bf2a8154f27e4729df6fc0ca9fee5c11ccbeb167a5f4e", size = 345653, upload-time = "2025-05-28T09:43:43.439Z" }, - { url = "https://files.pythonhosted.org/packages/da/b0/2d075e958b593b1211ed75bc8e34225005244260979155fe4a58699295e6/optree-0.16.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0f81e5055c51f862f68dd0ffce110ed3263c3934ecd37aae0210ce65e6a939bd", size = 379398, upload-time = "2025-05-28T09:43:44.765Z" }, - { url = "https://files.pythonhosted.org/packages/90/aa/fb57d68b9ccd3fefb7b1ebadef2abee592fd4bfc0b9a03ed42c0e1b41bf0/optree-0.16.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b0451ee3e28ce6bb7b66e97cc3b17ac1cd7f84b39be289da67eff9a886d5f207", size = 429925, upload-time = "2025-05-28T09:43:46.139Z" }, - { url = "https://files.pythonhosted.org/packages/11/ad/1113dd5b4b46b0ada7323d062c0baa955b311307046e17c3d42507ed56cb/optree-0.16.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6ec096061cd4a4c5573a25e6eb7cf45786af2d89acd3baefc1f78e70088dba03", size = 424750, upload-time = "2025-05-28T09:43:47.46Z" }, - { url = "https://files.pythonhosted.org/packages/e9/a5/33bb32d96ca8a3466cac7bd806a8f48de0e5509fe142298cdf6cef08d6b5/optree-0.16.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:330a47cc6e016190512c5af0f665d7e6c0ff7ba48c2803204a66cf305f981adc", size = 394116, upload-time = "2025-05-28T09:43:48.735Z" }, - { url = "https://files.pythonhosted.org/packages/bf/ef/dc43196b9d49b2c587daf0ab450af36968d83d59332c9f256db12b666672/optree-0.16.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:408203ecdff202d34c31f49daec9b3a279e1c027e24729a8b13ab19d5f1b19e6", size = 416988, upload-time = "2025-05-28T09:43:50.101Z" }, - { url = "https://files.pythonhosted.org/packages/2b/4c/ef43835d45c5da4003392d958dabbb94abedbcf27345dc384bf2d66f254a/optree-0.16.0-cp313-cp313-win32.whl", hash = "sha256:74390ac8c1f72e439de3f7cf8e67f3b541fac7adbfff6b48bf8be79014e80120", size = 284381, upload-time = "2025-05-28T09:43:51.353Z" }, - { url = "https://files.pythonhosted.org/packages/40/e5/1f61f454101da963d8da10864291141d27e43ff7a305aa8d708990e41cba/optree-0.16.0-cp313-cp313-win_amd64.whl", hash = "sha256:b7390b7f65809555ed43598c1df18a8757b3a4396c279e5f9fcfab88ad0bc59b", size = 317191, upload-time = "2025-05-28T09:43:52.556Z" }, - { url = "https://files.pythonhosted.org/packages/c7/d0/6f9582ff817940e180a3afe88686267b8b8c8e467d86395358e8d2d45fed/optree-0.16.0-cp313-cp313-win_arm64.whl", hash = "sha256:cd498cf726856ba6b9a49b29c72021940e6a0c4ae475d7a91094a00372eebdfb", size = 310338, upload-time = "2025-05-28T09:43:53.712Z" }, - { url = "https://files.pythonhosted.org/packages/c5/e5/2739183bae5a7b5701ba5c66f7d64a2449c95af18e080e2433c337138692/optree-0.16.0-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:d4545602ab8eb1da3669c4dd6dd73b81fb68e575c5dd9c2147e1d4db395a6ebf", size = 731956, upload-time = "2025-05-28T09:43:55.097Z" }, - { url = "https://files.pythonhosted.org/packages/ec/18/d21cc2c0a49a68f21a9cc58346b4af2895d3b8416226fdaf30cbae438581/optree-0.16.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:22f06cd5a35676bad9ca26787f160b267f61d1b33f4edca72be8888fdb3d5c68", size = 390856, upload-time = "2025-05-28T09:43:56.386Z" }, - { url = "https://files.pythonhosted.org/packages/a8/b8/41426779c7c888d67041aa39240ea24644e3b9820c0055a7f06b90082f14/optree-0.16.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:52e1c48220a9b95d30cde4e1f2506db8bf1f5c2ee5c74013bf74bf0b796c8a17", size = 396729, upload-time = "2025-05-28T09:43:57.717Z" }, - { url = "https://files.pythonhosted.org/packages/3e/1e/1cf1a8d644d4251d72b9006b50379b925968f96f31fcb835b83061206b77/optree-0.16.0-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e424fdfb6ff3240de98e236571581220872363c5ff7fe3beb4020dc8cfc8d824", size = 444006, upload-time = "2025-05-28T09:43:59.63Z" }, - { url = "https://files.pythonhosted.org/packages/37/aa/d4ecfb736bc65b244899a3e8b644d980ffa9740225d84f7987758b04a091/optree-0.16.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1a8d25e57b6cbd45ac2915a8a42d9a09aa1b7d8e7d4d61470525dd15f1acf039", size = 441827, upload-time = "2025-05-28T09:44:01.551Z" }, - { url = "https://files.pythonhosted.org/packages/b3/b9/5fe578d5a7332be3c00aa85f65c75c814094875352582c09cb8aece38cce/optree-0.16.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:317595e4018f99b4f1dc6d357fe40c7db4ee1252bb3d578b5c15e17a5c6e8c1f", size = 410448, upload-time = "2025-05-28T09:44:03.285Z" }, - { url = "https://files.pythonhosted.org/packages/c0/bf/ab77af44f87d076964a49843c5708cfcac811e7b544647dcf7fb7e94c86b/optree-0.16.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:84c93c2ade2eba3d32085f7091c6d3aa959585f65691b785c54b8a966b1046fe", size = 431813, upload-time = "2025-05-28T09:44:04.512Z" }, - { url = "https://files.pythonhosted.org/packages/30/1e/9e90b299ca2a4058c32c58192e78ceafb68598f9faebe8d82582b1eed2a0/optree-0.16.0-cp313-cp313t-win32.whl", hash = "sha256:4dc00c14c39b5fef9f71ac0a74591039eb97a40ab56e75fe6eea8c5916118b27", size = 315553, upload-time = "2025-05-28T09:44:05.747Z" }, - { url = "https://files.pythonhosted.org/packages/01/b2/f7a00906ebc9262834dbbb133a27d7a32b292f956c68a57f3cf11343a9d8/optree-0.16.0-cp313-cp313t-win_amd64.whl", hash = "sha256:d20b50e9ba079221a770daa5519d1a11745b77058cdfd0dc99b1524303bfeffb", size = 352607, upload-time = "2025-05-28T09:44:07.455Z" }, - { url = "https://files.pythonhosted.org/packages/be/8d/657abb2dc59e442a79e8fd777bcd34372289187ac8dede5f104968707cd6/optree-0.16.0-cp313-cp313t-win_arm64.whl", hash = "sha256:3b9ec4bda865042c8a8ff618bcaae5488b624cea0f48e67507c1f0b9d97be383", size = 345656, upload-time = "2025-05-28T09:44:08.67Z" }, - { url = "https://files.pythonhosted.org/packages/90/03/0bca33dad6d1d9b693e4b6fcffcd10455dda670aea9f08c1ee1fc365baa0/optree-0.16.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:76ee013fdf8c7d0eb70e5d1910cc3d987e9feb609a9069fef68aec393ec26b92", size = 335804, upload-time = "2025-05-28T09:44:24.736Z" }, - { url = "https://files.pythonhosted.org/packages/dd/41/3601a7b15f12bfd01e47cfcbd4c49ac382c83317c7e5904a19ab5899b744/optree-0.16.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c090cc8dd98d32a3e2ffd702cf84f126efd57ea05a4c63c3675b4e413d99e978", size = 372004, upload-time = "2025-05-28T09:44:26.115Z" }, - { url = "https://files.pythonhosted.org/packages/7a/58/90ddd80b0cf5ff7a56498dab740a20348ce2f8890b247609463dab105408/optree-0.16.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d5d0f2afdcdafdb95b28af058407f6c6a7903b1151ed36d050bcc76847115b7b", size = 408111, upload-time = "2025-05-28T09:44:27.85Z" }, - { url = "https://files.pythonhosted.org/packages/71/51/53f299eb4daa6b1fc2b11b5552e55ac85cf1fe4bab33f9f56aa1b9919b73/optree-0.16.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:236c1d26e98ae469f56eb6e7007e20b6d7a99cb11113119b1b5efb0bb627ac2a", size = 306976, upload-time = "2025-05-28T09:44:29.644Z" }, - { url = "https://files.pythonhosted.org/packages/8f/6b/89089d13f9696daf0279d912ea5fa7e4468d8dbe910d283e48a7c0211be3/optree-0.16.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:0dd607bfbf59ecf92b069af18e8a41b0d8628e21f2de5a738fad039d0a89d9d4", size = 345528, upload-time = "2025-05-28T09:44:30.965Z" }, - { url = "https://files.pythonhosted.org/packages/32/43/935d550da1ad78ac9be6043c0b1db9aa50e2604228c1d947411dcbbaf5f5/optree-0.16.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d6f807965bc8ca5e2af453d77f0f6a64cc0ece1420297d194a52f250aa15f4ce", size = 385799, upload-time = "2025-05-28T09:44:32.42Z" }, - { url = "https://files.pythonhosted.org/packages/e7/be/66319fbd4b616cb0fb843ff2c43a95dd2ec7b4d2baf7f7cd115ca62bdb30/optree-0.16.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2d1698d88016747e01c09121a2c0a8a482236d44ff2369c4420f7c9acb615e46", size = 420612, upload-time = "2025-05-28T09:44:34.6Z" }, - { url = "https://files.pythonhosted.org/packages/bf/11/83b8f451424dfc9121a296358bf797fc65e68302ec9197d9ae537e3cd74a/optree-0.16.0-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:1c88be69d791fb5bc72f1ead2fb48abe20775fc95356eba09fc79ca84b8924d3", size = 316369, upload-time = "2025-05-28T09:44:36.169Z" }, +sdist = { url = "https://files.pythonhosted.org/packages/83/8e/09d899ad531d50b79aa24e7558f604980fe4048350172e643bb1b9983aec/optree-0.18.0.tar.gz", hash = "sha256:3804fb6ddc923855db2dc4805b4524c66e00f1ef30b166be4aadd52822b13e06", size = 165178, upload-time = "2025-11-14T08:58:31.234Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/aa/b2/66c12a8707722bad5f25cd917d528796544fc9045c5933532f5db071cb02/optree-0.18.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:80f28e4666aad66e5e20bdc2c47b5bf320250bb5407b3a39dfb1772787a7068f", size = 363110, upload-time = "2025-11-14T08:56:44.782Z" }, + { url = "https://files.pythonhosted.org/packages/d4/f6/5377f265a8dcd61edabf8b87b657d78fca9051eeaf311ed77f73b43526a9/optree-0.18.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:72fa79be4d6515682417f103ae759a22345439eb1319886be936029215ee00dc", size = 337284, upload-time = "2025-11-14T08:56:46.039Z" }, + { url = "https://files.pythonhosted.org/packages/5e/d7/3045564c1183c7b7cfb32d11a6250fbe9f904f723c02c80a91f71c150b78/optree-0.18.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:4cc92339899acb685ee718fd22b25069dfa7be038c63274c54481d54ccc2f9e2", size = 361562, upload-time = "2025-11-14T08:56:47.162Z" }, + { url = "https://files.pythonhosted.org/packages/bd/32/5a7b5a441d82b44c6d2b31ad14f7b1a4d3be7afcc38437d07762212bc9c6/optree-0.18.0-cp311-cp311-manylinux_2_26_i686.manylinux_2_28_i686.whl", hash = "sha256:1545c68299c0ce600e4ea1bc9112765dc4afe9a0b8ab43f955df6566bf78db42", size = 420660, upload-time = "2025-11-14T08:56:48.478Z" }, + { url = "https://files.pythonhosted.org/packages/0d/06/fc7aea4d6c72c4e0f42c157183b3e91c615fdc15da5a5e4e5f8b596a24f3/optree-0.18.0-cp311-cp311-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:8a901666afc2d7a8d0c20decc8079763e3313457ee67210382162d90163c0007", size = 417586, upload-time = "2025-11-14T08:56:49.51Z" }, + { url = "https://files.pythonhosted.org/packages/95/cc/bb0607eb8d20cf80ea6b122c059954fb525bbbb7150d650fd87696e4d141/optree-0.18.0-cp311-cp311-manylinux_2_26_s390x.manylinux_2_28_s390x.whl", hash = "sha256:efd162e3bfc7812d75ebf2d0fb2783daee2407a92155af8a90650a6b0fa9342e", size = 413013, upload-time = "2025-11-14T08:56:50.842Z" }, + { url = "https://files.pythonhosted.org/packages/2a/6f/7f2238ec5e9d33e56252c30880bb8f44aec1415474b62b9e33b38594953d/optree-0.18.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b0986ff1267a3b44d3ed76c3efb8b7239371444143f6e0d79f9dd23dbe02c7f9", size = 400775, upload-time = "2025-11-14T08:56:52.249Z" }, + { url = "https://files.pythonhosted.org/packages/e5/42/f17e2977ecacdbca50c888731c4f0488f4d499fca1c48c3063bff0d5303b/optree-0.18.0-cp311-cp311-manylinux_2_39_riscv64.whl", hash = "sha256:382e5ca02cbd5b20d713d4da189a8613f828832e2af57ccbe04a9c6b0bd9497e", size = 359998, upload-time = "2025-11-14T08:56:53.321Z" }, + { url = "https://files.pythonhosted.org/packages/73/f2/f5c5758e5db9d1b52e7b7809dcf876f071f64ec03bbd6007eee633bf0027/optree-0.18.0-cp311-cp311-win32.whl", hash = "sha256:056894ce6242cd1c7fed71325a7d9f633b2d3b4420c52af48f6a0c4560d74ca1", size = 283573, upload-time = "2025-11-14T08:56:54.426Z" }, + { url = "https://files.pythonhosted.org/packages/d5/a3/91942b7e6e365f4e05d196dbbb52909aae11f1e2f4b4c8aee5b506f93877/optree-0.18.0-cp311-cp311-win_amd64.whl", hash = "sha256:86f5bf05ad236f666e5395e989d6ac2cbfd02556526703e6c6f0a594c7fa081f", size = 312223, upload-time = "2025-11-14T08:56:55.812Z" }, + { url = "https://files.pythonhosted.org/packages/64/af/a98364b1b27516942db07d9841d8ac2d7ba96039bcd8ed496f7b3f297dc4/optree-0.18.0-cp311-cp311-win_arm64.whl", hash = "sha256:9b1e7e8f9ddc85f05d542b74157bdb73ed0e49aded67d1775f721fcd6eb9be94", size = 317247, upload-time = "2025-11-14T08:56:57.795Z" }, + { url = "https://files.pythonhosted.org/packages/d7/9d/e32dba0876d6514b40cd30e57938e3605b7e07d827ac617f072ff64d9cff/optree-0.18.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:f02faeda66d531dc5f5356589afcf2a6bc41c8d00bc903efab60f9a2182b140d", size = 369756, upload-time = "2025-11-14T08:56:58.793Z" }, + { url = "https://files.pythonhosted.org/packages/d5/60/e643c3ab2cea904d24e56ab0060c905443ceac716e542392ad8db87f09ef/optree-0.18.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:e28024e6e343353285cf99ae9c74210f0e89e47b2f0f3af7c72c4a9e89dc3ebc", size = 342794, upload-time = "2025-11-14T08:56:59.819Z" }, + { url = "https://files.pythonhosted.org/packages/79/af/c002cc41f6eba05fddcd6435e7c4ccc037a39a345de824d1a515386b52ee/optree-0.18.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:057b983a9526645133553184bed7090bb07855df986abd9e99c456922045c6bc", size = 364436, upload-time = "2025-11-14T08:57:01.17Z" }, + { url = "https://files.pythonhosted.org/packages/c8/32/2049f9597ae75a6a1b9c872ffcc31d96ebebf62ff1b20160eb972aea5456/optree-0.18.0-cp312-cp312-manylinux_2_26_i686.manylinux_2_28_i686.whl", hash = "sha256:8a2003fab79694e04b5f260628511e441c248b46a9fc46138e2424038ac04ada", size = 425359, upload-time = "2025-11-14T08:57:02.509Z" }, + { url = "https://files.pythonhosted.org/packages/d0/14/523cfb3a139df0d2a064b38497c7ee6e49edac6e07c777d2069cffd8545c/optree-0.18.0-cp312-cp312-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:02d9999840fabef85a6b22e757f336d5591f712f99c710d8b232d52e53115314", size = 421373, upload-time = "2025-11-14T08:57:03.953Z" }, + { url = "https://files.pythonhosted.org/packages/65/48/febb5976fa4f37a805809757b050d95effb25a17d3fec439349d18f5d451/optree-0.18.0-cp312-cp312-manylinux_2_26_s390x.manylinux_2_28_s390x.whl", hash = "sha256:79bbe14d6cad81f5840958589daa1b836864ada40031712a446dce8129917efd", size = 420798, upload-time = "2025-11-14T08:57:05.02Z" }, + { url = "https://files.pythonhosted.org/packages/02/9c/c38b861e504829e0dcbed2e2b5bc865a98fb7c655e2ddd2bf8e1fd6ae712/optree-0.18.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a74c45f04def041504bd21682eaf7f359f1a50dc7cf42b548b6f19aab50596bd", size = 408195, upload-time = "2025-11-14T08:57:05.983Z" }, + { url = "https://files.pythonhosted.org/packages/2e/71/ff4b053ad1242f3d0b8792caa786c1c0138c1fb3d0c0a3720ccc21725739/optree-0.18.0-cp312-cp312-manylinux_2_39_riscv64.whl", hash = "sha256:d2844478690b5892159df0b2500e9d146dc8d3aa5b44e4564d05787b7330eca3", size = 364997, upload-time = "2025-11-14T08:57:07.306Z" }, + { url = "https://files.pythonhosted.org/packages/5f/09/a71dbc096e8195d0e0fe990b394884d061938e0b918b61d16d48d817c0d5/optree-0.18.0-cp312-cp312-win32.whl", hash = "sha256:cfa2e16993ba47e671a4e7ee1ad805f67b8d6744eb30a9d27ea0b07b3b7a22ed", size = 286802, upload-time = "2025-11-14T08:57:08.674Z" }, + { url = "https://files.pythonhosted.org/packages/5d/95/a487d5c93dcb50d768c4cd7d17476b4ce4360c5943bb7251d1e26d38e5cf/optree-0.18.0-cp312-cp312-win_amd64.whl", hash = "sha256:89e81afb11792d13d3777b503c6f21ec17b1a3b7de69cde1ae2c5471bcdcd4a0", size = 312381, upload-time = "2025-11-14T08:57:09.98Z" }, + { url = "https://files.pythonhosted.org/packages/91/ba/0559af098b33103bc65ba9d0c38454e21c142279b913c0b87a89c59c520d/optree-0.18.0-cp312-cp312-win_arm64.whl", hash = "sha256:4eb146711d4cd0876bf93e0118d3e74050b6f633d756c269ce7cda907281b499", size = 315747, upload-time = "2025-11-14T08:57:11.033Z" }, + { url = "https://files.pythonhosted.org/packages/74/60/57874760770dba39e799c88505898b7441786cea24d78bfe0a171e893212/optree-0.18.0-cp313-cp313-android_24_arm64_v8a.whl", hash = "sha256:8d88c00c70b5914904feaf8f505f3512c2f3f4493dbbd93951fcdddc85dcfe8c", size = 876547, upload-time = "2025-11-14T08:57:12.492Z" }, + { url = "https://files.pythonhosted.org/packages/c8/bb/413263435c557193c436d977689d1c560a08e362f5bca29e3d62b093412a/optree-0.18.0-cp313-cp313-android_24_x86_64.whl", hash = "sha256:c8841d44f3648b0662e99fc39ef8c248726ddfb4d1bfce4bdba982e51bb7e3f8", size = 876759, upload-time = "2025-11-14T08:57:13.673Z" }, + { url = "https://files.pythonhosted.org/packages/00/6a/c0f03b83fe888af829591561af398bb7bbe1ea770c7e7475b4d464b4dd7c/optree-0.18.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl", hash = "sha256:385bd727cc7bd3c01bd6204028ac2adce8a8f622c296053d9df434aa0e30b01f", size = 340330, upload-time = "2025-11-14T08:57:14.749Z" }, + { url = "https://files.pythonhosted.org/packages/10/e1/ea857ed58f36c7d2071aef8f67ca0c911e45ded8cb482636185e842550ae/optree-0.18.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl", hash = "sha256:6fc9f8acde3bb561b2034e96079507fbe6d4624058fe204161eb8ef29f961296", size = 346098, upload-time = "2025-11-14T08:57:15.862Z" }, + { url = "https://files.pythonhosted.org/packages/5b/7c/9ed10c406028c6b215cd26be4a7afd711a323fd98f531432c1d2921f188b/optree-0.18.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:71ca2fcad8972ba56d6cfffbcd962f45f5d4bc04182f23d66154b38c2eb37de3", size = 372349, upload-time = "2025-11-14T08:57:16.935Z" }, + { url = "https://files.pythonhosted.org/packages/09/67/51acf67b1b9850e990a1a9b3fa0afcb5bbe9d645b0b6b8be5b3f2dca8f04/optree-0.18.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:fa8e3878a1857761d64f08a23b32140d29754a53f85f7c87186ced2b5b1b49cb", size = 346522, upload-time = "2025-11-14T08:57:17.953Z" }, + { url = "https://files.pythonhosted.org/packages/24/22/ae957579e22d53d4d24de6bad0a3b3811612fd70a8ecd0c85c81253f22e3/optree-0.18.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:27611c6c122745a003b5be7aedba49ef86e9fef46d743c234596de0bde6dc679", size = 368715, upload-time = "2025-11-14T08:57:19.392Z" }, + { url = "https://files.pythonhosted.org/packages/e1/6d/9a3399af22aea044a58e1734257b575b9b17eb67c2c6fcbbb194268e6946/optree-0.18.0-cp313-cp313-manylinux_2_26_i686.manylinux_2_28_i686.whl", hash = "sha256:cbb083a15ea968ad99e7da17d24632348d69e26534e83c69941f3020ed7536eb", size = 430189, upload-time = "2025-11-14T08:57:20.552Z" }, + { url = "https://files.pythonhosted.org/packages/94/07/9c63a8cad90993848ac6cae5162e2e40f62e9a0738cb522972662ef3c7ab/optree-0.18.0-cp313-cp313-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:0d25941de1acba176305dbdeb931dea6143b30d64ebdc5bfea2bfc12ef9e2b0a", size = 424979, upload-time = "2025-11-14T08:57:21.96Z" }, + { url = "https://files.pythonhosted.org/packages/4a/82/0ab26372377ba1a422a6f38d8237bb2d061dcd23be85bc3ed77404f7b05c/optree-0.18.0-cp313-cp313-manylinux_2_26_s390x.manylinux_2_28_s390x.whl", hash = "sha256:1db0a6497203a13063a8f044ae751dd5d8253cb815359270c38de0e4c9f8bed5", size = 423201, upload-time = "2025-11-14T08:57:23.047Z" }, + { url = "https://files.pythonhosted.org/packages/19/68/0a761a4f1b2e56ffbf3f223e967074c1331404f6dfb2b2cda6ecf62f4653/optree-0.18.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:328857d7a35129904b21164f6b0c2ff1d728ad1f5838589c5f437a16c94213c8", size = 414079, upload-time = "2025-11-14T08:57:24.205Z" }, + { url = "https://files.pythonhosted.org/packages/5d/80/29a767bff7413aa593075477a9d17a05d5098bfc0878c087e6b76a3b15df/optree-0.18.0-cp313-cp313-manylinux_2_39_riscv64.whl", hash = "sha256:9d4b9d8c7e9335120ecf222d817699d17de743ad118080fb40467c367f009143", size = 368196, upload-time = "2025-11-14T08:57:25.328Z" }, + { url = "https://files.pythonhosted.org/packages/16/b6/7dfeb866a56f478103faaede5488e55f03916fa707de716ead34dd6f2c3f/optree-0.18.0-cp313-cp313-win32.whl", hash = "sha256:8b9ad4a01a1346b11acc574b7f932dea1a7c7ab31d93546a7540a1f02b3e724a", size = 287207, upload-time = "2025-11-14T08:57:26.461Z" }, + { url = "https://files.pythonhosted.org/packages/7f/92/6e803aa6bf441fae18874f1953e656e179d402b7cbc00c33ae68f0b632db/optree-0.18.0-cp313-cp313-win_amd64.whl", hash = "sha256:5b75e32c191e4b8cf42a8aa854ed264df82936136c0bcad77be44605da41cdfc", size = 314929, upload-time = "2025-11-14T08:57:27.762Z" }, + { url = "https://files.pythonhosted.org/packages/bd/85/e59302d4286552d2694b118e6f5a886490cfd939751c2011b2d3638b2d02/optree-0.18.0-cp313-cp313-win_arm64.whl", hash = "sha256:8a4ca121b6fc6b04300fa225fe6c31897e424db0d92691875af326f8c4e1cead", size = 317459, upload-time = "2025-11-14T08:57:28.826Z" }, + { url = "https://files.pythonhosted.org/packages/44/c9/2009e027f500fb38920d349523dd06b5714687905be24fe06bab90082706/optree-0.18.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:27b1d0cadcf4627c98abbbdce912dbc2243f5687f3c7df39963b793c89321c65", size = 415598, upload-time = "2025-11-14T08:57:29.936Z" }, + { url = "https://files.pythonhosted.org/packages/e2/d1/de1d6d8654d4765a439f27a155d098092ec8670039e2e0ec8383383a2fe7/optree-0.18.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:b8adc912ecb6e4fd9df227ded66efaa6702f46a98e1403554be3c9c51d0ca920", size = 387016, upload-time = "2025-11-14T08:57:31.071Z" }, + { url = "https://files.pythonhosted.org/packages/ec/30/6ce07f763b6c0d967a2d683a486eb4450ec053aeae9731133dba600232b2/optree-0.18.0-cp313-cp313t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5bc1221068a58175e0ad62afc199893f77c653206673a5552992a604c66fb77e", size = 386289, upload-time = "2025-11-14T08:57:32.146Z" }, + { url = "https://files.pythonhosted.org/packages/76/26/14ed2ff6a69490754446910280a8d0195c489e9fe610d37046b254971627/optree-0.18.0-cp313-cp313t-manylinux_2_26_i686.manylinux_2_28_i686.whl", hash = "sha256:a479fa25b6e2430e530d00f0c27a55e15ecb9de8ad2d0aec3d40b680e2d6df64", size = 442286, upload-time = "2025-11-14T08:57:33.285Z" }, + { url = "https://files.pythonhosted.org/packages/f3/c7/50bd556ffc76a1cdac1b7460428dee62f8359b60ed07c9846eab0acb5696/optree-0.18.0-cp313-cp313t-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:446c46c53cb8f13abcc0d7dd1989d59bb059953c122fe9901ef53de7fb38b33e", size = 438254, upload-time = "2025-11-14T08:57:34.358Z" }, + { url = "https://files.pythonhosted.org/packages/47/0e/bb9edf64e79f275e5f59fc3dcc49841147cff81598e99e56413523050506/optree-0.18.0-cp313-cp313t-manylinux_2_26_s390x.manylinux_2_28_s390x.whl", hash = "sha256:81e755124b77e766166c9d05206b90c68f234f425ad2e3c8a6c96f0db548c67b", size = 437817, upload-time = "2025-11-14T08:57:35.382Z" }, + { url = "https://files.pythonhosted.org/packages/be/c4/808b606f840cb53fca2a94cbe82ff26fe23965484dfc4fbb49b6232f990b/optree-0.18.0-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:7ae6945f68771b1389ee46a1778e779f4ad76bca9306f3e39eb397f9a0dd2753", size = 426692, upload-time = "2025-11-14T08:57:36.652Z" }, + { url = "https://files.pythonhosted.org/packages/1e/b7/4156ec100d5539400e85ec213e86e154c396efa6135be277de74e19748e2/optree-0.18.0-cp313-cp313t-manylinux_2_39_riscv64.whl", hash = "sha256:571b732229d7b2e7a2215f57586f8ec0140e07c0faea916e456cbbfa819e56cb", size = 387482, upload-time = "2025-11-14T08:57:37.806Z" }, + { url = "https://files.pythonhosted.org/packages/a0/3b/76a1b45688be72e37965aa467296ebbc743786492287d45907e045933625/optree-0.18.0-cp313-cp313t-win32.whl", hash = "sha256:3014537ff7e4e091ee46e57976f7d95c52f66a0e3eb5ebcbe0de0d924504b58e", size = 318347, upload-time = "2025-11-14T08:57:39.153Z" }, + { url = "https://files.pythonhosted.org/packages/b7/21/87a30a42f1c14365099dc2d656c73bef90a2becbaa1249eca09bf4d9277b/optree-0.18.0-cp313-cp313t-win_amd64.whl", hash = "sha256:a63df296fec376c5cd08298a85109db4a130f4cc8df15916fc92d44ef6068937", size = 351794, upload-time = "2025-11-14T08:57:40.247Z" }, + { url = "https://files.pythonhosted.org/packages/bc/34/37f409de017aa06ee98a01ddb8b93960bd29459f01f090cc461a250977d2/optree-0.18.0-cp313-cp313t-win_arm64.whl", hash = "sha256:9460cba62e941626beb75c99a803373b38a52136d5f1932fcdfdcede1df6f2ef", size = 351225, upload-time = "2025-11-14T08:57:41.582Z" }, + { url = "https://files.pythonhosted.org/packages/3e/f0/dabcb70f2065f782e4c2fac18bde75267d24aa5813b58e7ae9e045ecf9f0/optree-0.18.0-cp314-cp314-android_24_arm64_v8a.whl", hash = "sha256:5b126c34b459ef4f10f3a4d7d222416d9102b3c5a76b39f346c611792f144821", size = 876006, upload-time = "2025-11-14T08:57:42.676Z" }, + { url = "https://files.pythonhosted.org/packages/3c/da/6d524879da8892ea8a2562278d0aca06827e7c053015806c5853bb9c3bd8/optree-0.18.0-cp314-cp314-android_24_x86_64.whl", hash = "sha256:895f23a4cd8aee2c2464efdad2d9bde28a2aaabee634c96423a933f40e74a67e", size = 876251, upload-time = "2025-11-14T08:57:44.173Z" }, + { url = "https://files.pythonhosted.org/packages/54/f8/588807ec9c21bfec2fcf6b3e4f93abac62cad9bc0b8c0e248f1c30d9c160/optree-0.18.0-cp314-cp314-ios_13_0_arm64_iphoneos.whl", hash = "sha256:db00c604c1ae452f6092293bf230984d4f6cbb3ad905a9991e8cf680fd7d1523", size = 339800, upload-time = "2025-11-14T08:57:45.301Z" }, + { url = "https://files.pythonhosted.org/packages/b8/b9/a4214afaa44ff7d8b2c02ed058b318fcfd73af06daeac45d4845ef26d1b6/optree-0.18.0-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl", hash = "sha256:7172b16e87c87160475275e4bfaa6e4067ccde184d2cca65ba25a402a8ed7758", size = 345613, upload-time = "2025-11-14T08:57:46.362Z" }, + { url = "https://files.pythonhosted.org/packages/8c/cd/31ca853e5f1e9002789de46e5263a3f23d9f9cb9fa490c8bf97fb02076c1/optree-0.18.0-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:5e669f98b9af9f66144c7ae09912d0367ac3182abe016f67cdd15cb45e13c923", size = 371117, upload-time = "2025-11-14T08:57:47.468Z" }, + { url = "https://files.pythonhosted.org/packages/66/e1/45193039b4432f4142eb978c847cd64533c4db7dc5dcdeb406ceac396961/optree-0.18.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:0959bac58631e64e2ac6349cc284b37872c24f353b3d73b4682202a431f07d76", size = 346091, upload-time = "2025-11-14T08:57:48.604Z" }, + { url = "https://files.pythonhosted.org/packages/dc/33/8c6efe13c5cccb464bba868203649888dc875d2010c8a1acec0e9af88e37/optree-0.18.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:cde70c97e4cc4e997e8fda2266e40a9bff7679c72ab4af6e15e81748a12882cc", size = 370191, upload-time = "2025-11-14T08:57:49.73Z" }, + { url = "https://files.pythonhosted.org/packages/f0/5e/0fffd06757494e88b3e5699f6df2da301dd9bf19a4f31c197c585dc5001e/optree-0.18.0-cp314-cp314-manylinux_2_26_i686.manylinux_2_28_i686.whl", hash = "sha256:9104fc8915890e7292e5833fc677e4749607c67aa3cf8884677267078201c2f3", size = 430059, upload-time = "2025-11-14T08:57:50.837Z" }, + { url = "https://files.pythonhosted.org/packages/bf/17/92d0dade6ff46aebad86ae23ac801251e7de18526eee216986de684c3375/optree-0.18.0-cp314-cp314-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:1f674e34202383f8b42fa9335f13bedfb6b6f019c66e1f41034929e4be203423", size = 426169, upload-time = "2025-11-14T08:57:52.211Z" }, + { url = "https://files.pythonhosted.org/packages/e5/36/eedcfcd421801578119ff5fb6731cd50c65f57a729f6f76f8fe6f37d9939/optree-0.18.0-cp314-cp314-manylinux_2_26_s390x.manylinux_2_28_s390x.whl", hash = "sha256:1b75e083137f361377ff8d70df885ab3a1cf8980e4019e3f311237579adadb64", size = 426153, upload-time = "2025-11-14T08:57:53.591Z" }, + { url = "https://files.pythonhosted.org/packages/63/a6/0bf029f0bdd05f49548644267fc69574a7ca18735010a86d736e7a1ed03c/optree-0.18.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:c1f20e8754abe312a701ee00d071ddd8502e9d97ca38fbc56204d14a9ffcb41c", size = 413576, upload-time = "2025-11-14T08:57:54.714Z" }, + { url = "https://files.pythonhosted.org/packages/5e/de/71c51bdf6053e6d7cbdf176eb30d7b5c5ad6180eb6e822d13b36b1edecff/optree-0.18.0-cp314-cp314-manylinux_2_39_riscv64.whl", hash = "sha256:289b184cc41dfc400a30db6207ec997884d14540aae2cba10cb88dc7ebaae2a1", size = 369173, upload-time = "2025-11-14T08:57:56.169Z" }, + { url = "https://files.pythonhosted.org/packages/d9/b0/ea9d562ca87f25bb90944eb411d1ac29ec6c7e38cebf2024e8124fd0e31d/optree-0.18.0-cp314-cp314-win32.whl", hash = "sha256:f5197f864630162f008f5dfad3fceef32553c0fa7639eee1b8e280d924ed678e", size = 292058, upload-time = "2025-11-14T08:57:57.184Z" }, + { url = "https://files.pythonhosted.org/packages/5e/0c/87c9ced927a4cda6b99959cc9341e0a1acb4cd6eb49d2ccd7ac57039c63e/optree-0.18.0-cp314-cp314-win_amd64.whl", hash = "sha256:2b5cfb5fc643f16d3a7d957807e55a937dce07566c49ccc4aa71b01064c56758", size = 322019, upload-time = "2025-11-14T08:57:58.203Z" }, + { url = "https://files.pythonhosted.org/packages/39/a8/481afd23d2e66fddc5891b1540778ebedae90e770fe44c68c9f3dbd9e321/optree-0.18.0-cp314-cp314-win_arm64.whl", hash = "sha256:89d5156f8a0a3792701e1c31473eb307f0b45696f48dc51d721f1bfe0c3a950f", size = 324966, upload-time = "2025-11-14T08:57:59.413Z" }, + { url = "https://files.pythonhosted.org/packages/e5/76/7ba344abd30ce4e3c29d50936a2f28341a772bcebec2948be9915f2a3ece/optree-0.18.0-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:20536964ba2458f166c1e8ab25951e3fc0a5056b651bd08f16be99bb3ffed54a", size = 415280, upload-time = "2025-11-14T08:58:00.806Z" }, + { url = "https://files.pythonhosted.org/packages/89/27/90de0dcbfdaf82ce616eaa2193a540ec7b4dd1587a5ff0c6a7485c846dd6/optree-0.18.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:07c5f64783ad0f0f80e61c25f276ce79b47deda83ed7956a4a9af6385fe8f60d", size = 387087, upload-time = "2025-11-14T08:58:02.501Z" }, + { url = "https://files.pythonhosted.org/packages/d3/ff/91b9898b08b6f3187a4c99836648893f68d62f61a304b6f6ec61d3e27a77/optree-0.18.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:30a2636279bdc805c8e154a0f346bcf704626b831ff44724d305fb72c90b7389", size = 386244, upload-time = "2025-11-14T08:58:03.628Z" }, + { url = "https://files.pythonhosted.org/packages/ea/b2/d20c302926c6c18c379801a6532c0722f7f1a305b7d5712e437708ebdb42/optree-0.18.0-cp314-cp314t-manylinux_2_26_i686.manylinux_2_28_i686.whl", hash = "sha256:80d971060c888c3989132b7e75dfb50848636d41bc931af1b93fe2019fba469c", size = 442297, upload-time = "2025-11-14T08:58:04.887Z" }, + { url = "https://files.pythonhosted.org/packages/90/7d/015c58cf2b0aa0049ac33e1aa76b1fd4563551aeb9f83b10c2217668c355/optree-0.18.0-cp314-cp314t-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:d569730b2647c51a5ee68d67198aa9a78c7a55563d57b8cc1ca8d8c8377e7621", size = 438180, upload-time = "2025-11-14T08:58:06.252Z" }, + { url = "https://files.pythonhosted.org/packages/38/83/1eea2619385bd3ecfda76bb563f4127dc8b4197dcb614eb3f9032c82c2a7/optree-0.18.0-cp314-cp314t-manylinux_2_26_s390x.manylinux_2_28_s390x.whl", hash = "sha256:c017539e1196ea08f20aea3a4c473f758149b851678edd3d15773b4326decf83", size = 437838, upload-time = "2025-11-14T08:58:07.359Z" }, + { url = "https://files.pythonhosted.org/packages/e6/99/c1b84be2143df01819818e8c5db0c284ce995a51134030352ade6d9d1d75/optree-0.18.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:51e2cd9ac7fecfd5f6f56ce69f4f805553c226a2744810175959eb408101513c", size = 426705, upload-time = "2025-11-14T08:58:08.426Z" }, + { url = "https://files.pythonhosted.org/packages/70/8a/e1da179a5ebfdb9e279ae655ec38f19e8893a36193203fd6022a31d573b4/optree-0.18.0-cp314-cp314t-manylinux_2_39_riscv64.whl", hash = "sha256:a5c213a291c798139ed9ff80aec4bfcd2ac8f001bc015a9cdeb78457e9687dd3", size = 387489, upload-time = "2025-11-14T08:58:09.459Z" }, + { url = "https://files.pythonhosted.org/packages/a0/f8/b1367b93290b9e1b99a5ad1bbedaf76da62cf81578f452a91bfef5cfd1bb/optree-0.18.0-cp314-cp314t-win32.whl", hash = "sha256:e4a468ae1541614b5aa7b4f00254bce005ab7572fbb1fc764af4ee17d90fde7b", size = 327239, upload-time = "2025-11-14T08:58:10.52Z" }, + { url = "https://files.pythonhosted.org/packages/35/84/295aa33e8530c72b45592714a5b07b23e178d2df44baa964c8a91226eac4/optree-0.18.0-cp314-cp314t-win_amd64.whl", hash = "sha256:94983b3aa31ee401d2ac77ba570a3157d83f9508cfbb006095a48770e0a1c5ca", size = 366546, upload-time = "2025-11-14T08:58:11.575Z" }, + { url = "https://files.pythonhosted.org/packages/db/67/65af89c4a64b13df70dcf9f09fc42623f490e5b4f4854577679e781c5c32/optree-0.18.0-cp314-cp314t-win_arm64.whl", hash = "sha256:b4da3223c5b4cf694822752d0fbb6bf34c3f41648af1bd1b443cc3d68cc55106", size = 358524, upload-time = "2025-11-14T08:58:12.967Z" }, + { url = "https://files.pythonhosted.org/packages/79/5d/3c654144031d4dc28442bca8343bc02d177ab5da4c38ed521cad59e5d4b0/optree-0.18.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:30fefc84975ac41d9075993196c64ce0c240510f0539cff121d63b709e03846f", size = 371229, upload-time = "2025-11-14T08:58:25.702Z" }, + { url = "https://files.pythonhosted.org/packages/d2/da/4ddcf4fbb75c5779f58b1f85657209f5e38eb34d41c038502e1d0bdae68d/optree-0.18.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:ba23caafd0e0c911bb7eab54e5cf69644af864d153e4b2abdab83ff0ef357ba1", size = 346077, upload-time = "2025-11-14T08:58:26.762Z" }, + { url = "https://files.pythonhosted.org/packages/50/56/55e565d593d91a47ee70b91b693a763362aafac3bde06288036309c87949/optree-0.18.0-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:10f29662d637b80363dc620da46ddc58def7acf7935e20595b23e216ea912367", size = 363316, upload-time = "2025-11-14T08:58:27.888Z" }, + { url = "https://files.pythonhosted.org/packages/b0/c9/19d5a8d99934f80bfa02d503587a5697a374324f95ccc4c1656a8a74fc3b/optree-0.18.0-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ff7326f36ed70d84c3fd62fb39bc6858f699640b8ab238c3cb8dafe1e200af59", size = 403560, upload-time = "2025-11-14T08:58:28.994Z" }, + { url = "https://files.pythonhosted.org/packages/13/61/016ff1dcf63b97bfd182af8705f156e128a1e3adfcd94a2283fe04cf95d7/optree-0.18.0-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:01b79aaee544adf5bfa573db32b943030dfeb9fd1c6e7a97aa417db56a8127e7", size = 314844, upload-time = "2025-11-14T08:58:30.146Z" }, ] [[package]] name = "orb-models" -version = "0.5.4" +version = "0.5.5" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "ase" }, { name = "cached-path" }, { name = "dm-tree" }, - { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb')" }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-orb') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, + { name = "numpy", version = "2.1.3", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (sys_platform != 'linux' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn')" }, { name = "scipy" }, { name = "torch", version = "2.6.0", source = { registry = "https://pypi.org/simple" }, marker = "(extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "torch", version = "2.7.1", source = { registry = "https://pypi.org/simple" }, marker = "(extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-orb')" }, + { name = "torch", version = "2.7.0", source = { registry = "https://pypi.org/simple" }, marker = "(extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-orb')" }, { name = "tqdm" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/ec/63/385c78f164a8062fac89ef631a414463a6029d310d78cff9ee949ef2a9cd/orb_models-0.5.4.tar.gz", hash = "sha256:bc4e7b11eac16e9b1681cb667ccbdd263edf9702433a1eb106969dcc29ce7916", size = 87763, upload-time = "2025-04-30T09:08:39.804Z" } +sdist = { url = "https://files.pythonhosted.org/packages/40/9e/d049a6284bf04db7958f6ba0a8e8f0ce00d2b1775ea910a175c570d8a8ec/orb_models-0.5.5.tar.gz", hash = "sha256:d62f552f3dacf1fa3f0b99705ddf6a70b839c0bcc182151998ba2a89defe86b4", size = 89525, upload-time = "2025-08-21T16:45:55.427Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/c3/f8/6c6d12caf9a6fd25e7cb4aaeedf01ebda88cbc5fdc4a9d1db48e2683d15d/orb_models-0.5.4-py3-none-any.whl", hash = "sha256:af096f30c39cb11965aee792092b00b8cc350fd7dfbc13d53528f223f1953fe7", size = 92237, upload-time = "2025-04-30T09:08:38.328Z" }, + { url = "https://files.pythonhosted.org/packages/57/80/48f0768e1d128045bca43d9c36363ba2dd13bc360acfc68052ceb2db9fe1/orb_models-0.5.5-py3-none-any.whl", hash = "sha256:4a6a94f32bfb3e0cc84392dd68aff6ddc2bdcf7f24a590a09874584fa628ec5f", size = 94457, upload-time = "2025-08-21T16:45:53.62Z" }, ] [[package]] name = "orjson" -version = "3.10.18" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/81/0b/fea456a3ffe74e70ba30e01ec183a9b26bec4d497f61dcfce1b601059c60/orjson-3.10.18.tar.gz", hash = "sha256:e8da3947d92123eda795b68228cafe2724815621fe35e8e320a9e9593a4bcd53", size = 5422810, upload-time = "2025-04-29T23:30:08.423Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/27/16/2ceb9fb7bc2b11b1e4a3ea27794256e93dee2309ebe297fd131a778cd150/orjson-3.10.18-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:a45e5d68066b408e4bc383b6e4ef05e717c65219a9e1390abc6155a520cac402", size = 248927, upload-time = "2025-04-29T23:28:08.643Z" }, - { url = "https://files.pythonhosted.org/packages/3d/e1/d3c0a2bba5b9906badd121da449295062b289236c39c3a7801f92c4682b0/orjson-3.10.18-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:be3b9b143e8b9db05368b13b04c84d37544ec85bb97237b3a923f076265ec89c", size = 136995, upload-time = "2025-04-29T23:28:11.503Z" }, - { url = "https://files.pythonhosted.org/packages/d7/51/698dd65e94f153ee5ecb2586c89702c9e9d12f165a63e74eb9ea1299f4e1/orjson-3.10.18-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9b0aa09745e2c9b3bf779b096fa71d1cc2d801a604ef6dd79c8b1bfef52b2f92", size = 132893, upload-time = "2025-04-29T23:28:12.751Z" }, - { url = "https://files.pythonhosted.org/packages/b3/e5/155ce5a2c43a85e790fcf8b985400138ce5369f24ee6770378ee6b691036/orjson-3.10.18-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:53a245c104d2792e65c8d225158f2b8262749ffe64bc7755b00024757d957a13", size = 137017, upload-time = "2025-04-29T23:28:14.498Z" }, - { url = "https://files.pythonhosted.org/packages/46/bb/6141ec3beac3125c0b07375aee01b5124989907d61c72c7636136e4bd03e/orjson-3.10.18-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f9495ab2611b7f8a0a8a505bcb0f0cbdb5469caafe17b0e404c3c746f9900469", size = 138290, upload-time = "2025-04-29T23:28:16.211Z" }, - { url = "https://files.pythonhosted.org/packages/77/36/6961eca0b66b7809d33c4ca58c6bd4c23a1b914fb23aba2fa2883f791434/orjson-3.10.18-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:73be1cbcebadeabdbc468f82b087df435843c809cd079a565fb16f0f3b23238f", size = 142828, upload-time = "2025-04-29T23:28:18.065Z" }, - { url = "https://files.pythonhosted.org/packages/8b/2f/0c646d5fd689d3be94f4d83fa9435a6c4322c9b8533edbb3cd4bc8c5f69a/orjson-3.10.18-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fe8936ee2679e38903df158037a2f1c108129dee218975122e37847fb1d4ac68", size = 132806, upload-time = "2025-04-29T23:28:19.782Z" }, - { url = "https://files.pythonhosted.org/packages/ea/af/65907b40c74ef4c3674ef2bcfa311c695eb934710459841b3c2da212215c/orjson-3.10.18-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:7115fcbc8525c74e4c2b608129bef740198e9a120ae46184dac7683191042056", size = 135005, upload-time = "2025-04-29T23:28:21.367Z" }, - { url = "https://files.pythonhosted.org/packages/c7/d1/68bd20ac6a32cd1f1b10d23e7cc58ee1e730e80624e3031d77067d7150fc/orjson-3.10.18-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:771474ad34c66bc4d1c01f645f150048030694ea5b2709b87d3bda273ffe505d", size = 413418, upload-time = "2025-04-29T23:28:23.097Z" }, - { url = "https://files.pythonhosted.org/packages/31/31/c701ec0bcc3e80e5cb6e319c628ef7b768aaa24b0f3b4c599df2eaacfa24/orjson-3.10.18-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:7c14047dbbea52886dd87169f21939af5d55143dad22d10db6a7514f058156a8", size = 153288, upload-time = "2025-04-29T23:28:25.02Z" }, - { url = "https://files.pythonhosted.org/packages/d9/31/5e1aa99a10893a43cfc58009f9da840990cc8a9ebb75aa452210ba18587e/orjson-3.10.18-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:641481b73baec8db14fdf58f8967e52dc8bda1f2aba3aa5f5c1b07ed6df50b7f", size = 137181, upload-time = "2025-04-29T23:28:26.318Z" }, - { url = "https://files.pythonhosted.org/packages/bf/8c/daba0ac1b8690011d9242a0f37235f7d17df6d0ad941021048523b76674e/orjson-3.10.18-cp310-cp310-win32.whl", hash = "sha256:607eb3ae0909d47280c1fc657c4284c34b785bae371d007595633f4b1a2bbe06", size = 142694, upload-time = "2025-04-29T23:28:28.092Z" }, - { url = "https://files.pythonhosted.org/packages/16/62/8b687724143286b63e1d0fab3ad4214d54566d80b0ba9d67c26aaf28a2f8/orjson-3.10.18-cp310-cp310-win_amd64.whl", hash = "sha256:8770432524ce0eca50b7efc2a9a5f486ee0113a5fbb4231526d414e6254eba92", size = 134600, upload-time = "2025-04-29T23:28:29.422Z" }, - { url = "https://files.pythonhosted.org/packages/97/c7/c54a948ce9a4278794f669a353551ce7db4ffb656c69a6e1f2264d563e50/orjson-3.10.18-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:e0a183ac3b8e40471e8d843105da6fbe7c070faab023be3b08188ee3f85719b8", size = 248929, upload-time = "2025-04-29T23:28:30.716Z" }, - { url = "https://files.pythonhosted.org/packages/9e/60/a9c674ef1dd8ab22b5b10f9300e7e70444d4e3cda4b8258d6c2488c32143/orjson-3.10.18-cp311-cp311-macosx_15_0_arm64.whl", hash = "sha256:5ef7c164d9174362f85238d0cd4afdeeb89d9e523e4651add6a5d458d6f7d42d", size = 133364, upload-time = "2025-04-29T23:28:32.392Z" }, - { url = "https://files.pythonhosted.org/packages/c1/4e/f7d1bdd983082216e414e6d7ef897b0c2957f99c545826c06f371d52337e/orjson-3.10.18-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:afd14c5d99cdc7bf93f22b12ec3b294931518aa019e2a147e8aa2f31fd3240f7", size = 136995, upload-time = "2025-04-29T23:28:34.024Z" }, - { url = "https://files.pythonhosted.org/packages/17/89/46b9181ba0ea251c9243b0c8ce29ff7c9796fa943806a9c8b02592fce8ea/orjson-3.10.18-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7b672502323b6cd133c4af6b79e3bea36bad2d16bca6c1f645903fce83909a7a", size = 132894, upload-time = "2025-04-29T23:28:35.318Z" }, - { url = "https://files.pythonhosted.org/packages/ca/dd/7bce6fcc5b8c21aef59ba3c67f2166f0a1a9b0317dcca4a9d5bd7934ecfd/orjson-3.10.18-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:51f8c63be6e070ec894c629186b1c0fe798662b8687f3d9fdfa5e401c6bd7679", size = 137016, upload-time = "2025-04-29T23:28:36.674Z" }, - { url = "https://files.pythonhosted.org/packages/1c/4a/b8aea1c83af805dcd31c1f03c95aabb3e19a016b2a4645dd822c5686e94d/orjson-3.10.18-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3f9478ade5313d724e0495d167083c6f3be0dd2f1c9c8a38db9a9e912cdaf947", size = 138290, upload-time = "2025-04-29T23:28:38.3Z" }, - { url = "https://files.pythonhosted.org/packages/36/d6/7eb05c85d987b688707f45dcf83c91abc2251e0dd9fb4f7be96514f838b1/orjson-3.10.18-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:187aefa562300a9d382b4b4eb9694806e5848b0cedf52037bb5c228c61bb66d4", size = 142829, upload-time = "2025-04-29T23:28:39.657Z" }, - { url = "https://files.pythonhosted.org/packages/d2/78/ddd3ee7873f2b5f90f016bc04062713d567435c53ecc8783aab3a4d34915/orjson-3.10.18-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9da552683bc9da222379c7a01779bddd0ad39dd699dd6300abaf43eadee38334", size = 132805, upload-time = "2025-04-29T23:28:40.969Z" }, - { url = "https://files.pythonhosted.org/packages/8c/09/c8e047f73d2c5d21ead9c180203e111cddeffc0848d5f0f974e346e21c8e/orjson-3.10.18-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:e450885f7b47a0231979d9c49b567ed1c4e9f69240804621be87c40bc9d3cf17", size = 135008, upload-time = "2025-04-29T23:28:42.284Z" }, - { url = "https://files.pythonhosted.org/packages/0c/4b/dccbf5055ef8fb6eda542ab271955fc1f9bf0b941a058490293f8811122b/orjson-3.10.18-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:5e3c9cc2ba324187cd06287ca24f65528f16dfc80add48dc99fa6c836bb3137e", size = 413419, upload-time = "2025-04-29T23:28:43.673Z" }, - { url = "https://files.pythonhosted.org/packages/8a/f3/1eac0c5e2d6d6790bd2025ebfbefcbd37f0d097103d76f9b3f9302af5a17/orjson-3.10.18-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:50ce016233ac4bfd843ac5471e232b865271d7d9d44cf9d33773bcd883ce442b", size = 153292, upload-time = "2025-04-29T23:28:45.573Z" }, - { url = "https://files.pythonhosted.org/packages/1f/b4/ef0abf64c8f1fabf98791819ab502c2c8c1dc48b786646533a93637d8999/orjson-3.10.18-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:b3ceff74a8f7ffde0b2785ca749fc4e80e4315c0fd887561144059fb1c138aa7", size = 137182, upload-time = "2025-04-29T23:28:47.229Z" }, - { url = "https://files.pythonhosted.org/packages/a9/a3/6ea878e7b4a0dc5c888d0370d7752dcb23f402747d10e2257478d69b5e63/orjson-3.10.18-cp311-cp311-win32.whl", hash = "sha256:fdba703c722bd868c04702cac4cb8c6b8ff137af2623bc0ddb3b3e6a2c8996c1", size = 142695, upload-time = "2025-04-29T23:28:48.564Z" }, - { url = "https://files.pythonhosted.org/packages/79/2a/4048700a3233d562f0e90d5572a849baa18ae4e5ce4c3ba6247e4ece57b0/orjson-3.10.18-cp311-cp311-win_amd64.whl", hash = "sha256:c28082933c71ff4bc6ccc82a454a2bffcef6e1d7379756ca567c772e4fb3278a", size = 134603, upload-time = "2025-04-29T23:28:50.442Z" }, - { url = "https://files.pythonhosted.org/packages/03/45/10d934535a4993d27e1c84f1810e79ccf8b1b7418cef12151a22fe9bb1e1/orjson-3.10.18-cp311-cp311-win_arm64.whl", hash = "sha256:a6c7c391beaedd3fa63206e5c2b7b554196f14debf1ec9deb54b5d279b1b46f5", size = 131400, upload-time = "2025-04-29T23:28:51.838Z" }, - { url = "https://files.pythonhosted.org/packages/21/1a/67236da0916c1a192d5f4ccbe10ec495367a726996ceb7614eaa687112f2/orjson-3.10.18-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:50c15557afb7f6d63bc6d6348e0337a880a04eaa9cd7c9d569bcb4e760a24753", size = 249184, upload-time = "2025-04-29T23:28:53.612Z" }, - { url = "https://files.pythonhosted.org/packages/b3/bc/c7f1db3b1d094dc0c6c83ed16b161a16c214aaa77f311118a93f647b32dc/orjson-3.10.18-cp312-cp312-macosx_15_0_arm64.whl", hash = "sha256:356b076f1662c9813d5fa56db7d63ccceef4c271b1fb3dd522aca291375fcf17", size = 133279, upload-time = "2025-04-29T23:28:55.055Z" }, - { url = "https://files.pythonhosted.org/packages/af/84/664657cd14cc11f0d81e80e64766c7ba5c9b7fc1ec304117878cc1b4659c/orjson-3.10.18-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:559eb40a70a7494cd5beab2d73657262a74a2c59aff2068fdba8f0424ec5b39d", size = 136799, upload-time = "2025-04-29T23:28:56.828Z" }, - { url = "https://files.pythonhosted.org/packages/9a/bb/f50039c5bb05a7ab024ed43ba25d0319e8722a0ac3babb0807e543349978/orjson-3.10.18-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:f3c29eb9a81e2fbc6fd7ddcfba3e101ba92eaff455b8d602bf7511088bbc0eae", size = 132791, upload-time = "2025-04-29T23:28:58.751Z" }, - { url = "https://files.pythonhosted.org/packages/93/8c/ee74709fc072c3ee219784173ddfe46f699598a1723d9d49cbc78d66df65/orjson-3.10.18-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6612787e5b0756a171c7d81ba245ef63a3533a637c335aa7fcb8e665f4a0966f", size = 137059, upload-time = "2025-04-29T23:29:00.129Z" }, - { url = "https://files.pythonhosted.org/packages/6a/37/e6d3109ee004296c80426b5a62b47bcadd96a3deab7443e56507823588c5/orjson-3.10.18-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7ac6bd7be0dcab5b702c9d43d25e70eb456dfd2e119d512447468f6405b4a69c", size = 138359, upload-time = "2025-04-29T23:29:01.704Z" }, - { url = "https://files.pythonhosted.org/packages/4f/5d/387dafae0e4691857c62bd02839a3bf3fa648eebd26185adfac58d09f207/orjson-3.10.18-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9f72f100cee8dde70100406d5c1abba515a7df926d4ed81e20a9730c062fe9ad", size = 142853, upload-time = "2025-04-29T23:29:03.576Z" }, - { url = "https://files.pythonhosted.org/packages/27/6f/875e8e282105350b9a5341c0222a13419758545ae32ad6e0fcf5f64d76aa/orjson-3.10.18-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9dca85398d6d093dd41dc0983cbf54ab8e6afd1c547b6b8a311643917fbf4e0c", size = 133131, upload-time = "2025-04-29T23:29:05.753Z" }, - { url = "https://files.pythonhosted.org/packages/48/b2/73a1f0b4790dcb1e5a45f058f4f5dcadc8a85d90137b50d6bbc6afd0ae50/orjson-3.10.18-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:22748de2a07fcc8781a70edb887abf801bb6142e6236123ff93d12d92db3d406", size = 134834, upload-time = "2025-04-29T23:29:07.35Z" }, - { url = "https://files.pythonhosted.org/packages/56/f5/7ed133a5525add9c14dbdf17d011dd82206ca6840811d32ac52a35935d19/orjson-3.10.18-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:3a83c9954a4107b9acd10291b7f12a6b29e35e8d43a414799906ea10e75438e6", size = 413368, upload-time = "2025-04-29T23:29:09.301Z" }, - { url = "https://files.pythonhosted.org/packages/11/7c/439654221ed9c3324bbac7bdf94cf06a971206b7b62327f11a52544e4982/orjson-3.10.18-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:303565c67a6c7b1f194c94632a4a39918e067bd6176a48bec697393865ce4f06", size = 153359, upload-time = "2025-04-29T23:29:10.813Z" }, - { url = "https://files.pythonhosted.org/packages/48/e7/d58074fa0cc9dd29a8fa2a6c8d5deebdfd82c6cfef72b0e4277c4017563a/orjson-3.10.18-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:86314fdb5053a2f5a5d881f03fca0219bfdf832912aa88d18676a5175c6916b5", size = 137466, upload-time = "2025-04-29T23:29:12.26Z" }, - { url = "https://files.pythonhosted.org/packages/57/4d/fe17581cf81fb70dfcef44e966aa4003360e4194d15a3f38cbffe873333a/orjson-3.10.18-cp312-cp312-win32.whl", hash = "sha256:187ec33bbec58c76dbd4066340067d9ece6e10067bb0cc074a21ae3300caa84e", size = 142683, upload-time = "2025-04-29T23:29:13.865Z" }, - { url = "https://files.pythonhosted.org/packages/e6/22/469f62d25ab5f0f3aee256ea732e72dc3aab6d73bac777bd6277955bceef/orjson-3.10.18-cp312-cp312-win_amd64.whl", hash = "sha256:f9f94cf6d3f9cd720d641f8399e390e7411487e493962213390d1ae45c7814fc", size = 134754, upload-time = "2025-04-29T23:29:15.338Z" }, - { url = "https://files.pythonhosted.org/packages/10/b0/1040c447fac5b91bc1e9c004b69ee50abb0c1ffd0d24406e1350c58a7fcb/orjson-3.10.18-cp312-cp312-win_arm64.whl", hash = "sha256:3d600be83fe4514944500fa8c2a0a77099025ec6482e8087d7659e891f23058a", size = 131218, upload-time = "2025-04-29T23:29:17.324Z" }, - { url = "https://files.pythonhosted.org/packages/04/f0/8aedb6574b68096f3be8f74c0b56d36fd94bcf47e6c7ed47a7bd1474aaa8/orjson-3.10.18-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:69c34b9441b863175cc6a01f2935de994025e773f814412030f269da4f7be147", size = 249087, upload-time = "2025-04-29T23:29:19.083Z" }, - { url = "https://files.pythonhosted.org/packages/bc/f7/7118f965541aeac6844fcb18d6988e111ac0d349c9b80cda53583e758908/orjson-3.10.18-cp313-cp313-macosx_15_0_arm64.whl", hash = "sha256:1ebeda919725f9dbdb269f59bc94f861afbe2a27dce5608cdba2d92772364d1c", size = 133273, upload-time = "2025-04-29T23:29:20.602Z" }, - { url = "https://files.pythonhosted.org/packages/fb/d9/839637cc06eaf528dd8127b36004247bf56e064501f68df9ee6fd56a88ee/orjson-3.10.18-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5adf5f4eed520a4959d29ea80192fa626ab9a20b2ea13f8f6dc58644f6927103", size = 136779, upload-time = "2025-04-29T23:29:22.062Z" }, - { url = "https://files.pythonhosted.org/packages/2b/6d/f226ecfef31a1f0e7d6bf9a31a0bbaf384c7cbe3fce49cc9c2acc51f902a/orjson-3.10.18-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7592bb48a214e18cd670974f289520f12b7aed1fa0b2e2616b8ed9e069e08595", size = 132811, upload-time = "2025-04-29T23:29:23.602Z" }, - { url = "https://files.pythonhosted.org/packages/73/2d/371513d04143c85b681cf8f3bce743656eb5b640cb1f461dad750ac4b4d4/orjson-3.10.18-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f872bef9f042734110642b7a11937440797ace8c87527de25e0c53558b579ccc", size = 137018, upload-time = "2025-04-29T23:29:25.094Z" }, - { url = "https://files.pythonhosted.org/packages/69/cb/a4d37a30507b7a59bdc484e4a3253c8141bf756d4e13fcc1da760a0b00cb/orjson-3.10.18-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0315317601149c244cb3ecef246ef5861a64824ccbcb8018d32c66a60a84ffbc", size = 138368, upload-time = "2025-04-29T23:29:26.609Z" }, - { url = "https://files.pythonhosted.org/packages/1e/ae/cd10883c48d912d216d541eb3db8b2433415fde67f620afe6f311f5cd2ca/orjson-3.10.18-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e0da26957e77e9e55a6c2ce2e7182a36a6f6b180ab7189315cb0995ec362e049", size = 142840, upload-time = "2025-04-29T23:29:28.153Z" }, - { url = "https://files.pythonhosted.org/packages/6d/4c/2bda09855c6b5f2c055034c9eda1529967b042ff8d81a05005115c4e6772/orjson-3.10.18-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bb70d489bc79b7519e5803e2cc4c72343c9dc1154258adf2f8925d0b60da7c58", size = 133135, upload-time = "2025-04-29T23:29:29.726Z" }, - { url = "https://files.pythonhosted.org/packages/13/4a/35971fd809a8896731930a80dfff0b8ff48eeb5d8b57bb4d0d525160017f/orjson-3.10.18-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:e9e86a6af31b92299b00736c89caf63816f70a4001e750bda179e15564d7a034", size = 134810, upload-time = "2025-04-29T23:29:31.269Z" }, - { url = "https://files.pythonhosted.org/packages/99/70/0fa9e6310cda98365629182486ff37a1c6578e34c33992df271a476ea1cd/orjson-3.10.18-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:c382a5c0b5931a5fc5405053d36c1ce3fd561694738626c77ae0b1dfc0242ca1", size = 413491, upload-time = "2025-04-29T23:29:33.315Z" }, - { url = "https://files.pythonhosted.org/packages/32/cb/990a0e88498babddb74fb97855ae4fbd22a82960e9b06eab5775cac435da/orjson-3.10.18-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:8e4b2ae732431127171b875cb2668f883e1234711d3c147ffd69fe5be51a8012", size = 153277, upload-time = "2025-04-29T23:29:34.946Z" }, - { url = "https://files.pythonhosted.org/packages/92/44/473248c3305bf782a384ed50dd8bc2d3cde1543d107138fd99b707480ca1/orjson-3.10.18-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:2d808e34ddb24fc29a4d4041dcfafbae13e129c93509b847b14432717d94b44f", size = 137367, upload-time = "2025-04-29T23:29:36.52Z" }, - { url = "https://files.pythonhosted.org/packages/ad/fd/7f1d3edd4ffcd944a6a40e9f88af2197b619c931ac4d3cfba4798d4d3815/orjson-3.10.18-cp313-cp313-win32.whl", hash = "sha256:ad8eacbb5d904d5591f27dee4031e2c1db43d559edb8f91778efd642d70e6bea", size = 142687, upload-time = "2025-04-29T23:29:38.292Z" }, - { url = "https://files.pythonhosted.org/packages/4b/03/c75c6ad46be41c16f4cfe0352a2d1450546f3c09ad2c9d341110cd87b025/orjson-3.10.18-cp313-cp313-win_amd64.whl", hash = "sha256:aed411bcb68bf62e85588f2a7e03a6082cc42e5a2796e06e72a962d7c6310b52", size = 134794, upload-time = "2025-04-29T23:29:40.349Z" }, - { url = "https://files.pythonhosted.org/packages/c2/28/f53038a5a72cc4fd0b56c1eafb4ef64aec9685460d5ac34de98ca78b6e29/orjson-3.10.18-cp313-cp313-win_arm64.whl", hash = "sha256:f54c1385a0e6aba2f15a40d703b858bedad36ded0491e55d35d905b2c34a4cc3", size = 131186, upload-time = "2025-04-29T23:29:41.922Z" }, +version = "3.11.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/c6/fe/ed708782d6709cc60eb4c2d8a361a440661f74134675c72990f2c48c785f/orjson-3.11.4.tar.gz", hash = "sha256:39485f4ab4c9b30a3943cfe99e1a213c4776fb69e8abd68f66b83d5a0b0fdc6d", size = 5945188, upload-time = "2025-10-24T15:50:38.027Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/63/1d/1ea6005fffb56715fd48f632611e163d1604e8316a5bad2288bee9a1c9eb/orjson-3.11.4-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5e59d23cd93ada23ec59a96f215139753fbfe3a4d989549bcb390f8c00370b39", size = 243498, upload-time = "2025-10-24T15:48:48.101Z" }, + { url = "https://files.pythonhosted.org/packages/37/d7/ffed10c7da677f2a9da307d491b9eb1d0125b0307019c4ad3d665fd31f4f/orjson-3.11.4-cp311-cp311-macosx_15_0_arm64.whl", hash = "sha256:5c3aedecfc1beb988c27c79d52ebefab93b6c3921dbec361167e6559aba2d36d", size = 128961, upload-time = "2025-10-24T15:48:49.571Z" }, + { url = "https://files.pythonhosted.org/packages/a2/96/3e4d10a18866d1368f73c8c44b7fe37cc8a15c32f2a7620be3877d4c55a3/orjson-3.11.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:da9e5301f1c2caa2a9a4a303480d79c9ad73560b2e7761de742ab39fe59d9175", size = 130321, upload-time = "2025-10-24T15:48:50.713Z" }, + { url = "https://files.pythonhosted.org/packages/eb/1f/465f66e93f434f968dd74d5b623eb62c657bdba2332f5a8be9f118bb74c7/orjson-3.11.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8873812c164a90a79f65368f8f96817e59e35d0cc02786a5356f0e2abed78040", size = 129207, upload-time = "2025-10-24T15:48:52.193Z" }, + { url = "https://files.pythonhosted.org/packages/28/43/d1e94837543321c119dff277ae8e348562fe8c0fafbb648ef7cb0c67e521/orjson-3.11.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5d7feb0741ebb15204e748f26c9638e6665a5fa93c37a2c73d64f1669b0ddc63", size = 136323, upload-time = "2025-10-24T15:48:54.806Z" }, + { url = "https://files.pythonhosted.org/packages/bf/04/93303776c8890e422a5847dd012b4853cdd88206b8bbd3edc292c90102d1/orjson-3.11.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:01ee5487fefee21e6910da4c2ee9eef005bee568a0879834df86f888d2ffbdd9", size = 137440, upload-time = "2025-10-24T15:48:56.326Z" }, + { url = "https://files.pythonhosted.org/packages/1e/ef/75519d039e5ae6b0f34d0336854d55544ba903e21bf56c83adc51cd8bf82/orjson-3.11.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3d40d46f348c0321df01507f92b95a377240c4ec31985225a6668f10e2676f9a", size = 136680, upload-time = "2025-10-24T15:48:57.476Z" }, + { url = "https://files.pythonhosted.org/packages/b5/18/bf8581eaae0b941b44efe14fee7b7862c3382fbc9a0842132cfc7cf5ecf4/orjson-3.11.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:95713e5fc8af84d8edc75b785d2386f653b63d62b16d681687746734b4dfc0be", size = 136160, upload-time = "2025-10-24T15:48:59.631Z" }, + { url = "https://files.pythonhosted.org/packages/c4/35/a6d582766d351f87fc0a22ad740a641b0a8e6fc47515e8614d2e4790ae10/orjson-3.11.4-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ad73ede24f9083614d6c4ca9a85fe70e33be7bf047ec586ee2363bc7418fe4d7", size = 140318, upload-time = "2025-10-24T15:49:00.834Z" }, + { url = "https://files.pythonhosted.org/packages/76/b3/5a4801803ab2e2e2d703bce1a56540d9f99a9143fbec7bf63d225044fef8/orjson-3.11.4-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:842289889de515421f3f224ef9c1f1efb199a32d76d8d2ca2706fa8afe749549", size = 406330, upload-time = "2025-10-24T15:49:02.327Z" }, + { url = "https://files.pythonhosted.org/packages/80/55/a8f682f64833e3a649f620eafefee175cbfeb9854fc5b710b90c3bca45df/orjson-3.11.4-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:3b2427ed5791619851c52a1261b45c233930977e7de8cf36de05636c708fa905", size = 149580, upload-time = "2025-10-24T15:49:03.517Z" }, + { url = "https://files.pythonhosted.org/packages/ad/e4/c132fa0c67afbb3eb88274fa98df9ac1f631a675e7877037c611805a4413/orjson-3.11.4-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:3c36e524af1d29982e9b190573677ea02781456b2e537d5840e4538a5ec41907", size = 139846, upload-time = "2025-10-24T15:49:04.761Z" }, + { url = "https://files.pythonhosted.org/packages/54/06/dc3491489efd651fef99c5908e13951abd1aead1257c67f16135f95ce209/orjson-3.11.4-cp311-cp311-win32.whl", hash = "sha256:87255b88756eab4a68ec61837ca754e5d10fa8bc47dc57f75cedfeaec358d54c", size = 135781, upload-time = "2025-10-24T15:49:05.969Z" }, + { url = "https://files.pythonhosted.org/packages/79/b7/5e5e8d77bd4ea02a6ac54c42c818afb01dd31961be8a574eb79f1d2cfb1e/orjson-3.11.4-cp311-cp311-win_amd64.whl", hash = "sha256:e2d5d5d798aba9a0e1fede8d853fa899ce2cb930ec0857365f700dffc2c7af6a", size = 131391, upload-time = "2025-10-24T15:49:07.355Z" }, + { url = "https://files.pythonhosted.org/packages/0f/dc/9484127cc1aa213be398ed735f5f270eedcb0c0977303a6f6ddc46b60204/orjson-3.11.4-cp311-cp311-win_arm64.whl", hash = "sha256:6bb6bb41b14c95d4f2702bce9975fda4516f1db48e500102fc4d8119032ff045", size = 126252, upload-time = "2025-10-24T15:49:08.869Z" }, + { url = "https://files.pythonhosted.org/packages/63/51/6b556192a04595b93e277a9ff71cd0cc06c21a7df98bcce5963fa0f5e36f/orjson-3.11.4-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:d4371de39319d05d3f482f372720b841c841b52f5385bd99c61ed69d55d9ab50", size = 243571, upload-time = "2025-10-24T15:49:10.008Z" }, + { url = "https://files.pythonhosted.org/packages/1c/2c/2602392ddf2601d538ff11848b98621cd465d1a1ceb9db9e8043181f2f7b/orjson-3.11.4-cp312-cp312-macosx_15_0_arm64.whl", hash = "sha256:e41fd3b3cac850eaae78232f37325ed7d7436e11c471246b87b2cd294ec94853", size = 128891, upload-time = "2025-10-24T15:49:11.297Z" }, + { url = "https://files.pythonhosted.org/packages/4e/47/bf85dcf95f7a3a12bf223394a4f849430acd82633848d52def09fa3f46ad/orjson-3.11.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:600e0e9ca042878c7fdf189cf1b028fe2c1418cc9195f6cb9824eb6ed99cb938", size = 130137, upload-time = "2025-10-24T15:49:12.544Z" }, + { url = "https://files.pythonhosted.org/packages/b4/4d/a0cb31007f3ab6f1fd2a1b17057c7c349bc2baf8921a85c0180cc7be8011/orjson-3.11.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7bbf9b333f1568ef5da42bc96e18bf30fd7f8d54e9ae066d711056add508e415", size = 129152, upload-time = "2025-10-24T15:49:13.754Z" }, + { url = "https://files.pythonhosted.org/packages/f7/ef/2811def7ce3d8576b19e3929fff8f8f0d44bc5eb2e0fdecb2e6e6cc6c720/orjson-3.11.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4806363144bb6e7297b8e95870e78d30a649fdc4e23fc84daa80c8ebd366ce44", size = 136834, upload-time = "2025-10-24T15:49:15.307Z" }, + { url = "https://files.pythonhosted.org/packages/00/d4/9aee9e54f1809cec8ed5abd9bc31e8a9631d19460e3b8470145d25140106/orjson-3.11.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ad355e8308493f527d41154e9053b86a5be892b3b359a5c6d5d95cda23601cb2", size = 137519, upload-time = "2025-10-24T15:49:16.557Z" }, + { url = "https://files.pythonhosted.org/packages/db/ea/67bfdb5465d5679e8ae8d68c11753aaf4f47e3e7264bad66dc2f2249e643/orjson-3.11.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c8a7517482667fb9f0ff1b2f16fe5829296ed7a655d04d68cd9711a4d8a4e708", size = 136749, upload-time = "2025-10-24T15:49:17.796Z" }, + { url = "https://files.pythonhosted.org/packages/01/7e/62517dddcfce6d53a39543cd74d0dccfcbdf53967017c58af68822100272/orjson-3.11.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:97eb5942c7395a171cbfecc4ef6701fc3c403e762194683772df4c54cfbb2210", size = 136325, upload-time = "2025-10-24T15:49:19.347Z" }, + { url = "https://files.pythonhosted.org/packages/18/ae/40516739f99ab4c7ec3aaa5cc242d341fcb03a45d89edeeaabc5f69cb2cf/orjson-3.11.4-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:149d95d5e018bdd822e3f38c103b1a7c91f88d38a88aada5c4e9b3a73a244241", size = 140204, upload-time = "2025-10-24T15:49:20.545Z" }, + { url = "https://files.pythonhosted.org/packages/82/18/ff5734365623a8916e3a4037fcef1cd1782bfc14cf0992afe7940c5320bf/orjson-3.11.4-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:624f3951181eb46fc47dea3d221554e98784c823e7069edb5dbd0dc826ac909b", size = 406242, upload-time = "2025-10-24T15:49:21.884Z" }, + { url = "https://files.pythonhosted.org/packages/e1/43/96436041f0a0c8c8deca6a05ebeaf529bf1de04839f93ac5e7c479807aec/orjson-3.11.4-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:03bfa548cf35e3f8b3a96c4e8e41f753c686ff3d8e182ce275b1751deddab58c", size = 150013, upload-time = "2025-10-24T15:49:23.185Z" }, + { url = "https://files.pythonhosted.org/packages/1b/48/78302d98423ed8780479a1e682b9aecb869e8404545d999d34fa486e573e/orjson-3.11.4-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:525021896afef44a68148f6ed8a8bf8375553d6066c7f48537657f64823565b9", size = 139951, upload-time = "2025-10-24T15:49:24.428Z" }, + { url = "https://files.pythonhosted.org/packages/4a/7b/ad613fdcdaa812f075ec0875143c3d37f8654457d2af17703905425981bf/orjson-3.11.4-cp312-cp312-win32.whl", hash = "sha256:b58430396687ce0f7d9eeb3dd47761ca7d8fda8e9eb92b3077a7a353a75efefa", size = 136049, upload-time = "2025-10-24T15:49:25.973Z" }, + { url = "https://files.pythonhosted.org/packages/b9/3c/9cf47c3ff5f39b8350fb21ba65d789b6a1129d4cbb3033ba36c8a9023520/orjson-3.11.4-cp312-cp312-win_amd64.whl", hash = "sha256:c6dbf422894e1e3c80a177133c0dda260f81428f9de16d61041949f6a2e5c140", size = 131461, upload-time = "2025-10-24T15:49:27.259Z" }, + { url = "https://files.pythonhosted.org/packages/c6/3b/e2425f61e5825dc5b08c2a5a2b3af387eaaca22a12b9c8c01504f8614c36/orjson-3.11.4-cp312-cp312-win_arm64.whl", hash = "sha256:d38d2bc06d6415852224fcc9c0bfa834c25431e466dc319f0edd56cca81aa96e", size = 126167, upload-time = "2025-10-24T15:49:28.511Z" }, + { url = "https://files.pythonhosted.org/packages/23/15/c52aa7112006b0f3d6180386c3a46ae057f932ab3425bc6f6ac50431cca1/orjson-3.11.4-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:2d6737d0e616a6e053c8b4acc9eccea6b6cce078533666f32d140e4f85002534", size = 243525, upload-time = "2025-10-24T15:49:29.737Z" }, + { url = "https://files.pythonhosted.org/packages/ec/38/05340734c33b933fd114f161f25a04e651b0c7c33ab95e9416ade5cb44b8/orjson-3.11.4-cp313-cp313-macosx_15_0_arm64.whl", hash = "sha256:afb14052690aa328cc118a8e09f07c651d301a72e44920b887c519b313d892ff", size = 128871, upload-time = "2025-10-24T15:49:31.109Z" }, + { url = "https://files.pythonhosted.org/packages/55/b9/ae8d34899ff0c012039b5a7cb96a389b2476e917733294e498586b45472d/orjson-3.11.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38aa9e65c591febb1b0aed8da4d469eba239d434c218562df179885c94e1a3ad", size = 130055, upload-time = "2025-10-24T15:49:33.382Z" }, + { url = "https://files.pythonhosted.org/packages/33/aa/6346dd5073730451bee3681d901e3c337e7ec17342fb79659ec9794fc023/orjson-3.11.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:f2cf4dfaf9163b0728d061bebc1e08631875c51cd30bf47cb9e3293bfbd7dcd5", size = 129061, upload-time = "2025-10-24T15:49:34.935Z" }, + { url = "https://files.pythonhosted.org/packages/39/e4/8eea51598f66a6c853c380979912d17ec510e8e66b280d968602e680b942/orjson-3.11.4-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:89216ff3dfdde0e4070932e126320a1752c9d9a758d6a32ec54b3b9334991a6a", size = 136541, upload-time = "2025-10-24T15:49:36.923Z" }, + { url = "https://files.pythonhosted.org/packages/9a/47/cb8c654fa9adcc60e99580e17c32b9e633290e6239a99efa6b885aba9dbc/orjson-3.11.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9daa26ca8e97fae0ce8aa5d80606ef8f7914e9b129b6b5df9104266f764ce436", size = 137535, upload-time = "2025-10-24T15:49:38.307Z" }, + { url = "https://files.pythonhosted.org/packages/43/92/04b8cc5c2b729f3437ee013ce14a60ab3d3001465d95c184758f19362f23/orjson-3.11.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5c8b2769dc31883c44a9cd126560327767f848eb95f99c36c9932f51090bfce9", size = 136703, upload-time = "2025-10-24T15:49:40.795Z" }, + { url = "https://files.pythonhosted.org/packages/aa/fd/d0733fcb9086b8be4ebcfcda2d0312865d17d0d9884378b7cffb29d0763f/orjson-3.11.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1469d254b9884f984026bd9b0fa5bbab477a4bfe558bba6848086f6d43eb5e73", size = 136293, upload-time = "2025-10-24T15:49:42.347Z" }, + { url = "https://files.pythonhosted.org/packages/c2/d7/3c5514e806837c210492d72ae30ccf050ce3f940f45bf085bab272699ef4/orjson-3.11.4-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:68e44722541983614e37117209a194e8c3ad07838ccb3127d96863c95ec7f1e0", size = 140131, upload-time = "2025-10-24T15:49:43.638Z" }, + { url = "https://files.pythonhosted.org/packages/9c/dd/ba9d32a53207babf65bd510ac4d0faaa818bd0df9a9c6f472fe7c254f2e3/orjson-3.11.4-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:8e7805fda9672c12be2f22ae124dcd7b03928d6c197544fe12174b86553f3196", size = 406164, upload-time = "2025-10-24T15:49:45.498Z" }, + { url = "https://files.pythonhosted.org/packages/8e/f9/f68ad68f4af7c7bde57cd514eaa2c785e500477a8bc8f834838eb696a685/orjson-3.11.4-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:04b69c14615fb4434ab867bf6f38b2d649f6f300af30a6705397e895f7aec67a", size = 149859, upload-time = "2025-10-24T15:49:46.981Z" }, + { url = "https://files.pythonhosted.org/packages/b6/d2/7f847761d0c26818395b3d6b21fb6bc2305d94612a35b0a30eae65a22728/orjson-3.11.4-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:639c3735b8ae7f970066930e58cf0ed39a852d417c24acd4a25fc0b3da3c39a6", size = 139926, upload-time = "2025-10-24T15:49:48.321Z" }, + { url = "https://files.pythonhosted.org/packages/9f/37/acd14b12dc62db9a0e1d12386271b8661faae270b22492580d5258808975/orjson-3.11.4-cp313-cp313-win32.whl", hash = "sha256:6c13879c0d2964335491463302a6ca5ad98105fc5db3565499dcb80b1b4bd839", size = 136007, upload-time = "2025-10-24T15:49:49.938Z" }, + { url = "https://files.pythonhosted.org/packages/c0/a9/967be009ddf0a1fffd7a67de9c36656b28c763659ef91352acc02cbe364c/orjson-3.11.4-cp313-cp313-win_amd64.whl", hash = "sha256:09bf242a4af98732db9f9a1ec57ca2604848e16f132e3f72edfd3c5c96de009a", size = 131314, upload-time = "2025-10-24T15:49:51.248Z" }, + { url = "https://files.pythonhosted.org/packages/cb/db/399abd6950fbd94ce125cb8cd1a968def95174792e127b0642781e040ed4/orjson-3.11.4-cp313-cp313-win_arm64.whl", hash = "sha256:a85f0adf63319d6c1ba06fb0dbf997fced64a01179cf17939a6caca662bf92de", size = 126152, upload-time = "2025-10-24T15:49:52.922Z" }, + { url = "https://files.pythonhosted.org/packages/25/e3/54ff63c093cc1697e758e4fceb53164dd2661a7d1bcd522260ba09f54533/orjson-3.11.4-cp314-cp314-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:42d43a1f552be1a112af0b21c10a5f553983c2a0938d2bbb8ecd8bc9fb572803", size = 243501, upload-time = "2025-10-24T15:49:54.288Z" }, + { url = "https://files.pythonhosted.org/packages/ac/7d/e2d1076ed2e8e0ae9badca65bf7ef22710f93887b29eaa37f09850604e09/orjson-3.11.4-cp314-cp314-macosx_15_0_arm64.whl", hash = "sha256:26a20f3fbc6c7ff2cb8e89c4c5897762c9d88cf37330c6a117312365d6781d54", size = 128862, upload-time = "2025-10-24T15:49:55.961Z" }, + { url = "https://files.pythonhosted.org/packages/9f/37/ca2eb40b90621faddfa9517dfe96e25f5ae4d8057a7c0cdd613c17e07b2c/orjson-3.11.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6e3f20be9048941c7ffa8fc523ccbd17f82e24df1549d1d1fe9317712d19938e", size = 130047, upload-time = "2025-10-24T15:49:57.406Z" }, + { url = "https://files.pythonhosted.org/packages/c7/62/1021ed35a1f2bad9040f05fa4cc4f9893410df0ba3eaa323ccf899b1c90a/orjson-3.11.4-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:aac364c758dc87a52e68e349924d7e4ded348dedff553889e4d9f22f74785316", size = 129073, upload-time = "2025-10-24T15:49:58.782Z" }, + { url = "https://files.pythonhosted.org/packages/e8/3f/f84d966ec2a6fd5f73b1a707e7cd876813422ae4bf9f0145c55c9c6a0f57/orjson-3.11.4-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d5c54a6d76e3d741dcc3f2707f8eeb9ba2a791d3adbf18f900219b62942803b1", size = 136597, upload-time = "2025-10-24T15:50:00.12Z" }, + { url = "https://files.pythonhosted.org/packages/32/78/4fa0aeca65ee82bbabb49e055bd03fa4edea33f7c080c5c7b9601661ef72/orjson-3.11.4-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f28485bdca8617b79d44627f5fb04336897041dfd9fa66d383a49d09d86798bc", size = 137515, upload-time = "2025-10-24T15:50:01.57Z" }, + { url = "https://files.pythonhosted.org/packages/c1/9d/0c102e26e7fde40c4c98470796d050a2ec1953897e2c8ab0cb95b0759fa2/orjson-3.11.4-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:bfc2a484cad3585e4ba61985a6062a4c2ed5c7925db6d39f1fa267c9d166487f", size = 136703, upload-time = "2025-10-24T15:50:02.944Z" }, + { url = "https://files.pythonhosted.org/packages/df/ac/2de7188705b4cdfaf0b6c97d2f7849c17d2003232f6e70df98602173f788/orjson-3.11.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e34dbd508cb91c54f9c9788923daca129fe5b55c5b4eebe713bf5ed3791280cf", size = 136311, upload-time = "2025-10-24T15:50:04.441Z" }, + { url = "https://files.pythonhosted.org/packages/e0/52/847fcd1a98407154e944feeb12e3b4d487a0e264c40191fb44d1269cbaa1/orjson-3.11.4-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:b13c478fa413d4b4ee606ec8e11c3b2e52683a640b006bb586b3041c2ca5f606", size = 140127, upload-time = "2025-10-24T15:50:07.398Z" }, + { url = "https://files.pythonhosted.org/packages/c1/ae/21d208f58bdb847dd4d0d9407e2929862561841baa22bdab7aea10ca088e/orjson-3.11.4-cp314-cp314-musllinux_1_2_armv7l.whl", hash = "sha256:724ca721ecc8a831b319dcd72cfa370cc380db0bf94537f08f7edd0a7d4e1780", size = 406201, upload-time = "2025-10-24T15:50:08.796Z" }, + { url = "https://files.pythonhosted.org/packages/8d/55/0789d6de386c8366059db098a628e2ad8798069e94409b0d8935934cbcb9/orjson-3.11.4-cp314-cp314-musllinux_1_2_i686.whl", hash = "sha256:977c393f2e44845ce1b540e19a786e9643221b3323dae190668a98672d43fb23", size = 149872, upload-time = "2025-10-24T15:50:10.234Z" }, + { url = "https://files.pythonhosted.org/packages/cc/1d/7ff81ea23310e086c17b41d78a72270d9de04481e6113dbe2ac19118f7fb/orjson-3.11.4-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:1e539e382cf46edec157ad66b0b0872a90d829a6b71f17cb633d6c160a223155", size = 139931, upload-time = "2025-10-24T15:50:11.623Z" }, + { url = "https://files.pythonhosted.org/packages/77/92/25b886252c50ed64be68c937b562b2f2333b45afe72d53d719e46a565a50/orjson-3.11.4-cp314-cp314-win32.whl", hash = "sha256:d63076d625babab9db5e7836118bdfa086e60f37d8a174194ae720161eb12394", size = 136065, upload-time = "2025-10-24T15:50:13.025Z" }, + { url = "https://files.pythonhosted.org/packages/63/b8/718eecf0bb7e9d64e4956afaafd23db9f04c776d445f59fe94f54bdae8f0/orjson-3.11.4-cp314-cp314-win_amd64.whl", hash = "sha256:0a54d6635fa3aaa438ae32e8570b9f0de36f3f6562c308d2a2a452e8b0592db1", size = 131310, upload-time = "2025-10-24T15:50:14.46Z" }, + { url = "https://files.pythonhosted.org/packages/1a/bf/def5e25d4d8bfce296a9a7c8248109bf58622c21618b590678f945a2c59c/orjson-3.11.4-cp314-cp314-win_arm64.whl", hash = "sha256:78b999999039db3cf58f6d230f524f04f75f129ba3d1ca2ed121f8657e575d3d", size = 126151, upload-time = "2025-10-24T15:50:15.878Z" }, ] [[package]] name = "packaging" -version = "24.2" +version = "25.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/d0/63/68dbb6eb2de9cb10ee4c9c14a0148804425e13c4fb20d61cce69f53106da/packaging-24.2.tar.gz", hash = "sha256:c228a6dc5e932d346bc5739379109d49e8853dd8223571c7c5b55260edc0b97f", size = 163950, upload-time = "2024-11-08T09:47:47.202Z" } +sdist = { url = "https://files.pythonhosted.org/packages/a1/d4/1fc4078c65507b51b96ca8f8c3ba19e6a61c8253c72794544580a7b6c24d/packaging-25.0.tar.gz", hash = "sha256:d443872c98d677bf60f6a1f2f8c1cb748e8fe762d2bf9d3148b5599295b0fc4f", size = 165727, upload-time = "2025-04-19T11:48:59.673Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/88/ef/eb23f262cca3c0c4eb7ab1933c3b1f03d021f2c48f54763065b6f0e321be/packaging-24.2-py3-none-any.whl", hash = "sha256:09abb1bccd265c01f4a3aa3f7a7db064b36514d2cba19a2f694fe6150451a759", size = 65451, upload-time = "2024-11-08T09:47:44.722Z" }, + { url = "https://files.pythonhosted.org/packages/20/12/38679034af332785aac8774540895e234f4d07f7545804097de4b666afd8/packaging-25.0-py3-none-any.whl", hash = "sha256:29572ef2b1f17581046b3a2227d5c611fb25ec70ca1ba8554b24b0e69331a484", size = 66469, upload-time = "2025-04-19T11:48:57.875Z" }, ] [[package]] @@ -10736,51 +9065,57 @@ wheels = [ [[package]] name = "pandas" -version = "2.3.0" +version = "2.3.3" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-5-mlipx-grace' or extra == 'extra-5-mlipx-matpes' or extra == 'extra-5-mlipx-mattersim' or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-5-mlipx-fairchem' or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'extra-5-mlipx-grace') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "numpy", version = "2.1.3", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform != 'linux' or extra == 'extra-5-mlipx-fairchem' or extra != 'extra-5-mlipx-grace' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, { name = "python-dateutil" }, { name = "pytz" }, { name = "tzdata" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/72/51/48f713c4c728d7c55ef7444ba5ea027c26998d96d1a40953b346438602fc/pandas-2.3.0.tar.gz", hash = "sha256:34600ab34ebf1131a7613a260a61dbe8b62c188ec0ea4c296da7c9a06b004133", size = 4484490, upload-time = "2025-06-05T03:27:54.133Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/e2/2d/df6b98c736ba51b8eaa71229e8fcd91233a831ec00ab520e1e23090cc072/pandas-2.3.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:625466edd01d43b75b1883a64d859168e4556261a5035b32f9d743b67ef44634", size = 11527531, upload-time = "2025-06-05T03:25:48.648Z" }, - { url = "https://files.pythonhosted.org/packages/77/1c/3f8c331d223f86ba1d0ed7d3ed7fcf1501c6f250882489cc820d2567ddbf/pandas-2.3.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a6872d695c896f00df46b71648eea332279ef4077a409e2fe94220208b6bb675", size = 10774764, upload-time = "2025-06-05T03:25:53.228Z" }, - { url = "https://files.pythonhosted.org/packages/1b/45/d2599400fad7fe06b849bd40b52c65684bc88fbe5f0a474d0513d057a377/pandas-2.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f4dd97c19bd06bc557ad787a15b6489d2614ddaab5d104a0310eb314c724b2d2", size = 11711963, upload-time = "2025-06-05T03:25:56.855Z" }, - { url = "https://files.pythonhosted.org/packages/66/f8/5508bc45e994e698dbc93607ee6b9b6eb67df978dc10ee2b09df80103d9e/pandas-2.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:034abd6f3db8b9880aaee98f4f5d4dbec7c4829938463ec046517220b2f8574e", size = 12349446, upload-time = "2025-06-05T03:26:01.292Z" }, - { url = "https://files.pythonhosted.org/packages/f7/fc/17851e1b1ea0c8456ba90a2f514c35134dd56d981cf30ccdc501a0adeac4/pandas-2.3.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23c2b2dc5213810208ca0b80b8666670eb4660bbfd9d45f58592cc4ddcfd62e1", size = 12920002, upload-time = "2025-06-06T00:00:07.925Z" }, - { url = "https://files.pythonhosted.org/packages/a1/9b/8743be105989c81fa33f8e2a4e9822ac0ad4aaf812c00fee6bb09fc814f9/pandas-2.3.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:39ff73ec07be5e90330cc6ff5705c651ace83374189dcdcb46e6ff54b4a72cd6", size = 13651218, upload-time = "2025-06-05T03:26:09.731Z" }, - { url = "https://files.pythonhosted.org/packages/26/fa/8eeb2353f6d40974a6a9fd4081ad1700e2386cf4264a8f28542fd10b3e38/pandas-2.3.0-cp310-cp310-win_amd64.whl", hash = "sha256:40cecc4ea5abd2921682b57532baea5588cc5f80f0231c624056b146887274d2", size = 11082485, upload-time = "2025-06-05T03:26:17.572Z" }, - { url = "https://files.pythonhosted.org/packages/96/1e/ba313812a699fe37bf62e6194265a4621be11833f5fce46d9eae22acb5d7/pandas-2.3.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:8adff9f138fc614347ff33812046787f7d43b3cef7c0f0171b3340cae333f6ca", size = 11551836, upload-time = "2025-06-05T03:26:22.784Z" }, - { url = "https://files.pythonhosted.org/packages/1b/cc/0af9c07f8d714ea563b12383a7e5bde9479cf32413ee2f346a9c5a801f22/pandas-2.3.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:e5f08eb9a445d07720776df6e641975665c9ea12c9d8a331e0f6890f2dcd76ef", size = 10807977, upload-time = "2025-06-05T16:50:11.109Z" }, - { url = "https://files.pythonhosted.org/packages/ee/3e/8c0fb7e2cf4a55198466ced1ca6a9054ae3b7e7630df7757031df10001fd/pandas-2.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fa35c266c8cd1a67d75971a1912b185b492d257092bdd2709bbdebe574ed228d", size = 11788230, upload-time = "2025-06-05T03:26:27.417Z" }, - { url = "https://files.pythonhosted.org/packages/14/22/b493ec614582307faf3f94989be0f7f0a71932ed6f56c9a80c0bb4a3b51e/pandas-2.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:14a0cc77b0f089d2d2ffe3007db58f170dae9b9f54e569b299db871a3ab5bf46", size = 12370423, upload-time = "2025-06-05T03:26:34.142Z" }, - { url = "https://files.pythonhosted.org/packages/9f/74/b012addb34cda5ce855218a37b258c4e056a0b9b334d116e518d72638737/pandas-2.3.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:c06f6f144ad0a1bf84699aeea7eff6068ca5c63ceb404798198af7eb86082e33", size = 12990594, upload-time = "2025-06-06T00:00:13.934Z" }, - { url = "https://files.pythonhosted.org/packages/95/81/b310e60d033ab64b08e66c635b94076488f0b6ce6a674379dd5b224fc51c/pandas-2.3.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:ed16339bc354a73e0a609df36d256672c7d296f3f767ac07257801aa064ff73c", size = 13745952, upload-time = "2025-06-05T03:26:39.475Z" }, - { url = "https://files.pythonhosted.org/packages/25/ac/f6ee5250a8881b55bd3aecde9b8cfddea2f2b43e3588bca68a4e9aaf46c8/pandas-2.3.0-cp311-cp311-win_amd64.whl", hash = "sha256:fa07e138b3f6c04addfeaf56cc7fdb96c3b68a3fe5e5401251f231fce40a0d7a", size = 11094534, upload-time = "2025-06-05T03:26:43.23Z" }, - { url = "https://files.pythonhosted.org/packages/94/46/24192607058dd607dbfacdd060a2370f6afb19c2ccb617406469b9aeb8e7/pandas-2.3.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:2eb4728a18dcd2908c7fccf74a982e241b467d178724545a48d0caf534b38ebf", size = 11573865, upload-time = "2025-06-05T03:26:46.774Z" }, - { url = "https://files.pythonhosted.org/packages/9f/cc/ae8ea3b800757a70c9fdccc68b67dc0280a6e814efcf74e4211fd5dea1ca/pandas-2.3.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:b9d8c3187be7479ea5c3d30c32a5d73d62a621166675063b2edd21bc47614027", size = 10702154, upload-time = "2025-06-05T16:50:14.439Z" }, - { url = "https://files.pythonhosted.org/packages/d8/ba/a7883d7aab3d24c6540a2768f679e7414582cc389876d469b40ec749d78b/pandas-2.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9ff730713d4c4f2f1c860e36c005c7cefc1c7c80c21c0688fd605aa43c9fcf09", size = 11262180, upload-time = "2025-06-05T16:50:17.453Z" }, - { url = "https://files.pythonhosted.org/packages/01/a5/931fc3ad333d9d87b10107d948d757d67ebcfc33b1988d5faccc39c6845c/pandas-2.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba24af48643b12ffe49b27065d3babd52702d95ab70f50e1b34f71ca703e2c0d", size = 11991493, upload-time = "2025-06-05T03:26:51.813Z" }, - { url = "https://files.pythonhosted.org/packages/d7/bf/0213986830a92d44d55153c1d69b509431a972eb73f204242988c4e66e86/pandas-2.3.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:404d681c698e3c8a40a61d0cd9412cc7364ab9a9cc6e144ae2992e11a2e77a20", size = 12470733, upload-time = "2025-06-06T00:00:18.651Z" }, - { url = "https://files.pythonhosted.org/packages/a4/0e/21eb48a3a34a7d4bac982afc2c4eb5ab09f2d988bdf29d92ba9ae8e90a79/pandas-2.3.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:6021910b086b3ca756755e86ddc64e0ddafd5e58e076c72cb1585162e5ad259b", size = 13212406, upload-time = "2025-06-05T03:26:55.992Z" }, - { url = "https://files.pythonhosted.org/packages/1f/d9/74017c4eec7a28892d8d6e31ae9de3baef71f5a5286e74e6b7aad7f8c837/pandas-2.3.0-cp312-cp312-win_amd64.whl", hash = "sha256:094e271a15b579650ebf4c5155c05dcd2a14fd4fdd72cf4854b2f7ad31ea30be", size = 10976199, upload-time = "2025-06-05T03:26:59.594Z" }, - { url = "https://files.pythonhosted.org/packages/d3/57/5cb75a56a4842bbd0511c3d1c79186d8315b82dac802118322b2de1194fe/pandas-2.3.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:2c7e2fc25f89a49a11599ec1e76821322439d90820108309bf42130d2f36c983", size = 11518913, upload-time = "2025-06-05T03:27:02.757Z" }, - { url = "https://files.pythonhosted.org/packages/05/01/0c8785610e465e4948a01a059562176e4c8088aa257e2e074db868f86d4e/pandas-2.3.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:c6da97aeb6a6d233fb6b17986234cc723b396b50a3c6804776351994f2a658fd", size = 10655249, upload-time = "2025-06-05T16:50:20.17Z" }, - { url = "https://files.pythonhosted.org/packages/e8/6a/47fd7517cd8abe72a58706aab2b99e9438360d36dcdb052cf917b7bf3bdc/pandas-2.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bb32dc743b52467d488e7a7c8039b821da2826a9ba4f85b89ea95274f863280f", size = 11328359, upload-time = "2025-06-05T03:27:06.431Z" }, - { url = "https://files.pythonhosted.org/packages/2a/b3/463bfe819ed60fb7e7ddffb4ae2ee04b887b3444feee6c19437b8f834837/pandas-2.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:213cd63c43263dbb522c1f8a7c9d072e25900f6975596f883f4bebd77295d4f3", size = 12024789, upload-time = "2025-06-05T03:27:09.875Z" }, - { url = "https://files.pythonhosted.org/packages/04/0c/e0704ccdb0ac40aeb3434d1c641c43d05f75c92e67525df39575ace35468/pandas-2.3.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:1d2b33e68d0ce64e26a4acc2e72d747292084f4e8db4c847c6f5f6cbe56ed6d8", size = 12480734, upload-time = "2025-06-06T00:00:22.246Z" }, - { url = "https://files.pythonhosted.org/packages/e9/df/815d6583967001153bb27f5cf075653d69d51ad887ebbf4cfe1173a1ac58/pandas-2.3.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:430a63bae10b5086995db1b02694996336e5a8ac9a96b4200572b413dfdfccb9", size = 13223381, upload-time = "2025-06-05T03:27:15.641Z" }, - { url = "https://files.pythonhosted.org/packages/79/88/ca5973ed07b7f484c493e941dbff990861ca55291ff7ac67c815ce347395/pandas-2.3.0-cp313-cp313-win_amd64.whl", hash = "sha256:4930255e28ff5545e2ca404637bcc56f031893142773b3468dc021c6c32a1390", size = 10970135, upload-time = "2025-06-05T03:27:24.131Z" }, - { url = "https://files.pythonhosted.org/packages/24/fb/0994c14d1f7909ce83f0b1fb27958135513c4f3f2528bde216180aa73bfc/pandas-2.3.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:f925f1ef673b4bd0271b1809b72b3270384f2b7d9d14a189b12b7fc02574d575", size = 12141356, upload-time = "2025-06-05T03:27:34.547Z" }, - { url = "https://files.pythonhosted.org/packages/9d/a2/9b903e5962134497ac4f8a96f862ee3081cb2506f69f8e4778ce3d9c9d82/pandas-2.3.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:e78ad363ddb873a631e92a3c063ade1ecfb34cae71e9a2be6ad100f875ac1042", size = 11474674, upload-time = "2025-06-05T03:27:39.448Z" }, - { url = "https://files.pythonhosted.org/packages/81/3a/3806d041bce032f8de44380f866059437fb79e36d6b22c82c187e65f765b/pandas-2.3.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:951805d146922aed8357e4cc5671b8b0b9be1027f0619cea132a9f3f65f2f09c", size = 11439876, upload-time = "2025-06-05T03:27:43.652Z" }, - { url = "https://files.pythonhosted.org/packages/15/aa/3fc3181d12b95da71f5c2537c3e3b3af6ab3a8c392ab41ebb766e0929bc6/pandas-2.3.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1a881bc1309f3fce34696d07b00f13335c41f5f5a8770a33b09ebe23261cfc67", size = 11966182, upload-time = "2025-06-05T03:27:47.652Z" }, - { url = "https://files.pythonhosted.org/packages/37/e7/e12f2d9b0a2c4a2cc86e2aabff7ccfd24f03e597d770abfa2acd313ee46b/pandas-2.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:e1991bbb96f4050b09b5f811253c4f3cf05ee89a589379aa36cd623f21a31d6f", size = 12547686, upload-time = "2025-06-06T00:00:26.142Z" }, - { url = "https://files.pythonhosted.org/packages/39/c2/646d2e93e0af70f4e5359d870a63584dacbc324b54d73e6b3267920ff117/pandas-2.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:bb3be958022198531eb7ec2008cfc78c5b1eed51af8600c6c5d9160d89d8d249", size = 13231847, upload-time = "2025-06-05T03:27:51.465Z" }, +sdist = { url = "https://files.pythonhosted.org/packages/33/01/d40b85317f86cf08d853a4f495195c73815fdf205eef3993821720274518/pandas-2.3.3.tar.gz", hash = "sha256:e05e1af93b977f7eafa636d043f9f94c7ee3ac81af99c13508215942e64c993b", size = 4495223, upload-time = "2025-09-29T23:34:51.853Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c1/fa/7ac648108144a095b4fb6aa3de1954689f7af60a14cf25583f4960ecb878/pandas-2.3.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:602b8615ebcc4a0c1751e71840428ddebeb142ec02c786e8ad6b1ce3c8dec523", size = 11578790, upload-time = "2025-09-29T23:18:30.065Z" }, + { url = "https://files.pythonhosted.org/packages/9b/35/74442388c6cf008882d4d4bdfc4109be87e9b8b7ccd097ad1e7f006e2e95/pandas-2.3.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:8fe25fc7b623b0ef6b5009149627e34d2a4657e880948ec3c840e9402e5c1b45", size = 10833831, upload-time = "2025-09-29T23:38:56.071Z" }, + { url = "https://files.pythonhosted.org/packages/fe/e4/de154cbfeee13383ad58d23017da99390b91d73f8c11856f2095e813201b/pandas-2.3.3-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b468d3dad6ff947df92dcb32ede5b7bd41a9b3cceef0a30ed925f6d01fb8fa66", size = 12199267, upload-time = "2025-09-29T23:18:41.627Z" }, + { url = "https://files.pythonhosted.org/packages/bf/c9/63f8d545568d9ab91476b1818b4741f521646cbdd151c6efebf40d6de6f7/pandas-2.3.3-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b98560e98cb334799c0b07ca7967ac361a47326e9b4e5a7dfb5ab2b1c9d35a1b", size = 12789281, upload-time = "2025-09-29T23:18:56.834Z" }, + { url = "https://files.pythonhosted.org/packages/f2/00/a5ac8c7a0e67fd1a6059e40aa08fa1c52cc00709077d2300e210c3ce0322/pandas-2.3.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:1d37b5848ba49824e5c30bedb9c830ab9b7751fd049bc7914533e01c65f79791", size = 13240453, upload-time = "2025-09-29T23:19:09.247Z" }, + { url = "https://files.pythonhosted.org/packages/27/4d/5c23a5bc7bd209231618dd9e606ce076272c9bc4f12023a70e03a86b4067/pandas-2.3.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:db4301b2d1f926ae677a751eb2bd0e8c5f5319c9cb3f88b0becbbb0b07b34151", size = 13890361, upload-time = "2025-09-29T23:19:25.342Z" }, + { url = "https://files.pythonhosted.org/packages/8e/59/712db1d7040520de7a4965df15b774348980e6df45c129b8c64d0dbe74ef/pandas-2.3.3-cp311-cp311-win_amd64.whl", hash = "sha256:f086f6fe114e19d92014a1966f43a3e62285109afe874f067f5abbdcbb10e59c", size = 11348702, upload-time = "2025-09-29T23:19:38.296Z" }, + { url = "https://files.pythonhosted.org/packages/9c/fb/231d89e8637c808b997d172b18e9d4a4bc7bf31296196c260526055d1ea0/pandas-2.3.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:6d21f6d74eb1725c2efaa71a2bfc661a0689579b58e9c0ca58a739ff0b002b53", size = 11597846, upload-time = "2025-09-29T23:19:48.856Z" }, + { url = "https://files.pythonhosted.org/packages/5c/bd/bf8064d9cfa214294356c2d6702b716d3cf3bb24be59287a6a21e24cae6b/pandas-2.3.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:3fd2f887589c7aa868e02632612ba39acb0b8948faf5cc58f0850e165bd46f35", size = 10729618, upload-time = "2025-09-29T23:39:08.659Z" }, + { url = "https://files.pythonhosted.org/packages/57/56/cf2dbe1a3f5271370669475ead12ce77c61726ffd19a35546e31aa8edf4e/pandas-2.3.3-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ecaf1e12bdc03c86ad4a7ea848d66c685cb6851d807a26aa245ca3d2017a1908", size = 11737212, upload-time = "2025-09-29T23:19:59.765Z" }, + { url = "https://files.pythonhosted.org/packages/e5/63/cd7d615331b328e287d8233ba9fdf191a9c2d11b6af0c7a59cfcec23de68/pandas-2.3.3-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b3d11d2fda7eb164ef27ffc14b4fcab16a80e1ce67e9f57e19ec0afaf715ba89", size = 12362693, upload-time = "2025-09-29T23:20:14.098Z" }, + { url = "https://files.pythonhosted.org/packages/a6/de/8b1895b107277d52f2b42d3a6806e69cfef0d5cf1d0ba343470b9d8e0a04/pandas-2.3.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:a68e15f780eddf2b07d242e17a04aa187a7ee12b40b930bfdd78070556550e98", size = 12771002, upload-time = "2025-09-29T23:20:26.76Z" }, + { url = "https://files.pythonhosted.org/packages/87/21/84072af3187a677c5893b170ba2c8fbe450a6ff911234916da889b698220/pandas-2.3.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:371a4ab48e950033bcf52b6527eccb564f52dc826c02afd9a1bc0ab731bba084", size = 13450971, upload-time = "2025-09-29T23:20:41.344Z" }, + { url = "https://files.pythonhosted.org/packages/86/41/585a168330ff063014880a80d744219dbf1dd7a1c706e75ab3425a987384/pandas-2.3.3-cp312-cp312-win_amd64.whl", hash = "sha256:a16dcec078a01eeef8ee61bf64074b4e524a2a3f4b3be9326420cabe59c4778b", size = 10992722, upload-time = "2025-09-29T23:20:54.139Z" }, + { url = "https://files.pythonhosted.org/packages/cd/4b/18b035ee18f97c1040d94debd8f2e737000ad70ccc8f5513f4eefad75f4b/pandas-2.3.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:56851a737e3470de7fa88e6131f41281ed440d29a9268dcbf0002da5ac366713", size = 11544671, upload-time = "2025-09-29T23:21:05.024Z" }, + { url = "https://files.pythonhosted.org/packages/31/94/72fac03573102779920099bcac1c3b05975c2cb5f01eac609faf34bed1ca/pandas-2.3.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:bdcd9d1167f4885211e401b3036c0c8d9e274eee67ea8d0758a256d60704cfe8", size = 10680807, upload-time = "2025-09-29T23:21:15.979Z" }, + { url = "https://files.pythonhosted.org/packages/16/87/9472cf4a487d848476865321de18cc8c920b8cab98453ab79dbbc98db63a/pandas-2.3.3-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e32e7cc9af0f1cc15548288a51a3b681cc2a219faa838e995f7dc53dbab1062d", size = 11709872, upload-time = "2025-09-29T23:21:27.165Z" }, + { url = "https://files.pythonhosted.org/packages/15/07/284f757f63f8a8d69ed4472bfd85122bd086e637bf4ed09de572d575a693/pandas-2.3.3-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:318d77e0e42a628c04dc56bcef4b40de67918f7041c2b061af1da41dcff670ac", size = 12306371, upload-time = "2025-09-29T23:21:40.532Z" }, + { url = "https://files.pythonhosted.org/packages/33/81/a3afc88fca4aa925804a27d2676d22dcd2031c2ebe08aabd0ae55b9ff282/pandas-2.3.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:4e0a175408804d566144e170d0476b15d78458795bb18f1304fb94160cabf40c", size = 12765333, upload-time = "2025-09-29T23:21:55.77Z" }, + { url = "https://files.pythonhosted.org/packages/8d/0f/b4d4ae743a83742f1153464cf1a8ecfafc3ac59722a0b5c8602310cb7158/pandas-2.3.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:93c2d9ab0fc11822b5eece72ec9587e172f63cff87c00b062f6e37448ced4493", size = 13418120, upload-time = "2025-09-29T23:22:10.109Z" }, + { url = "https://files.pythonhosted.org/packages/4f/c7/e54682c96a895d0c808453269e0b5928a07a127a15704fedb643e9b0a4c8/pandas-2.3.3-cp313-cp313-win_amd64.whl", hash = "sha256:f8bfc0e12dc78f777f323f55c58649591b2cd0c43534e8355c51d3fede5f4dee", size = 10993991, upload-time = "2025-09-29T23:25:04.889Z" }, + { url = "https://files.pythonhosted.org/packages/f9/ca/3f8d4f49740799189e1395812f3bf23b5e8fc7c190827d55a610da72ce55/pandas-2.3.3-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:75ea25f9529fdec2d2e93a42c523962261e567d250b0013b16210e1d40d7c2e5", size = 12048227, upload-time = "2025-09-29T23:22:24.343Z" }, + { url = "https://files.pythonhosted.org/packages/0e/5a/f43efec3e8c0cc92c4663ccad372dbdff72b60bdb56b2749f04aa1d07d7e/pandas-2.3.3-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:74ecdf1d301e812db96a465a525952f4dde225fdb6d8e5a521d47e1f42041e21", size = 11411056, upload-time = "2025-09-29T23:22:37.762Z" }, + { url = "https://files.pythonhosted.org/packages/46/b1/85331edfc591208c9d1a63a06baa67b21d332e63b7a591a5ba42a10bb507/pandas-2.3.3-cp313-cp313t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6435cb949cb34ec11cc9860246ccb2fdc9ecd742c12d3304989017d53f039a78", size = 11645189, upload-time = "2025-09-29T23:22:51.688Z" }, + { url = "https://files.pythonhosted.org/packages/44/23/78d645adc35d94d1ac4f2a3c4112ab6f5b8999f4898b8cdf01252f8df4a9/pandas-2.3.3-cp313-cp313t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:900f47d8f20860de523a1ac881c4c36d65efcb2eb850e6948140fa781736e110", size = 12121912, upload-time = "2025-09-29T23:23:05.042Z" }, + { url = "https://files.pythonhosted.org/packages/53/da/d10013df5e6aaef6b425aa0c32e1fc1f3e431e4bcabd420517dceadce354/pandas-2.3.3-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:a45c765238e2ed7d7c608fc5bc4a6f88b642f2f01e70c0c23d2224dd21829d86", size = 12712160, upload-time = "2025-09-29T23:23:28.57Z" }, + { url = "https://files.pythonhosted.org/packages/bd/17/e756653095a083d8a37cbd816cb87148debcfcd920129b25f99dd8d04271/pandas-2.3.3-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:c4fc4c21971a1a9f4bdb4c73978c7f7256caa3e62b323f70d6cb80db583350bc", size = 13199233, upload-time = "2025-09-29T23:24:24.876Z" }, + { url = "https://files.pythonhosted.org/packages/04/fd/74903979833db8390b73b3a8a7d30d146d710bd32703724dd9083950386f/pandas-2.3.3-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:ee15f284898e7b246df8087fc82b87b01686f98ee67d85a17b7ab44143a3a9a0", size = 11540635, upload-time = "2025-09-29T23:25:52.486Z" }, + { url = "https://files.pythonhosted.org/packages/21/00/266d6b357ad5e6d3ad55093a7e8efc7dd245f5a842b584db9f30b0f0a287/pandas-2.3.3-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:1611aedd912e1ff81ff41c745822980c49ce4a7907537be8692c8dbc31924593", size = 10759079, upload-time = "2025-09-29T23:26:33.204Z" }, + { url = "https://files.pythonhosted.org/packages/ca/05/d01ef80a7a3a12b2f8bbf16daba1e17c98a2f039cbc8e2f77a2c5a63d382/pandas-2.3.3-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6d2cefc361461662ac48810cb14365a365ce864afe85ef1f447ff5a1e99ea81c", size = 11814049, upload-time = "2025-09-29T23:27:15.384Z" }, + { url = "https://files.pythonhosted.org/packages/15/b2/0e62f78c0c5ba7e3d2c5945a82456f4fac76c480940f805e0b97fcbc2f65/pandas-2.3.3-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ee67acbbf05014ea6c763beb097e03cd629961c8a632075eeb34247120abcb4b", size = 12332638, upload-time = "2025-09-29T23:27:51.625Z" }, + { url = "https://files.pythonhosted.org/packages/c5/33/dd70400631b62b9b29c3c93d2feee1d0964dc2bae2e5ad7a6c73a7f25325/pandas-2.3.3-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:c46467899aaa4da076d5abc11084634e2d197e9460643dd455ac3db5856b24d6", size = 12886834, upload-time = "2025-09-29T23:28:21.289Z" }, + { url = "https://files.pythonhosted.org/packages/d3/18/b5d48f55821228d0d2692b34fd5034bb185e854bdb592e9c640f6290e012/pandas-2.3.3-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:6253c72c6a1d990a410bc7de641d34053364ef8bcd3126f7e7450125887dffe3", size = 13409925, upload-time = "2025-09-29T23:28:58.261Z" }, + { url = "https://files.pythonhosted.org/packages/a6/3d/124ac75fcd0ecc09b8fdccb0246ef65e35b012030defb0e0eba2cbbbe948/pandas-2.3.3-cp314-cp314-win_amd64.whl", hash = "sha256:1b07204a219b3b7350abaae088f451860223a52cfb8a6c53358e7948735158e5", size = 11109071, upload-time = "2025-09-29T23:32:27.484Z" }, + { url = "https://files.pythonhosted.org/packages/89/9c/0e21c895c38a157e0faa1fb64587a9226d6dd46452cac4532d80c3c4a244/pandas-2.3.3-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:2462b1a365b6109d275250baaae7b760fd25c726aaca0054649286bcfbb3e8ec", size = 12048504, upload-time = "2025-09-29T23:29:31.47Z" }, + { url = "https://files.pythonhosted.org/packages/d7/82/b69a1c95df796858777b68fbe6a81d37443a33319761d7c652ce77797475/pandas-2.3.3-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:0242fe9a49aa8b4d78a4fa03acb397a58833ef6199e9aa40a95f027bb3a1b6e7", size = 11410702, upload-time = "2025-09-29T23:29:54.591Z" }, + { url = "https://files.pythonhosted.org/packages/f9/88/702bde3ba0a94b8c73a0181e05144b10f13f29ebfc2150c3a79062a8195d/pandas-2.3.3-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:a21d830e78df0a515db2b3d2f5570610f5e6bd2e27749770e8bb7b524b89b450", size = 11634535, upload-time = "2025-09-29T23:30:21.003Z" }, + { url = "https://files.pythonhosted.org/packages/a4/1e/1bac1a839d12e6a82ec6cb40cda2edde64a2013a66963293696bbf31fbbb/pandas-2.3.3-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:2e3ebdb170b5ef78f19bfb71b0dc5dc58775032361fa188e814959b74d726dd5", size = 12121582, upload-time = "2025-09-29T23:30:43.391Z" }, + { url = "https://files.pythonhosted.org/packages/44/91/483de934193e12a3b1d6ae7c8645d083ff88dec75f46e827562f1e4b4da6/pandas-2.3.3-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:d051c0e065b94b7a3cea50eb1ec32e912cd96dba41647eb24104b6c6c14c5788", size = 12699963, upload-time = "2025-09-29T23:31:10.009Z" }, + { url = "https://files.pythonhosted.org/packages/70/44/5191d2e4026f86a2a109053e194d3ba7a31a2d10a9c2348368c63ed4e85a/pandas-2.3.3-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:3869faf4bd07b3b66a9f462417d0ca3a9df29a9f6abd5d0d0dbab15dac7abe87", size = 13202175, upload-time = "2025-09-29T23:31:59.173Z" }, ] [[package]] @@ -10794,25 +9129,26 @@ wheels = [ [[package]] name = "paramiko" -version = "3.5.1" +version = "4.0.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "bcrypt" }, { name = "cryptography" }, + { name = "invoke" }, { name = "pynacl" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/7d/15/ad6ce226e8138315f2451c2aeea985bf35ee910afb477bae7477dc3a8f3b/paramiko-3.5.1.tar.gz", hash = "sha256:b2c665bc45b2b215bd7d7f039901b14b067da00f3a11e6640995fd58f2664822", size = 1566110, upload-time = "2025-02-04T02:37:59.783Z" } +sdist = { url = "https://files.pythonhosted.org/packages/1f/e7/81fdcbc7f190cdb058cffc9431587eb289833bdd633e2002455ca9bb13d4/paramiko-4.0.0.tar.gz", hash = "sha256:6a25f07b380cc9c9a88d2b920ad37167ac4667f8d9886ccebd8f90f654b5d69f", size = 1630743, upload-time = "2025-08-04T01:02:03.711Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/15/f8/c7bd0ef12954a81a1d3cea60a13946bd9a49a0036a5927770c461eade7ae/paramiko-3.5.1-py3-none-any.whl", hash = "sha256:43b9a0501fc2b5e70680388d9346cf252cfb7d00b0667c39e80eb43a408b8f61", size = 227298, upload-time = "2025-02-04T02:37:57.672Z" }, + { url = "https://files.pythonhosted.org/packages/a9/90/a744336f5af32c433bd09af7854599682a383b37cfd78f7de263de6ad6cb/paramiko-4.0.0-py3-none-any.whl", hash = "sha256:0e20e00ac666503bf0b4eda3b6d833465a2b7aff2e2b3d79a8bba5ef144ee3b9", size = 223932, upload-time = "2025-08-04T01:02:02.029Z" }, ] [[package]] name = "parso" -version = "0.8.4" +version = "0.8.5" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/66/94/68e2e17afaa9169cf6412ab0f28623903be73d1b32e208d9e8e541bb086d/parso-0.8.4.tar.gz", hash = "sha256:eb3a7b58240fb99099a345571deecc0f9540ea5f4dd2fe14c2a99d6b281ab92d", size = 400609, upload-time = "2024-04-05T09:43:55.897Z" } +sdist = { url = "https://files.pythonhosted.org/packages/d4/de/53e0bcf53d13e005bd8c92e7855142494f41171b34c2536b86187474184d/parso-0.8.5.tar.gz", hash = "sha256:034d7354a9a018bdce352f48b2a8a450f05e9d6ee85db84764e9b6bd96dafe5a", size = 401205, upload-time = "2025-08-23T15:15:28.028Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/c6/ac/dac4a63f978e4dcb3c6d3a78c4d8e0192a113d288502a1216950c41b1027/parso-0.8.4-py2.py3-none-any.whl", hash = "sha256:a418670a20291dacd2dddc80c377c5c3791378ee1e8d12bffc35420643d43f18", size = 103650, upload-time = "2024-04-05T09:43:53.299Z" }, + { url = "https://files.pythonhosted.org/packages/16/32/f8e3c85d1d5250232a5d3477a2a28cc291968ff175caeadaf3cc19ce0e4a/parso-0.8.5-py2.py3-none-any.whl", hash = "sha256:646204b5ee239c396d040b90f9e272e9a8017c630092bf59980beb62fd033887", size = 106668, upload-time = "2025-08-23T15:15:25.663Z" }, ] [[package]] @@ -10826,16 +9162,20 @@ wheels = [ [[package]] name = "pet-mad" -version = "1.2.0" +version = "1.4.3" source = { registry = "https://pypi.org/simple" } dependencies = [ + { name = "hf-xet" }, { name = "huggingface-hub" }, { name = "metatrain" }, + { name = "packaging" }, { name = "platformdirs" }, + { name = "scipy" }, + { name = "tqdm" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/e8/d5/0a8b6252e1dfd857a0095772ba2de2db333b440934db6d57ef98bb654b35/pet_mad-1.2.0.tar.gz", hash = "sha256:a27962290e08da0affcddcb31035ff721d8512b8abda964f77e94417e72ba9b8", size = 13492, upload-time = "2025-05-30T13:07:17.074Z" } +sdist = { url = "https://files.pythonhosted.org/packages/d1/f5/8b463032c220dc19b8d911ac6012ca4b56920d897cdc2c50e9d65d4571aa/pet_mad-1.4.3.tar.gz", hash = "sha256:f83d950ab5633deb750e8ff75d87655fd1037247a9a6abf0d81d10148c17f4cc", size = 29665, upload-time = "2025-09-21T18:01:24.513Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/aa/c4/abaa58258e7dc72456def49985171a3893e5fbf202a0ff9dcf04e03877be/pet_mad-1.2.0-py3-none-any.whl", hash = "sha256:35170c00a364b3cf160032bbd538fe4d489cc95978ef95c21ee9c4a638c1de3a", size = 8818, upload-time = "2025-05-30T13:07:15.965Z" }, + { url = "https://files.pythonhosted.org/packages/f4/a3/c15d771217501c0735c9fb788c6f3b7df04e60709b4ee3bfdc7993d10477/pet_mad-1.4.3-py3-none-any.whl", hash = "sha256:2d162ce760f225fd96ee760e23942c2aa4f91c299ed4cf5f266cbe52714fd178", size = 24879, upload-time = "2025-09-21T18:01:22.767Z" }, ] [[package]] @@ -10852,120 +9192,126 @@ wheels = [ [[package]] name = "phonopy" -version = "2.38.2" +version = "2.44.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "h5py" }, { name = "matplotlib" }, - { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" } }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb')" }, + { name = "numpy", version = "2.1.3", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'linux' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb')" }, { name = "pyyaml" }, { name = "spglib" }, { name = "symfc" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/a5/c7/36be3fd247d1a8d5b5bfa0cb241f17e3fb22fff63eddbd17023b7246633f/phonopy-2.38.2.tar.gz", hash = "sha256:c377f52a8382705b3e3b23473ac9ab3e3ea6ca7aa3a72ebac9f0c30dd73792fa", size = 4714636, upload-time = "2025-04-29T23:57:18.101Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/a4/0f/fca33718f41cd31fe7798232c9191346834ffb9e1d4257f849684d67315b/phonopy-2.38.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:94a8ff1ae976c8da38b5208008b71d4ac38b4163e224bef01f2f5dfc53f7419f", size = 504595, upload-time = "2025-04-30T00:06:05.338Z" }, - { url = "https://files.pythonhosted.org/packages/0a/1e/9cee17d7954c3f3b8dcd0571ecdb0c83e7f5fee2f81b42e4fe3153d61efc/phonopy-2.38.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a7ab5f9edb154a1164c8907ddf1cd49960f904d1ab8d33af0224381852fcac80", size = 593498, upload-time = "2025-04-30T00:06:07.116Z" }, - { url = "https://files.pythonhosted.org/packages/85/35/38b6c11b2198428aad79466c86e37e3553a55cffa12e8e1016a9ad051c17/phonopy-2.38.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:08d2ae41af84a9b39c3f367e3d8ecb50048ab2e3b11857fc832cc5777b3e57e2", size = 598453, upload-time = "2025-04-30T00:06:08.17Z" }, - { url = "https://files.pythonhosted.org/packages/98/06/1810b139418951af60ebc67491cfda4fa73a4c47d71ee9ca37ba194bdb8f/phonopy-2.38.2-cp310-cp310-win32.whl", hash = "sha256:45cfa9edc0c16b152a26a137eb702a86874935601ddbe350993ef611d3708f8b", size = 500915, upload-time = "2025-04-30T00:06:09.704Z" }, - { url = "https://files.pythonhosted.org/packages/67/87/b75dbf6a57705dc15568a39355f0ed55762f745be1e69fa6d37afc1ef401/phonopy-2.38.2-cp310-cp310-win_amd64.whl", hash = "sha256:46f3da2fea6ceeab273c9d8749823f6d7d0b35efd3470a761740a1fb0f297541", size = 514505, upload-time = "2025-04-30T00:06:10.908Z" }, - { url = "https://files.pythonhosted.org/packages/e6/c5/75472512439af470e22be31ad5a5e0752a293cab0b1af445af5f07e2eb33/phonopy-2.38.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:40738400c9bd9b3842a8da5981fe139253a090ae69759cda832561b64b1037ed", size = 504446, upload-time = "2025-04-30T00:06:12.502Z" }, - { url = "https://files.pythonhosted.org/packages/6c/8f/f547f6cf9183b9f7bd75de9450bf90744c2033f04a0f9723b6df0bed8d50/phonopy-2.38.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0b198b3947be86ab70983a56ce0d4e207abd97fc348e87a40c142d63e957efae", size = 593381, upload-time = "2025-04-30T00:06:14.002Z" }, - { url = "https://files.pythonhosted.org/packages/79/35/a2db7b590ff509e280864e48e2724c29d9b79f5e5ce2a92aad70fa878d30/phonopy-2.38.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a5e04154c5512674ea0c9051cf7924f14d8447e12a34cac5902f8f8554ff2d7f", size = 598295, upload-time = "2025-04-30T00:06:15.541Z" }, - { url = "https://files.pythonhosted.org/packages/26/e5/70744401222c8d6acfb8fb3f62f8ca51b3b44b5dda7abcb76a6d5471b7fb/phonopy-2.38.2-cp311-cp311-win32.whl", hash = "sha256:adb0baec629c5a585b3c2c7c66c3dfe35f32c1e1677b7cfb6cd818b787b27313", size = 500771, upload-time = "2025-04-30T00:06:16.603Z" }, - { url = "https://files.pythonhosted.org/packages/7f/e8/0bc3a3de08f54f21ae122a0803ca1a1cc3bb3e3f291ac966188bf8ae2f5e/phonopy-2.38.2-cp311-cp311-win_amd64.whl", hash = "sha256:327a6026c66a5b222864042c59aa8bc4d4720ab788ad4e9c13dcb0286f1832b0", size = 514332, upload-time = "2025-04-30T00:06:18.118Z" }, - { url = "https://files.pythonhosted.org/packages/aa/8e/b67c17f6c01cb34e0b07b1e27cf8f35f1f972d23c38a6ab55154a5d79372/phonopy-2.38.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:d290044a310fb74ab62ef180201935b4edbe366f97c04dd7861ebe34d720ecbb", size = 502870, upload-time = "2025-04-30T00:06:19.185Z" }, - { url = "https://files.pythonhosted.org/packages/78/e8/2259898bca22cb03c34d31c8a91efdd6b02df6bb9e06a4f0aedb36166b62/phonopy-2.38.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:011569e372e45fa904e6e83437c855a070d1c939020154e95a8898254aa6618d", size = 590393, upload-time = "2025-04-30T00:06:20.559Z" }, - { url = "https://files.pythonhosted.org/packages/cc/da/8836619db7c762ee3b31907e5fac1b4c3fc6a8df278ca1f2668990a9dbf4/phonopy-2.38.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1b8a6f9153356bab5c623adcc3a70c648504919e244154daf5286c4bd5cd8d12", size = 595448, upload-time = "2025-04-30T00:06:22.475Z" }, - { url = "https://files.pythonhosted.org/packages/b6/d9/2e637f9c2de34c6833e041f6bdc5a52d1d5f3f06432e42b434dab4c7371f/phonopy-2.38.2-cp312-cp312-win32.whl", hash = "sha256:c70c0039ad10f64df33e7ab09e3bce2bf12cd89b0b86ed5c13cd4fa58de2871a", size = 499221, upload-time = "2025-04-30T00:06:24.142Z" }, - { url = "https://files.pythonhosted.org/packages/37/18/2a3b2e079eb2cc09202a754e7d5438534179e30b64a213ad0f7013dee32d/phonopy-2.38.2-cp312-cp312-win_amd64.whl", hash = "sha256:a3d58e3d4f279c5a0020416573c19506277f2b7334e05fe2145e9dcb8132b443", size = 512902, upload-time = "2025-04-30T00:06:25.772Z" }, - { url = "https://files.pythonhosted.org/packages/11/13/69824c6788da1fcafbc57d5acd686e478af964fba8c3929b3908497047a7/phonopy-2.38.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:dff67bac0faba720d767181da3c8d0fb293dd16089d6b765f27b69ff60c3b38d", size = 502870, upload-time = "2025-04-30T00:06:26.845Z" }, - { url = "https://files.pythonhosted.org/packages/2c/96/b8f6099e586e41d324eca4ab6c435eca92ebb0ab9bbc42a5bf961accd3f8/phonopy-2.38.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:176f63755afdc746f2954634292d1c6e57c77ed30b081104f0247e5303e59038", size = 590392, upload-time = "2025-04-30T00:06:28.31Z" }, - { url = "https://files.pythonhosted.org/packages/a6/73/5e4e841f31634eaf5ba0c301e4bc80915f8742b4021a4add18cb71f7172e/phonopy-2.38.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5fa0ddbb1b494fb044468805ed771e3575ae67f36c37ec1c0adc0963db41e955", size = 595448, upload-time = "2025-04-30T00:06:29.837Z" }, - { url = "https://files.pythonhosted.org/packages/d9/a0/be135d50341cd889e359acf1a96db6e0ff326d6d40f200837d23fad44efe/phonopy-2.38.2-cp313-cp313-win32.whl", hash = "sha256:dc00406e0c00d2d48e65d26e8de60dd8d987c2cdfb1e3eb8c883f77bc540bbda", size = 499225, upload-time = "2025-04-30T00:06:31.34Z" }, - { url = "https://files.pythonhosted.org/packages/af/1f/6dd74b3af47a36914e7c1fc820c85c6588a421994b532ce6b4e8e3b61e8b/phonopy-2.38.2-cp313-cp313-win_amd64.whl", hash = "sha256:deedd9ff6d24fdc311ef83e2a3221271067b4bcc0129c048b3fb27f6c9293d1b", size = 512907, upload-time = "2025-04-30T00:06:32.462Z" }, +sdist = { url = "https://files.pythonhosted.org/packages/39/1f/308282924e9c6ba33c348c31b5cfbca5d17c1afe07e1042d02e1f9799ea5/phonopy-2.44.0.tar.gz", hash = "sha256:5412f8b3f527dd409f7bc8629718bb4569088752d1a10239019cb66c7abe7352", size = 4881482, upload-time = "2025-11-16T09:46:26.818Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b3/95/b2d8345e907d35b590185feb6f57c96e2a4df6bfbfbd5195a06a8472d7dd/phonopy-2.44.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f44761bc33cc53188169920f43d190ea54d7fdc0c01cfd555180ae39700f1e3a", size = 514978, upload-time = "2025-11-16T10:07:17.865Z" }, + { url = "https://files.pythonhosted.org/packages/b8/43/7622d9f02ec1076bff5a6697da27e88a3b0dbdb6bc205a63d1595abbe294/phonopy-2.44.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:398f04638f9e284a1338d4059a0a1cf3001156be9a137237f52b2fb178517fa5", size = 605773, upload-time = "2025-11-16T10:07:19.081Z" }, + { url = "https://files.pythonhosted.org/packages/d1/b6/c034ef6132de71db698730458e4c3fa078907e251ccdcd9bf911cfd4281a/phonopy-2.44.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:38b85956429c7b9908edda2f345909c343e34b250d57489a0083ea77704cf80c", size = 611525, upload-time = "2025-11-16T10:07:20.381Z" }, + { url = "https://files.pythonhosted.org/packages/17/4e/921456687988b4115865b7a7539a592b4da447b5bd586b213c0e2cbe08ee/phonopy-2.44.0-cp311-cp311-win32.whl", hash = "sha256:6c68e76faffe67ed7187c1b8e57ba152f10e45d6fb54f25014c30c44c1c881d1", size = 512312, upload-time = "2025-11-16T10:07:21.3Z" }, + { url = "https://files.pythonhosted.org/packages/ff/34/6bbc1bf5adaaf45ddf7d0938bf6899327776dd78ec5e82375c21e8e7c325/phonopy-2.44.0-cp311-cp311-win_amd64.whl", hash = "sha256:fd2bd68b1b211aa3ee7cee03febf35fbe6c015adc4e01f39ed5f024195eaafb8", size = 525905, upload-time = "2025-11-16T10:07:22.257Z" }, + { url = "https://files.pythonhosted.org/packages/ae/79/b791f5f0d3deed8117df64f6c863aa0e1c7cf5fb10bd62f0a1e6028c119f/phonopy-2.44.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:c1d8bc20a29ec86e8445b9d61cf31ba86131a6bb0deae9f12561c59f9091cbf1", size = 513535, upload-time = "2025-11-16T10:07:23.418Z" }, + { url = "https://files.pythonhosted.org/packages/f1/2c/2c070b41644693bc41b17f1f79a0534e12cd70e14dd21071202c956f379e/phonopy-2.44.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:748ec9b4c6d918610fd32cf3911494085214e912a9d7271e5cae77e4e699e5d2", size = 602978, upload-time = "2025-11-16T10:07:24.388Z" }, + { url = "https://files.pythonhosted.org/packages/0c/2e/31d7bbe4d81e14cd876221bde11e911e01115b0dad3cfbb12a31541a431a/phonopy-2.44.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:018aef2ab6941deb3c28007e95e83eb0de288457573a2bc050d06b0c0ced56f7", size = 608390, upload-time = "2025-11-16T10:07:25.385Z" }, + { url = "https://files.pythonhosted.org/packages/60/eb/dbe64d1176107020bc2d07ca1413b3e0bfb27d8e5614cfdbf2869e4692bd/phonopy-2.44.0-cp312-cp312-win32.whl", hash = "sha256:9a8b65cb86005cdaaf14f3eb20ef5cead7e0301e74696f98e36dae13ab4b7ebb", size = 510694, upload-time = "2025-11-16T10:07:26.95Z" }, + { url = "https://files.pythonhosted.org/packages/1a/aa/b6c2d13662b37003e34925d2f2e37b4aaa3b1d3bb24b846eb7c183e369f5/phonopy-2.44.0-cp312-cp312-win_amd64.whl", hash = "sha256:2d881df38098c4003e33dc9a2e3fcf1a026860c5c73d60a755ab1c4361fc361a", size = 524298, upload-time = "2025-11-16T10:07:27.969Z" }, + { url = "https://files.pythonhosted.org/packages/d5/3d/be14a05b3dd87008cff76cb39f085dc629e0c17d946371af6b07ee57242f/phonopy-2.44.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f942254c4fb37be0c3d53887b42c036b9c80d047cf24a3ffaa450acceb03d75d", size = 513538, upload-time = "2025-11-16T10:07:29.021Z" }, + { url = "https://files.pythonhosted.org/packages/59/77/3098b05a0259e89464f957f943507dfa28269cf26efc772dabcc536aef89/phonopy-2.44.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:727fb047d07ad0b924544a25b1652bc6f3771b36b85e4d782e5863a99743f017", size = 602978, upload-time = "2025-11-16T10:07:30.425Z" }, + { url = "https://files.pythonhosted.org/packages/9a/bb/f0ac8218cdafea0ea04d027e79b87699c6493fb3c46c85bc91899e0d2eac/phonopy-2.44.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c784ed7e6d0021b000e4f8b18245b6a82dfae83692e2de358cc00334085762ac", size = 608391, upload-time = "2025-11-16T10:07:31.732Z" }, + { url = "https://files.pythonhosted.org/packages/b9/93/5476f7ebb5bb58baec415218a4afd26e2fc05ed6900f015f120c5f79a260/phonopy-2.44.0-cp313-cp313-win32.whl", hash = "sha256:21fa9c356704a844b94c986fc148068c5628d4dd61227fd36050ab3c9eac1f96", size = 510673, upload-time = "2025-11-16T10:07:33.049Z" }, + { url = "https://files.pythonhosted.org/packages/2f/89/1cfec9fd391b6db029395d58a5fec98d2e2cf07cc2bc45195eb79c005f7f/phonopy-2.44.0-cp313-cp313-win_amd64.whl", hash = "sha256:73a589b53bd8286d9a995cb31af05ed0e7e6ae9c95f38ee49b465f512835a993", size = 524283, upload-time = "2025-11-16T10:07:34.063Z" }, ] [[package]] name = "pillow" -version = "11.2.1" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/af/cb/bb5c01fcd2a69335b86c22142b2bccfc3464087efb7fd382eee5ffc7fdf7/pillow-11.2.1.tar.gz", hash = "sha256:a64dd61998416367b7ef979b73d3a85853ba9bec4c2925f74e588879a58716b6", size = 47026707, upload-time = "2025-04-12T17:50:03.289Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/0d/8b/b158ad57ed44d3cc54db8d68ad7c0a58b8fc0e4c7a3f995f9d62d5b464a1/pillow-11.2.1-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:d57a75d53922fc20c165016a20d9c44f73305e67c351bbc60d1adaf662e74047", size = 3198442, upload-time = "2025-04-12T17:47:10.666Z" }, - { url = "https://files.pythonhosted.org/packages/b1/f8/bb5d956142f86c2d6cc36704943fa761f2d2e4c48b7436fd0a85c20f1713/pillow-11.2.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:127bf6ac4a5b58b3d32fc8289656f77f80567d65660bc46f72c0d77e6600cc95", size = 3030553, upload-time = "2025-04-12T17:47:13.153Z" }, - { url = "https://files.pythonhosted.org/packages/22/7f/0e413bb3e2aa797b9ca2c5c38cb2e2e45d88654e5b12da91ad446964cfae/pillow-11.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b4ba4be812c7a40280629e55ae0b14a0aafa150dd6451297562e1764808bbe61", size = 4405503, upload-time = "2025-04-12T17:47:15.36Z" }, - { url = "https://files.pythonhosted.org/packages/f3/b4/cc647f4d13f3eb837d3065824aa58b9bcf10821f029dc79955ee43f793bd/pillow-11.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c8bd62331e5032bc396a93609982a9ab6b411c05078a52f5fe3cc59234a3abd1", size = 4490648, upload-time = "2025-04-12T17:47:17.37Z" }, - { url = "https://files.pythonhosted.org/packages/c2/6f/240b772a3b35cdd7384166461567aa6713799b4e78d180c555bd284844ea/pillow-11.2.1-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:562d11134c97a62fe3af29581f083033179f7ff435f78392565a1ad2d1c2c45c", size = 4508937, upload-time = "2025-04-12T17:47:19.066Z" }, - { url = "https://files.pythonhosted.org/packages/f3/5e/7ca9c815ade5fdca18853db86d812f2f188212792780208bdb37a0a6aef4/pillow-11.2.1-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:c97209e85b5be259994eb5b69ff50c5d20cca0f458ef9abd835e262d9d88b39d", size = 4599802, upload-time = "2025-04-12T17:47:21.404Z" }, - { url = "https://files.pythonhosted.org/packages/02/81/c3d9d38ce0c4878a77245d4cf2c46d45a4ad0f93000227910a46caff52f3/pillow-11.2.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:0c3e6d0f59171dfa2e25d7116217543310908dfa2770aa64b8f87605f8cacc97", size = 4576717, upload-time = "2025-04-12T17:47:23.571Z" }, - { url = "https://files.pythonhosted.org/packages/42/49/52b719b89ac7da3185b8d29c94d0e6aec8140059e3d8adcaa46da3751180/pillow-11.2.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cc1c3bc53befb6096b84165956e886b1729634a799e9d6329a0c512ab651e579", size = 4654874, upload-time = "2025-04-12T17:47:25.783Z" }, - { url = "https://files.pythonhosted.org/packages/5b/0b/ede75063ba6023798267023dc0d0401f13695d228194d2242d5a7ba2f964/pillow-11.2.1-cp310-cp310-win32.whl", hash = "sha256:312c77b7f07ab2139924d2639860e084ec2a13e72af54d4f08ac843a5fc9c79d", size = 2331717, upload-time = "2025-04-12T17:47:28.922Z" }, - { url = "https://files.pythonhosted.org/packages/ed/3c/9831da3edea527c2ed9a09f31a2c04e77cd705847f13b69ca60269eec370/pillow-11.2.1-cp310-cp310-win_amd64.whl", hash = "sha256:9bc7ae48b8057a611e5fe9f853baa88093b9a76303937449397899385da06fad", size = 2676204, upload-time = "2025-04-12T17:47:31.283Z" }, - { url = "https://files.pythonhosted.org/packages/01/97/1f66ff8a1503d8cbfc5bae4dc99d54c6ec1e22ad2b946241365320caabc2/pillow-11.2.1-cp310-cp310-win_arm64.whl", hash = "sha256:2728567e249cdd939f6cc3d1f049595c66e4187f3c34078cbc0a7d21c47482d2", size = 2414767, upload-time = "2025-04-12T17:47:34.655Z" }, - { url = "https://files.pythonhosted.org/packages/68/08/3fbf4b98924c73037a8e8b4c2c774784805e0fb4ebca6c5bb60795c40125/pillow-11.2.1-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:35ca289f712ccfc699508c4658a1d14652e8033e9b69839edf83cbdd0ba39e70", size = 3198450, upload-time = "2025-04-12T17:47:37.135Z" }, - { url = "https://files.pythonhosted.org/packages/84/92/6505b1af3d2849d5e714fc75ba9e69b7255c05ee42383a35a4d58f576b16/pillow-11.2.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:e0409af9f829f87a2dfb7e259f78f317a5351f2045158be321fd135973fff7bf", size = 3030550, upload-time = "2025-04-12T17:47:39.345Z" }, - { url = "https://files.pythonhosted.org/packages/3c/8c/ac2f99d2a70ff966bc7eb13dacacfaab57c0549b2ffb351b6537c7840b12/pillow-11.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d4e5c5edee874dce4f653dbe59db7c73a600119fbea8d31f53423586ee2aafd7", size = 4415018, upload-time = "2025-04-12T17:47:41.128Z" }, - { url = "https://files.pythonhosted.org/packages/1f/e3/0a58b5d838687f40891fff9cbaf8669f90c96b64dc8f91f87894413856c6/pillow-11.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b93a07e76d13bff9444f1a029e0af2964e654bfc2e2c2d46bfd080df5ad5f3d8", size = 4498006, upload-time = "2025-04-12T17:47:42.912Z" }, - { url = "https://files.pythonhosted.org/packages/21/f5/6ba14718135f08fbfa33308efe027dd02b781d3f1d5c471444a395933aac/pillow-11.2.1-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:e6def7eed9e7fa90fde255afaf08060dc4b343bbe524a8f69bdd2a2f0018f600", size = 4517773, upload-time = "2025-04-12T17:47:44.611Z" }, - { url = "https://files.pythonhosted.org/packages/20/f2/805ad600fc59ebe4f1ba6129cd3a75fb0da126975c8579b8f57abeb61e80/pillow-11.2.1-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:8f4f3724c068be008c08257207210c138d5f3731af6c155a81c2b09a9eb3a788", size = 4607069, upload-time = "2025-04-12T17:47:46.46Z" }, - { url = "https://files.pythonhosted.org/packages/71/6b/4ef8a288b4bb2e0180cba13ca0a519fa27aa982875882392b65131401099/pillow-11.2.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:a0a6709b47019dff32e678bc12c63008311b82b9327613f534e496dacaefb71e", size = 4583460, upload-time = "2025-04-12T17:47:49.255Z" }, - { url = "https://files.pythonhosted.org/packages/62/ae/f29c705a09cbc9e2a456590816e5c234382ae5d32584f451c3eb41a62062/pillow-11.2.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:f6b0c664ccb879109ee3ca702a9272d877f4fcd21e5eb63c26422fd6e415365e", size = 4661304, upload-time = "2025-04-12T17:47:51.067Z" }, - { url = "https://files.pythonhosted.org/packages/6e/1a/c8217b6f2f73794a5e219fbad087701f412337ae6dbb956db37d69a9bc43/pillow-11.2.1-cp311-cp311-win32.whl", hash = "sha256:cc5d875d56e49f112b6def6813c4e3d3036d269c008bf8aef72cd08d20ca6df6", size = 2331809, upload-time = "2025-04-12T17:47:54.425Z" }, - { url = "https://files.pythonhosted.org/packages/e2/72/25a8f40170dc262e86e90f37cb72cb3de5e307f75bf4b02535a61afcd519/pillow-11.2.1-cp311-cp311-win_amd64.whl", hash = "sha256:0f5c7eda47bf8e3c8a283762cab94e496ba977a420868cb819159980b6709193", size = 2676338, upload-time = "2025-04-12T17:47:56.535Z" }, - { url = "https://files.pythonhosted.org/packages/06/9e/76825e39efee61efea258b479391ca77d64dbd9e5804e4ad0fa453b4ba55/pillow-11.2.1-cp311-cp311-win_arm64.whl", hash = "sha256:4d375eb838755f2528ac8cbc926c3e31cc49ca4ad0cf79cff48b20e30634a4a7", size = 2414918, upload-time = "2025-04-12T17:47:58.217Z" }, - { url = "https://files.pythonhosted.org/packages/c7/40/052610b15a1b8961f52537cc8326ca6a881408bc2bdad0d852edeb6ed33b/pillow-11.2.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:78afba22027b4accef10dbd5eed84425930ba41b3ea0a86fa8d20baaf19d807f", size = 3190185, upload-time = "2025-04-12T17:48:00.417Z" }, - { url = "https://files.pythonhosted.org/packages/e5/7e/b86dbd35a5f938632093dc40d1682874c33dcfe832558fc80ca56bfcb774/pillow-11.2.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:78092232a4ab376a35d68c4e6d5e00dfd73454bd12b230420025fbe178ee3b0b", size = 3030306, upload-time = "2025-04-12T17:48:02.391Z" }, - { url = "https://files.pythonhosted.org/packages/a4/5c/467a161f9ed53e5eab51a42923c33051bf8d1a2af4626ac04f5166e58e0c/pillow-11.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:25a5f306095c6780c52e6bbb6109624b95c5b18e40aab1c3041da3e9e0cd3e2d", size = 4416121, upload-time = "2025-04-12T17:48:04.554Z" }, - { url = "https://files.pythonhosted.org/packages/62/73/972b7742e38ae0e2ac76ab137ca6005dcf877480da0d9d61d93b613065b4/pillow-11.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0c7b29dbd4281923a2bfe562acb734cee96bbb129e96e6972d315ed9f232bef4", size = 4501707, upload-time = "2025-04-12T17:48:06.831Z" }, - { url = "https://files.pythonhosted.org/packages/e4/3a/427e4cb0b9e177efbc1a84798ed20498c4f233abde003c06d2650a6d60cb/pillow-11.2.1-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:3e645b020f3209a0181a418bffe7b4a93171eef6c4ef6cc20980b30bebf17b7d", size = 4522921, upload-time = "2025-04-12T17:48:09.229Z" }, - { url = "https://files.pythonhosted.org/packages/fe/7c/d8b1330458e4d2f3f45d9508796d7caf0c0d3764c00c823d10f6f1a3b76d/pillow-11.2.1-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:b2dbea1012ccb784a65349f57bbc93730b96e85b42e9bf7b01ef40443db720b4", size = 4612523, upload-time = "2025-04-12T17:48:11.631Z" }, - { url = "https://files.pythonhosted.org/packages/b3/2f/65738384e0b1acf451de5a573d8153fe84103772d139e1e0bdf1596be2ea/pillow-11.2.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:da3104c57bbd72948d75f6a9389e6727d2ab6333c3617f0a89d72d4940aa0443", size = 4587836, upload-time = "2025-04-12T17:48:13.592Z" }, - { url = "https://files.pythonhosted.org/packages/6a/c5/e795c9f2ddf3debb2dedd0df889f2fe4b053308bb59a3cc02a0cd144d641/pillow-11.2.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:598174aef4589af795f66f9caab87ba4ff860ce08cd5bb447c6fc553ffee603c", size = 4669390, upload-time = "2025-04-12T17:48:15.938Z" }, - { url = "https://files.pythonhosted.org/packages/96/ae/ca0099a3995976a9fce2f423166f7bff9b12244afdc7520f6ed38911539a/pillow-11.2.1-cp312-cp312-win32.whl", hash = "sha256:1d535df14716e7f8776b9e7fee118576d65572b4aad3ed639be9e4fa88a1cad3", size = 2332309, upload-time = "2025-04-12T17:48:17.885Z" }, - { url = "https://files.pythonhosted.org/packages/7c/18/24bff2ad716257fc03da964c5e8f05d9790a779a8895d6566e493ccf0189/pillow-11.2.1-cp312-cp312-win_amd64.whl", hash = "sha256:14e33b28bf17c7a38eede290f77db7c664e4eb01f7869e37fa98a5aa95978941", size = 2676768, upload-time = "2025-04-12T17:48:19.655Z" }, - { url = "https://files.pythonhosted.org/packages/da/bb/e8d656c9543276517ee40184aaa39dcb41e683bca121022f9323ae11b39d/pillow-11.2.1-cp312-cp312-win_arm64.whl", hash = "sha256:21e1470ac9e5739ff880c211fc3af01e3ae505859392bf65458c224d0bf283eb", size = 2415087, upload-time = "2025-04-12T17:48:21.991Z" }, - { url = "https://files.pythonhosted.org/packages/36/9c/447528ee3776e7ab8897fe33697a7ff3f0475bb490c5ac1456a03dc57956/pillow-11.2.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:fdec757fea0b793056419bca3e9932eb2b0ceec90ef4813ea4c1e072c389eb28", size = 3190098, upload-time = "2025-04-12T17:48:23.915Z" }, - { url = "https://files.pythonhosted.org/packages/b5/09/29d5cd052f7566a63e5b506fac9c60526e9ecc553825551333e1e18a4858/pillow-11.2.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:b0e130705d568e2f43a17bcbe74d90958e8a16263868a12c3e0d9c8162690830", size = 3030166, upload-time = "2025-04-12T17:48:25.738Z" }, - { url = "https://files.pythonhosted.org/packages/71/5d/446ee132ad35e7600652133f9c2840b4799bbd8e4adba881284860da0a36/pillow-11.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7bdb5e09068332578214cadd9c05e3d64d99e0e87591be22a324bdbc18925be0", size = 4408674, upload-time = "2025-04-12T17:48:27.908Z" }, - { url = "https://files.pythonhosted.org/packages/69/5f/cbe509c0ddf91cc3a03bbacf40e5c2339c4912d16458fcb797bb47bcb269/pillow-11.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d189ba1bebfbc0c0e529159631ec72bb9e9bc041f01ec6d3233d6d82eb823bc1", size = 4496005, upload-time = "2025-04-12T17:48:29.888Z" }, - { url = "https://files.pythonhosted.org/packages/f9/b3/dd4338d8fb8a5f312021f2977fb8198a1184893f9b00b02b75d565c33b51/pillow-11.2.1-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:191955c55d8a712fab8934a42bfefbf99dd0b5875078240943f913bb66d46d9f", size = 4518707, upload-time = "2025-04-12T17:48:31.874Z" }, - { url = "https://files.pythonhosted.org/packages/13/eb/2552ecebc0b887f539111c2cd241f538b8ff5891b8903dfe672e997529be/pillow-11.2.1-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:ad275964d52e2243430472fc5d2c2334b4fc3ff9c16cb0a19254e25efa03a155", size = 4610008, upload-time = "2025-04-12T17:48:34.422Z" }, - { url = "https://files.pythonhosted.org/packages/72/d1/924ce51bea494cb6e7959522d69d7b1c7e74f6821d84c63c3dc430cbbf3b/pillow-11.2.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:750f96efe0597382660d8b53e90dd1dd44568a8edb51cb7f9d5d918b80d4de14", size = 4585420, upload-time = "2025-04-12T17:48:37.641Z" }, - { url = "https://files.pythonhosted.org/packages/43/ab/8f81312d255d713b99ca37479a4cb4b0f48195e530cdc1611990eb8fd04b/pillow-11.2.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:fe15238d3798788d00716637b3d4e7bb6bde18b26e5d08335a96e88564a36b6b", size = 4667655, upload-time = "2025-04-12T17:48:39.652Z" }, - { url = "https://files.pythonhosted.org/packages/94/86/8f2e9d2dc3d308dfd137a07fe1cc478df0a23d42a6c4093b087e738e4827/pillow-11.2.1-cp313-cp313-win32.whl", hash = "sha256:3fe735ced9a607fee4f481423a9c36701a39719252a9bb251679635f99d0f7d2", size = 2332329, upload-time = "2025-04-12T17:48:41.765Z" }, - { url = "https://files.pythonhosted.org/packages/6d/ec/1179083b8d6067a613e4d595359b5fdea65d0a3b7ad623fee906e1b3c4d2/pillow-11.2.1-cp313-cp313-win_amd64.whl", hash = "sha256:74ee3d7ecb3f3c05459ba95eed5efa28d6092d751ce9bf20e3e253a4e497e691", size = 2676388, upload-time = "2025-04-12T17:48:43.625Z" }, - { url = "https://files.pythonhosted.org/packages/23/f1/2fc1e1e294de897df39fa8622d829b8828ddad938b0eaea256d65b84dd72/pillow-11.2.1-cp313-cp313-win_arm64.whl", hash = "sha256:5119225c622403afb4b44bad4c1ca6c1f98eed79db8d3bc6e4e160fc6339d66c", size = 2414950, upload-time = "2025-04-12T17:48:45.475Z" }, - { url = "https://files.pythonhosted.org/packages/c4/3e/c328c48b3f0ead7bab765a84b4977acb29f101d10e4ef57a5e3400447c03/pillow-11.2.1-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:8ce2e8411c7aaef53e6bb29fe98f28cd4fbd9a1d9be2eeea434331aac0536b22", size = 3192759, upload-time = "2025-04-12T17:48:47.866Z" }, - { url = "https://files.pythonhosted.org/packages/18/0e/1c68532d833fc8b9f404d3a642991441d9058eccd5606eab31617f29b6d4/pillow-11.2.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:9ee66787e095127116d91dea2143db65c7bb1e232f617aa5957c0d9d2a3f23a7", size = 3033284, upload-time = "2025-04-12T17:48:50.189Z" }, - { url = "https://files.pythonhosted.org/packages/b7/cb/6faf3fb1e7705fd2db74e070f3bf6f88693601b0ed8e81049a8266de4754/pillow-11.2.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9622e3b6c1d8b551b6e6f21873bdcc55762b4b2126633014cea1803368a9aa16", size = 4445826, upload-time = "2025-04-12T17:48:52.346Z" }, - { url = "https://files.pythonhosted.org/packages/07/94/8be03d50b70ca47fb434a358919d6a8d6580f282bbb7af7e4aa40103461d/pillow-11.2.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:63b5dff3a68f371ea06025a1a6966c9a1e1ee452fc8020c2cd0ea41b83e9037b", size = 4527329, upload-time = "2025-04-12T17:48:54.403Z" }, - { url = "https://files.pythonhosted.org/packages/fd/a4/bfe78777076dc405e3bd2080bc32da5ab3945b5a25dc5d8acaa9de64a162/pillow-11.2.1-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:31df6e2d3d8fc99f993fd253e97fae451a8db2e7207acf97859732273e108406", size = 4549049, upload-time = "2025-04-12T17:48:56.383Z" }, - { url = "https://files.pythonhosted.org/packages/65/4d/eaf9068dc687c24979e977ce5677e253624bd8b616b286f543f0c1b91662/pillow-11.2.1-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:062b7a42d672c45a70fa1f8b43d1d38ff76b63421cbbe7f88146b39e8a558d91", size = 4635408, upload-time = "2025-04-12T17:48:58.782Z" }, - { url = "https://files.pythonhosted.org/packages/1d/26/0fd443365d9c63bc79feb219f97d935cd4b93af28353cba78d8e77b61719/pillow-11.2.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:4eb92eca2711ef8be42fd3f67533765d9fd043b8c80db204f16c8ea62ee1a751", size = 4614863, upload-time = "2025-04-12T17:49:00.709Z" }, - { url = "https://files.pythonhosted.org/packages/49/65/dca4d2506be482c2c6641cacdba5c602bc76d8ceb618fd37de855653a419/pillow-11.2.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:f91ebf30830a48c825590aede79376cb40f110b387c17ee9bd59932c961044f9", size = 4692938, upload-time = "2025-04-12T17:49:02.946Z" }, - { url = "https://files.pythonhosted.org/packages/b3/92/1ca0c3f09233bd7decf8f7105a1c4e3162fb9142128c74adad0fb361b7eb/pillow-11.2.1-cp313-cp313t-win32.whl", hash = "sha256:e0b55f27f584ed623221cfe995c912c61606be8513bfa0e07d2c674b4516d9dd", size = 2335774, upload-time = "2025-04-12T17:49:04.889Z" }, - { url = "https://files.pythonhosted.org/packages/a5/ac/77525347cb43b83ae905ffe257bbe2cc6fd23acb9796639a1f56aa59d191/pillow-11.2.1-cp313-cp313t-win_amd64.whl", hash = "sha256:36d6b82164c39ce5482f649b437382c0fb2395eabc1e2b1702a6deb8ad647d6e", size = 2681895, upload-time = "2025-04-12T17:49:06.635Z" }, - { url = "https://files.pythonhosted.org/packages/67/32/32dc030cfa91ca0fc52baebbba2e009bb001122a1daa8b6a79ad830b38d3/pillow-11.2.1-cp313-cp313t-win_arm64.whl", hash = "sha256:225c832a13326e34f212d2072982bb1adb210e0cc0b153e688743018c94a2681", size = 2417234, upload-time = "2025-04-12T17:49:08.399Z" }, - { url = "https://files.pythonhosted.org/packages/33/49/c8c21e4255b4f4a2c0c68ac18125d7f5460b109acc6dfdef1a24f9b960ef/pillow-11.2.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:9b7b0d4fd2635f54ad82785d56bc0d94f147096493a79985d0ab57aedd563156", size = 3181727, upload-time = "2025-04-12T17:49:31.898Z" }, - { url = "https://files.pythonhosted.org/packages/6d/f1/f7255c0838f8c1ef6d55b625cfb286835c17e8136ce4351c5577d02c443b/pillow-11.2.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:aa442755e31c64037aa7c1cb186e0b369f8416c567381852c63444dd666fb772", size = 2999833, upload-time = "2025-04-12T17:49:34.2Z" }, - { url = "https://files.pythonhosted.org/packages/e2/57/9968114457bd131063da98d87790d080366218f64fa2943b65ac6739abb3/pillow-11.2.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f0d3348c95b766f54b76116d53d4cb171b52992a1027e7ca50c81b43b9d9e363", size = 3437472, upload-time = "2025-04-12T17:49:36.294Z" }, - { url = "https://files.pythonhosted.org/packages/b2/1b/e35d8a158e21372ecc48aac9c453518cfe23907bb82f950d6e1c72811eb0/pillow-11.2.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:85d27ea4c889342f7e35f6d56e7e1cb345632ad592e8c51b693d7b7556043ce0", size = 3459976, upload-time = "2025-04-12T17:49:38.988Z" }, - { url = "https://files.pythonhosted.org/packages/26/da/2c11d03b765efff0ccc473f1c4186dc2770110464f2177efaed9cf6fae01/pillow-11.2.1-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:bf2c33d6791c598142f00c9c4c7d47f6476731c31081331664eb26d6ab583e01", size = 3527133, upload-time = "2025-04-12T17:49:40.985Z" }, - { url = "https://files.pythonhosted.org/packages/79/1a/4e85bd7cadf78412c2a3069249a09c32ef3323650fd3005c97cca7aa21df/pillow-11.2.1-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:e616e7154c37669fc1dfc14584f11e284e05d1c650e1c0f972f281c4ccc53193", size = 3571555, upload-time = "2025-04-12T17:49:42.964Z" }, - { url = "https://files.pythonhosted.org/packages/69/03/239939915216de1e95e0ce2334bf17a7870ae185eb390fab6d706aadbfc0/pillow-11.2.1-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:39ad2e0f424394e3aebc40168845fee52df1394a4673a6ee512d840d14ab3013", size = 2674713, upload-time = "2025-04-12T17:49:44.944Z" }, - { url = "https://files.pythonhosted.org/packages/a4/ad/2613c04633c7257d9481ab21d6b5364b59fc5d75faafd7cb8693523945a3/pillow-11.2.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:80f1df8dbe9572b4b7abdfa17eb5d78dd620b1d55d9e25f834efdbee872d3aed", size = 3181734, upload-time = "2025-04-12T17:49:46.789Z" }, - { url = "https://files.pythonhosted.org/packages/a4/fd/dcdda4471ed667de57bb5405bb42d751e6cfdd4011a12c248b455c778e03/pillow-11.2.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:ea926cfbc3957090becbcbbb65ad177161a2ff2ad578b5a6ec9bb1e1cd78753c", size = 2999841, upload-time = "2025-04-12T17:49:48.812Z" }, - { url = "https://files.pythonhosted.org/packages/ac/89/8a2536e95e77432833f0db6fd72a8d310c8e4272a04461fb833eb021bf94/pillow-11.2.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:738db0e0941ca0376804d4de6a782c005245264edaa253ffce24e5a15cbdc7bd", size = 3437470, upload-time = "2025-04-12T17:49:50.831Z" }, - { url = "https://files.pythonhosted.org/packages/9d/8f/abd47b73c60712f88e9eda32baced7bfc3e9bd6a7619bb64b93acff28c3e/pillow-11.2.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9db98ab6565c69082ec9b0d4e40dd9f6181dab0dd236d26f7a50b8b9bfbd5076", size = 3460013, upload-time = "2025-04-12T17:49:53.278Z" }, - { url = "https://files.pythonhosted.org/packages/f6/20/5c0a0aa83b213b7a07ec01e71a3d6ea2cf4ad1d2c686cc0168173b6089e7/pillow-11.2.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:036e53f4170e270ddb8797d4c590e6dd14d28e15c7da375c18978045f7e6c37b", size = 3527165, upload-time = "2025-04-12T17:49:55.164Z" }, - { url = "https://files.pythonhosted.org/packages/58/0e/2abab98a72202d91146abc839e10c14f7cf36166f12838ea0c4db3ca6ecb/pillow-11.2.1-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:14f73f7c291279bd65fda51ee87affd7c1e097709f7fdd0188957a16c264601f", size = 3571586, upload-time = "2025-04-12T17:49:57.171Z" }, - { url = "https://files.pythonhosted.org/packages/21/2c/5e05f58658cf49b6667762cca03d6e7d85cededde2caf2ab37b81f80e574/pillow-11.2.1-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:208653868d5c9ecc2b327f9b9ef34e0e42a4cdd172c2988fd81d62d2bc9bc044", size = 2674751, upload-time = "2025-04-12T17:49:59.628Z" }, +version = "12.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/5a/b0/cace85a1b0c9775a9f8f5d5423c8261c858760e2466c79b2dd184638b056/pillow-12.0.0.tar.gz", hash = "sha256:87d4f8125c9988bfbed67af47dd7a953e2fc7b0cc1e7800ec6d2080d490bb353", size = 47008828, upload-time = "2025-10-15T18:24:14.008Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0e/5a/a2f6773b64edb921a756eb0729068acad9fc5208a53f4a349396e9436721/pillow-12.0.0-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:0fd00cac9c03256c8b2ff58f162ebcd2587ad3e1f2e397eab718c47e24d231cc", size = 5289798, upload-time = "2025-10-15T18:21:47.763Z" }, + { url = "https://files.pythonhosted.org/packages/2e/05/069b1f8a2e4b5a37493da6c5868531c3f77b85e716ad7a590ef87d58730d/pillow-12.0.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:a3475b96f5908b3b16c47533daaa87380c491357d197564e0ba34ae75c0f3257", size = 4650589, upload-time = "2025-10-15T18:21:49.515Z" }, + { url = "https://files.pythonhosted.org/packages/61/e3/2c820d6e9a36432503ead175ae294f96861b07600a7156154a086ba7111a/pillow-12.0.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:110486b79f2d112cf6add83b28b627e369219388f64ef2f960fef9ebaf54c642", size = 6230472, upload-time = "2025-10-15T18:21:51.052Z" }, + { url = "https://files.pythonhosted.org/packages/4f/89/63427f51c64209c5e23d4d52071c8d0f21024d3a8a487737caaf614a5795/pillow-12.0.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:5269cc1caeedb67e6f7269a42014f381f45e2e7cd42d834ede3c703a1d915fe3", size = 8033887, upload-time = "2025-10-15T18:21:52.604Z" }, + { url = "https://files.pythonhosted.org/packages/f6/1b/c9711318d4901093c15840f268ad649459cd81984c9ec9887756cca049a5/pillow-12.0.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:aa5129de4e174daccbc59d0a3b6d20eaf24417d59851c07ebb37aeb02947987c", size = 6343964, upload-time = "2025-10-15T18:21:54.619Z" }, + { url = "https://files.pythonhosted.org/packages/41/1e/db9470f2d030b4995083044cd8738cdd1bf773106819f6d8ba12597d5352/pillow-12.0.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:bee2a6db3a7242ea309aa7ee8e2780726fed67ff4e5b40169f2c940e7eb09227", size = 7034756, upload-time = "2025-10-15T18:21:56.151Z" }, + { url = "https://files.pythonhosted.org/packages/cc/b0/6177a8bdd5ee4ed87cba2de5a3cc1db55ffbbec6176784ce5bb75aa96798/pillow-12.0.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:90387104ee8400a7b4598253b4c406f8958f59fcf983a6cea2b50d59f7d63d0b", size = 6458075, upload-time = "2025-10-15T18:21:57.759Z" }, + { url = "https://files.pythonhosted.org/packages/bc/5e/61537aa6fa977922c6a03253a0e727e6e4a72381a80d63ad8eec350684f2/pillow-12.0.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:bc91a56697869546d1b8f0a3ff35224557ae7f881050e99f615e0119bf934b4e", size = 7125955, upload-time = "2025-10-15T18:21:59.372Z" }, + { url = "https://files.pythonhosted.org/packages/1f/3d/d5033539344ee3cbd9a4d69e12e63ca3a44a739eb2d4c8da350a3d38edd7/pillow-12.0.0-cp311-cp311-win32.whl", hash = "sha256:27f95b12453d165099c84f8a8bfdfd46b9e4bda9e0e4b65f0635430027f55739", size = 6298440, upload-time = "2025-10-15T18:22:00.982Z" }, + { url = "https://files.pythonhosted.org/packages/4d/42/aaca386de5cc8bd8a0254516957c1f265e3521c91515b16e286c662854c4/pillow-12.0.0-cp311-cp311-win_amd64.whl", hash = "sha256:b583dc9070312190192631373c6c8ed277254aa6e6084b74bdd0a6d3b221608e", size = 6999256, upload-time = "2025-10-15T18:22:02.617Z" }, + { url = "https://files.pythonhosted.org/packages/ba/f1/9197c9c2d5708b785f631a6dfbfa8eb3fb9672837cb92ae9af812c13b4ed/pillow-12.0.0-cp311-cp311-win_arm64.whl", hash = "sha256:759de84a33be3b178a64c8ba28ad5c135900359e85fb662bc6e403ad4407791d", size = 2436025, upload-time = "2025-10-15T18:22:04.598Z" }, + { url = "https://files.pythonhosted.org/packages/2c/90/4fcce2c22caf044e660a198d740e7fbc14395619e3cb1abad12192c0826c/pillow-12.0.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:53561a4ddc36facb432fae7a9d8afbfaf94795414f5cdc5fc52f28c1dca90371", size = 5249377, upload-time = "2025-10-15T18:22:05.993Z" }, + { url = "https://files.pythonhosted.org/packages/fd/e0/ed960067543d080691d47d6938ebccbf3976a931c9567ab2fbfab983a5dd/pillow-12.0.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:71db6b4c1653045dacc1585c1b0d184004f0d7e694c7b34ac165ca70c0838082", size = 4650343, upload-time = "2025-10-15T18:22:07.718Z" }, + { url = "https://files.pythonhosted.org/packages/e7/a1/f81fdeddcb99c044bf7d6faa47e12850f13cee0849537a7d27eeab5534d4/pillow-12.0.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:2fa5f0b6716fc88f11380b88b31fe591a06c6315e955c096c35715788b339e3f", size = 6232981, upload-time = "2025-10-15T18:22:09.287Z" }, + { url = "https://files.pythonhosted.org/packages/88/e1/9098d3ce341a8750b55b0e00c03f1630d6178f38ac191c81c97a3b047b44/pillow-12.0.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:82240051c6ca513c616f7f9da06e871f61bfd7805f566275841af15015b8f98d", size = 8041399, upload-time = "2025-10-15T18:22:10.872Z" }, + { url = "https://files.pythonhosted.org/packages/a7/62/a22e8d3b602ae8cc01446d0c57a54e982737f44b6f2e1e019a925143771d/pillow-12.0.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:55f818bd74fe2f11d4d7cbc65880a843c4075e0ac7226bc1a23261dbea531953", size = 6347740, upload-time = "2025-10-15T18:22:12.769Z" }, + { url = "https://files.pythonhosted.org/packages/4f/87/424511bdcd02c8d7acf9f65caa09f291a519b16bd83c3fb3374b3d4ae951/pillow-12.0.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b87843e225e74576437fd5b6a4c2205d422754f84a06942cfaf1dc32243e45a8", size = 7040201, upload-time = "2025-10-15T18:22:14.813Z" }, + { url = "https://files.pythonhosted.org/packages/dc/4d/435c8ac688c54d11755aedfdd9f29c9eeddf68d150fe42d1d3dbd2365149/pillow-12.0.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:c607c90ba67533e1b2355b821fef6764d1dd2cbe26b8c1005ae84f7aea25ff79", size = 6462334, upload-time = "2025-10-15T18:22:16.375Z" }, + { url = "https://files.pythonhosted.org/packages/2b/f2/ad34167a8059a59b8ad10bc5c72d4d9b35acc6b7c0877af8ac885b5f2044/pillow-12.0.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:21f241bdd5080a15bc86d3466a9f6074a9c2c2b314100dd896ac81ee6db2f1ba", size = 7134162, upload-time = "2025-10-15T18:22:17.996Z" }, + { url = "https://files.pythonhosted.org/packages/0c/b1/a7391df6adacf0a5c2cf6ac1cf1fcc1369e7d439d28f637a847f8803beb3/pillow-12.0.0-cp312-cp312-win32.whl", hash = "sha256:dd333073e0cacdc3089525c7df7d39b211bcdf31fc2824e49d01c6b6187b07d0", size = 6298769, upload-time = "2025-10-15T18:22:19.923Z" }, + { url = "https://files.pythonhosted.org/packages/a2/0b/d87733741526541c909bbf159e338dcace4f982daac6e5a8d6be225ca32d/pillow-12.0.0-cp312-cp312-win_amd64.whl", hash = "sha256:9fe611163f6303d1619bbcb653540a4d60f9e55e622d60a3108be0d5b441017a", size = 7001107, upload-time = "2025-10-15T18:22:21.644Z" }, + { url = "https://files.pythonhosted.org/packages/bc/96/aaa61ce33cc98421fb6088af2a03be4157b1e7e0e87087c888e2370a7f45/pillow-12.0.0-cp312-cp312-win_arm64.whl", hash = "sha256:7dfb439562f234f7d57b1ac6bc8fe7f838a4bd49c79230e0f6a1da93e82f1fad", size = 2436012, upload-time = "2025-10-15T18:22:23.621Z" }, + { url = "https://files.pythonhosted.org/packages/62/f2/de993bb2d21b33a98d031ecf6a978e4b61da207bef02f7b43093774c480d/pillow-12.0.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl", hash = "sha256:0869154a2d0546545cde61d1789a6524319fc1897d9ee31218eae7a60ccc5643", size = 4045493, upload-time = "2025-10-15T18:22:25.758Z" }, + { url = "https://files.pythonhosted.org/packages/0e/b6/bc8d0c4c9f6f111a783d045310945deb769b806d7574764234ffd50bc5ea/pillow-12.0.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl", hash = "sha256:a7921c5a6d31b3d756ec980f2f47c0cfdbce0fc48c22a39347a895f41f4a6ea4", size = 4120461, upload-time = "2025-10-15T18:22:27.286Z" }, + { url = "https://files.pythonhosted.org/packages/5d/57/d60d343709366a353dc56adb4ee1e7d8a2cc34e3fbc22905f4167cfec119/pillow-12.0.0-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl", hash = "sha256:1ee80a59f6ce048ae13cda1abf7fbd2a34ab9ee7d401c46be3ca685d1999a399", size = 3576912, upload-time = "2025-10-15T18:22:28.751Z" }, + { url = "https://files.pythonhosted.org/packages/a4/a4/a0a31467e3f83b94d37568294b01d22b43ae3c5d85f2811769b9c66389dd/pillow-12.0.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:c50f36a62a22d350c96e49ad02d0da41dbd17ddc2e29750dbdba4323f85eb4a5", size = 5249132, upload-time = "2025-10-15T18:22:30.641Z" }, + { url = "https://files.pythonhosted.org/packages/83/06/48eab21dd561de2914242711434c0c0eb992ed08ff3f6107a5f44527f5e9/pillow-12.0.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:5193fde9a5f23c331ea26d0cf171fbf67e3f247585f50c08b3e205c7aeb4589b", size = 4650099, upload-time = "2025-10-15T18:22:32.73Z" }, + { url = "https://files.pythonhosted.org/packages/fc/bd/69ed99fd46a8dba7c1887156d3572fe4484e3f031405fcc5a92e31c04035/pillow-12.0.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:bde737cff1a975b70652b62d626f7785e0480918dece11e8fef3c0cf057351c3", size = 6230808, upload-time = "2025-10-15T18:22:34.337Z" }, + { url = "https://files.pythonhosted.org/packages/ea/94/8fad659bcdbf86ed70099cb60ae40be6acca434bbc8c4c0d4ef356d7e0de/pillow-12.0.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:a6597ff2b61d121172f5844b53f21467f7082f5fb385a9a29c01414463f93b07", size = 8037804, upload-time = "2025-10-15T18:22:36.402Z" }, + { url = "https://files.pythonhosted.org/packages/20/39/c685d05c06deecfd4e2d1950e9a908aa2ca8bc4e6c3b12d93b9cafbd7837/pillow-12.0.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:0b817e7035ea7f6b942c13aa03bb554fc44fea70838ea21f8eb31c638326584e", size = 6345553, upload-time = "2025-10-15T18:22:38.066Z" }, + { url = "https://files.pythonhosted.org/packages/38/57/755dbd06530a27a5ed74f8cb0a7a44a21722ebf318edbe67ddbd7fb28f88/pillow-12.0.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:f4f1231b7dec408e8670264ce63e9c71409d9583dd21d32c163e25213ee2a344", size = 7037729, upload-time = "2025-10-15T18:22:39.769Z" }, + { url = "https://files.pythonhosted.org/packages/ca/b6/7e94f4c41d238615674d06ed677c14883103dce1c52e4af16f000338cfd7/pillow-12.0.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:6e51b71417049ad6ab14c49608b4a24d8fb3fe605e5dfabfe523b58064dc3d27", size = 6459789, upload-time = "2025-10-15T18:22:41.437Z" }, + { url = "https://files.pythonhosted.org/packages/9c/14/4448bb0b5e0f22dd865290536d20ec8a23b64e2d04280b89139f09a36bb6/pillow-12.0.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:d120c38a42c234dc9a8c5de7ceaaf899cf33561956acb4941653f8bdc657aa79", size = 7130917, upload-time = "2025-10-15T18:22:43.152Z" }, + { url = "https://files.pythonhosted.org/packages/dd/ca/16c6926cc1c015845745d5c16c9358e24282f1e588237a4c36d2b30f182f/pillow-12.0.0-cp313-cp313-win32.whl", hash = "sha256:4cc6b3b2efff105c6a1656cfe59da4fdde2cda9af1c5e0b58529b24525d0a098", size = 6302391, upload-time = "2025-10-15T18:22:44.753Z" }, + { url = "https://files.pythonhosted.org/packages/6d/2a/dd43dcfd6dae9b6a49ee28a8eedb98c7d5ff2de94a5d834565164667b97b/pillow-12.0.0-cp313-cp313-win_amd64.whl", hash = "sha256:4cf7fed4b4580601c4345ceb5d4cbf5a980d030fd5ad07c4d2ec589f95f09905", size = 7007477, upload-time = "2025-10-15T18:22:46.838Z" }, + { url = "https://files.pythonhosted.org/packages/77/f0/72ea067f4b5ae5ead653053212af05ce3705807906ba3f3e8f58ddf617e6/pillow-12.0.0-cp313-cp313-win_arm64.whl", hash = "sha256:9f0b04c6b8584c2c193babcccc908b38ed29524b29dd464bc8801bf10d746a3a", size = 2435918, upload-time = "2025-10-15T18:22:48.399Z" }, + { url = "https://files.pythonhosted.org/packages/f5/5e/9046b423735c21f0487ea6cb5b10f89ea8f8dfbe32576fe052b5ba9d4e5b/pillow-12.0.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:7fa22993bac7b77b78cae22bad1e2a987ddf0d9015c63358032f84a53f23cdc3", size = 5251406, upload-time = "2025-10-15T18:22:49.905Z" }, + { url = "https://files.pythonhosted.org/packages/12/66/982ceebcdb13c97270ef7a56c3969635b4ee7cd45227fa707c94719229c5/pillow-12.0.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:f135c702ac42262573fe9714dfe99c944b4ba307af5eb507abef1667e2cbbced", size = 4653218, upload-time = "2025-10-15T18:22:51.587Z" }, + { url = "https://files.pythonhosted.org/packages/16/b3/81e625524688c31859450119bf12674619429cab3119eec0e30a7a1029cb/pillow-12.0.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:c85de1136429c524e55cfa4e033b4a7940ac5c8ee4d9401cc2d1bf48154bbc7b", size = 6266564, upload-time = "2025-10-15T18:22:53.215Z" }, + { url = "https://files.pythonhosted.org/packages/98/59/dfb38f2a41240d2408096e1a76c671d0a105a4a8471b1871c6902719450c/pillow-12.0.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:38df9b4bfd3db902c9c2bd369bcacaf9d935b2fff73709429d95cc41554f7b3d", size = 8069260, upload-time = "2025-10-15T18:22:54.933Z" }, + { url = "https://files.pythonhosted.org/packages/dc/3d/378dbea5cd1874b94c312425ca77b0f47776c78e0df2df751b820c8c1d6c/pillow-12.0.0-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:7d87ef5795da03d742bf49439f9ca4d027cde49c82c5371ba52464aee266699a", size = 6379248, upload-time = "2025-10-15T18:22:56.605Z" }, + { url = "https://files.pythonhosted.org/packages/84/b0/d525ef47d71590f1621510327acec75ae58c721dc071b17d8d652ca494d8/pillow-12.0.0-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:aff9e4d82d082ff9513bdd6acd4f5bd359f5b2c870907d2b0a9c5e10d40c88fe", size = 7066043, upload-time = "2025-10-15T18:22:58.53Z" }, + { url = "https://files.pythonhosted.org/packages/61/2c/aced60e9cf9d0cde341d54bf7932c9ffc33ddb4a1595798b3a5150c7ec4e/pillow-12.0.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:8d8ca2b210ada074d57fcee40c30446c9562e542fc46aedc19baf758a93532ee", size = 6490915, upload-time = "2025-10-15T18:23:00.582Z" }, + { url = "https://files.pythonhosted.org/packages/ef/26/69dcb9b91f4e59f8f34b2332a4a0a951b44f547c4ed39d3e4dcfcff48f89/pillow-12.0.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:99a7f72fb6249302aa62245680754862a44179b545ded638cf1fef59befb57ef", size = 7157998, upload-time = "2025-10-15T18:23:02.627Z" }, + { url = "https://files.pythonhosted.org/packages/61/2b/726235842220ca95fa441ddf55dd2382b52ab5b8d9c0596fe6b3f23dafe8/pillow-12.0.0-cp313-cp313t-win32.whl", hash = "sha256:4078242472387600b2ce8d93ade8899c12bf33fa89e55ec89fe126e9d6d5d9e9", size = 6306201, upload-time = "2025-10-15T18:23:04.709Z" }, + { url = "https://files.pythonhosted.org/packages/c0/3d/2afaf4e840b2df71344ababf2f8edd75a705ce500e5dc1e7227808312ae1/pillow-12.0.0-cp313-cp313t-win_amd64.whl", hash = "sha256:2c54c1a783d6d60595d3514f0efe9b37c8808746a66920315bfd34a938d7994b", size = 7013165, upload-time = "2025-10-15T18:23:06.46Z" }, + { url = "https://files.pythonhosted.org/packages/6f/75/3fa09aa5cf6ed04bee3fa575798ddf1ce0bace8edb47249c798077a81f7f/pillow-12.0.0-cp313-cp313t-win_arm64.whl", hash = "sha256:26d9f7d2b604cd23aba3e9faf795787456ac25634d82cd060556998e39c6fa47", size = 2437834, upload-time = "2025-10-15T18:23:08.194Z" }, + { url = "https://files.pythonhosted.org/packages/54/2a/9a8c6ba2c2c07b71bec92cf63e03370ca5e5f5c5b119b742bcc0cde3f9c5/pillow-12.0.0-cp314-cp314-ios_13_0_arm64_iphoneos.whl", hash = "sha256:beeae3f27f62308f1ddbcfb0690bf44b10732f2ef43758f169d5e9303165d3f9", size = 4045531, upload-time = "2025-10-15T18:23:10.121Z" }, + { url = "https://files.pythonhosted.org/packages/84/54/836fdbf1bfb3d66a59f0189ff0b9f5f666cee09c6188309300df04ad71fa/pillow-12.0.0-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl", hash = "sha256:d4827615da15cd59784ce39d3388275ec093ae3ee8d7f0c089b76fa87af756c2", size = 4120554, upload-time = "2025-10-15T18:23:12.14Z" }, + { url = "https://files.pythonhosted.org/packages/0d/cd/16aec9f0da4793e98e6b54778a5fbce4f375c6646fe662e80600b8797379/pillow-12.0.0-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl", hash = "sha256:3e42edad50b6909089750e65c91aa09aaf1e0a71310d383f11321b27c224ed8a", size = 3576812, upload-time = "2025-10-15T18:23:13.962Z" }, + { url = "https://files.pythonhosted.org/packages/f6/b7/13957fda356dc46339298b351cae0d327704986337c3c69bb54628c88155/pillow-12.0.0-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:e5d8efac84c9afcb40914ab49ba063d94f5dbdf5066db4482c66a992f47a3a3b", size = 5252689, upload-time = "2025-10-15T18:23:15.562Z" }, + { url = "https://files.pythonhosted.org/packages/fc/f5/eae31a306341d8f331f43edb2e9122c7661b975433de5e447939ae61c5da/pillow-12.0.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:266cd5f2b63ff316d5a1bba46268e603c9caf5606d44f38c2873c380950576ad", size = 4650186, upload-time = "2025-10-15T18:23:17.379Z" }, + { url = "https://files.pythonhosted.org/packages/86/62/2a88339aa40c4c77e79108facbd307d6091e2c0eb5b8d3cf4977cfca2fe6/pillow-12.0.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:58eea5ebe51504057dd95c5b77d21700b77615ab0243d8152793dc00eb4faf01", size = 6230308, upload-time = "2025-10-15T18:23:18.971Z" }, + { url = "https://files.pythonhosted.org/packages/c7/33/5425a8992bcb32d1cb9fa3dd39a89e613d09a22f2c8083b7bf43c455f760/pillow-12.0.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:f13711b1a5ba512d647a0e4ba79280d3a9a045aaf7e0cc6fbe96b91d4cdf6b0c", size = 8039222, upload-time = "2025-10-15T18:23:20.909Z" }, + { url = "https://files.pythonhosted.org/packages/d8/61/3f5d3b35c5728f37953d3eec5b5f3e77111949523bd2dd7f31a851e50690/pillow-12.0.0-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6846bd2d116ff42cba6b646edf5bf61d37e5cbd256425fa089fee4ff5c07a99e", size = 6346657, upload-time = "2025-10-15T18:23:23.077Z" }, + { url = "https://files.pythonhosted.org/packages/3a/be/ee90a3d79271227e0f0a33c453531efd6ed14b2e708596ba5dd9be948da3/pillow-12.0.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:c98fa880d695de164b4135a52fd2e9cd7b7c90a9d8ac5e9e443a24a95ef9248e", size = 7038482, upload-time = "2025-10-15T18:23:25.005Z" }, + { url = "https://files.pythonhosted.org/packages/44/34/a16b6a4d1ad727de390e9bd9f19f5f669e079e5826ec0f329010ddea492f/pillow-12.0.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:fa3ed2a29a9e9d2d488b4da81dcb54720ac3104a20bf0bd273f1e4648aff5af9", size = 6461416, upload-time = "2025-10-15T18:23:27.009Z" }, + { url = "https://files.pythonhosted.org/packages/b6/39/1aa5850d2ade7d7ba9f54e4e4c17077244ff7a2d9e25998c38a29749eb3f/pillow-12.0.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:d034140032870024e6b9892c692fe2968493790dd57208b2c37e3fb35f6df3ab", size = 7131584, upload-time = "2025-10-15T18:23:29.752Z" }, + { url = "https://files.pythonhosted.org/packages/bf/db/4fae862f8fad0167073a7733973bfa955f47e2cac3dc3e3e6257d10fab4a/pillow-12.0.0-cp314-cp314-win32.whl", hash = "sha256:1b1b133e6e16105f524a8dec491e0586d072948ce15c9b914e41cdadd209052b", size = 6400621, upload-time = "2025-10-15T18:23:32.06Z" }, + { url = "https://files.pythonhosted.org/packages/2b/24/b350c31543fb0107ab2599464d7e28e6f856027aadda995022e695313d94/pillow-12.0.0-cp314-cp314-win_amd64.whl", hash = "sha256:8dc232e39d409036af549c86f24aed8273a40ffa459981146829a324e0848b4b", size = 7142916, upload-time = "2025-10-15T18:23:34.71Z" }, + { url = "https://files.pythonhosted.org/packages/0f/9b/0ba5a6fd9351793996ef7487c4fdbde8d3f5f75dbedc093bb598648fddf0/pillow-12.0.0-cp314-cp314-win_arm64.whl", hash = "sha256:d52610d51e265a51518692045e372a4c363056130d922a7351429ac9f27e70b0", size = 2523836, upload-time = "2025-10-15T18:23:36.967Z" }, + { url = "https://files.pythonhosted.org/packages/f5/7a/ceee0840aebc579af529b523d530840338ecf63992395842e54edc805987/pillow-12.0.0-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:1979f4566bb96c1e50a62d9831e2ea2d1211761e5662afc545fa766f996632f6", size = 5255092, upload-time = "2025-10-15T18:23:38.573Z" }, + { url = "https://files.pythonhosted.org/packages/44/76/20776057b4bfd1aef4eeca992ebde0f53a4dce874f3ae693d0ec90a4f79b/pillow-12.0.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:b2e4b27a6e15b04832fe9bf292b94b5ca156016bbc1ea9c2c20098a0320d6cf6", size = 4653158, upload-time = "2025-10-15T18:23:40.238Z" }, + { url = "https://files.pythonhosted.org/packages/82/3f/d9ff92ace07be8836b4e7e87e6a4c7a8318d47c2f1463ffcf121fc57d9cb/pillow-12.0.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:fb3096c30df99fd01c7bf8e544f392103d0795b9f98ba71a8054bcbf56b255f1", size = 6267882, upload-time = "2025-10-15T18:23:42.434Z" }, + { url = "https://files.pythonhosted.org/packages/9f/7a/4f7ff87f00d3ad33ba21af78bfcd2f032107710baf8280e3722ceec28cda/pillow-12.0.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:7438839e9e053ef79f7112c881cef684013855016f928b168b81ed5835f3e75e", size = 8071001, upload-time = "2025-10-15T18:23:44.29Z" }, + { url = "https://files.pythonhosted.org/packages/75/87/fcea108944a52dad8cca0715ae6247e271eb80459364a98518f1e4f480c1/pillow-12.0.0-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5d5c411a8eaa2299322b647cd932586b1427367fd3184ffbb8f7a219ea2041ca", size = 6380146, upload-time = "2025-10-15T18:23:46.065Z" }, + { url = "https://files.pythonhosted.org/packages/91/52/0d31b5e571ef5fd111d2978b84603fce26aba1b6092f28e941cb46570745/pillow-12.0.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:d7e091d464ac59d2c7ad8e7e08105eaf9dafbc3883fd7265ffccc2baad6ac925", size = 7067344, upload-time = "2025-10-15T18:23:47.898Z" }, + { url = "https://files.pythonhosted.org/packages/7b/f4/2dd3d721f875f928d48e83bb30a434dee75a2531bca839bb996bb0aa5a91/pillow-12.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:792a2c0be4dcc18af9d4a2dfd8a11a17d5e25274a1062b0ec1c2d79c76f3e7f8", size = 6491864, upload-time = "2025-10-15T18:23:49.607Z" }, + { url = "https://files.pythonhosted.org/packages/30/4b/667dfcf3d61fc309ba5a15b141845cece5915e39b99c1ceab0f34bf1d124/pillow-12.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:afbefa430092f71a9593a99ab6a4e7538bc9eabbf7bf94f91510d3503943edc4", size = 7158911, upload-time = "2025-10-15T18:23:51.351Z" }, + { url = "https://files.pythonhosted.org/packages/a2/2f/16cabcc6426c32218ace36bf0d55955e813f2958afddbf1d391849fee9d1/pillow-12.0.0-cp314-cp314t-win32.whl", hash = "sha256:3830c769decf88f1289680a59d4f4c46c72573446352e2befec9a8512104fa52", size = 6408045, upload-time = "2025-10-15T18:23:53.177Z" }, + { url = "https://files.pythonhosted.org/packages/35/73/e29aa0c9c666cf787628d3f0dcf379f4791fba79f4936d02f8b37165bdf8/pillow-12.0.0-cp314-cp314t-win_amd64.whl", hash = "sha256:905b0365b210c73afb0ebe9101a32572152dfd1c144c7e28968a331b9217b94a", size = 7148282, upload-time = "2025-10-15T18:23:55.316Z" }, + { url = "https://files.pythonhosted.org/packages/c1/70/6b41bdcddf541b437bbb9f47f94d2db5d9ddef6c37ccab8c9107743748a4/pillow-12.0.0-cp314-cp314t-win_arm64.whl", hash = "sha256:99353a06902c2e43b43e8ff74ee65a7d90307d82370604746738a1e0661ccca7", size = 2525630, upload-time = "2025-10-15T18:23:57.149Z" }, + { url = "https://files.pythonhosted.org/packages/1d/b3/582327e6c9f86d037b63beebe981425d6811104cb443e8193824ef1a2f27/pillow-12.0.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:b22bd8c974942477156be55a768f7aa37c46904c175be4e158b6a86e3a6b7ca8", size = 5215068, upload-time = "2025-10-15T18:23:59.594Z" }, + { url = "https://files.pythonhosted.org/packages/fd/d6/67748211d119f3b6540baf90f92fae73ae51d5217b171b0e8b5f7e5d558f/pillow-12.0.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:805ebf596939e48dbb2e4922a1d3852cfc25c38160751ce02da93058b48d252a", size = 4614994, upload-time = "2025-10-15T18:24:01.669Z" }, + { url = "https://files.pythonhosted.org/packages/2d/e1/f8281e5d844c41872b273b9f2c34a4bf64ca08905668c8ae730eedc7c9fa/pillow-12.0.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:cae81479f77420d217def5f54b5b9d279804d17e982e0f2fa19b1d1e14ab5197", size = 5246639, upload-time = "2025-10-15T18:24:03.403Z" }, + { url = "https://files.pythonhosted.org/packages/94/5a/0d8ab8ffe8a102ff5df60d0de5af309015163bf710c7bb3e8311dd3b3ad0/pillow-12.0.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:aeaefa96c768fc66818730b952a862235d68825c178f1b3ffd4efd7ad2edcb7c", size = 6986839, upload-time = "2025-10-15T18:24:05.344Z" }, + { url = "https://files.pythonhosted.org/packages/20/2e/3434380e8110b76cd9eb00a363c484b050f949b4bbe84ba770bb8508a02c/pillow-12.0.0-pp311-pypy311_pp73-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:09f2d0abef9e4e2f349305a4f8cc784a8a6c2f58a8c4892eea13b10a943bd26e", size = 5313505, upload-time = "2025-10-15T18:24:07.137Z" }, + { url = "https://files.pythonhosted.org/packages/57/ca/5a9d38900d9d74785141d6580950fe705de68af735ff6e727cb911b64740/pillow-12.0.0-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:bdee52571a343d721fb2eb3b090a82d959ff37fc631e3f70422e0c2e029f3e76", size = 5963654, upload-time = "2025-10-15T18:24:09.579Z" }, + { url = "https://files.pythonhosted.org/packages/95/7e/f896623c3c635a90537ac093c6a618ebe1a90d87206e42309cb5d98a1b9e/pillow-12.0.0-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:b290fd8aa38422444d4b50d579de197557f182ef1068b75f5aa8558638b8d0a5", size = 6997850, upload-time = "2025-10-15T18:24:11.495Z" }, ] [[package]] name = "pint" -version = "0.24.4" +version = "0.25.2" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "flexcache" }, @@ -10973,31 +9319,31 @@ dependencies = [ { name = "platformdirs" }, { name = "typing-extensions" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/20/bb/52b15ddf7b7706ed591134a895dbf6e41c8348171fb635e655e0a4bbb0ea/pint-0.24.4.tar.gz", hash = "sha256:35275439b574837a6cd3020a5a4a73645eb125ce4152a73a2f126bf164b91b80", size = 342225, upload-time = "2024-11-07T16:29:46.061Z" } +sdist = { url = "https://files.pythonhosted.org/packages/5f/74/bc3f671997158aef171194c3c4041e549946f4784b8690baa0626a0a164b/pint-0.25.2.tar.gz", hash = "sha256:85a45d1da8fe9c9f7477fed8aef59ad2b939af3d6611507e1a9cbdacdcd3450a", size = 254467, upload-time = "2025-11-06T22:08:09.184Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/b7/16/bd2f5904557265882108dc2e04f18abc05ab0c2b7082ae9430091daf1d5c/Pint-0.24.4-py3-none-any.whl", hash = "sha256:aa54926c8772159fcf65f82cc0d34de6768c151b32ad1deb0331291c38fe7659", size = 302029, upload-time = "2024-11-07T16:29:43.976Z" }, + { url = "https://files.pythonhosted.org/packages/ab/88/550d41e81e6d43335603a960cd9c75c1d88f9cf01bc9d4ee8e86290aba7d/pint-0.25.2-py3-none-any.whl", hash = "sha256:ca35ab1d8eeeb6f7d9942b3cb5f34ca42b61cdd5fb3eae79531553dcca04dda7", size = 306762, upload-time = "2025-11-06T22:08:07.745Z" }, ] [[package]] name = "platformdirs" -version = "4.3.8" +version = "4.5.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/fe/8b/3c73abc9c759ecd3f1f7ceff6685840859e8070c4d947c93fae71f6a0bf2/platformdirs-4.3.8.tar.gz", hash = "sha256:3d512d96e16bcb959a814c9f348431070822a6496326a4be0911c40b5a74c2bc", size = 21362, upload-time = "2025-05-07T22:47:42.121Z" } +sdist = { url = "https://files.pythonhosted.org/packages/61/33/9611380c2bdb1225fdef633e2a9610622310fed35ab11dac9620972ee088/platformdirs-4.5.0.tar.gz", hash = "sha256:70ddccdd7c99fc5942e9fc25636a8b34d04c24b335100223152c2803e4063312", size = 21632, upload-time = "2025-10-08T17:44:48.791Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/fe/39/979e8e21520d4e47a0bbe349e2713c0aac6f3d853d0e5b34d76206c439aa/platformdirs-4.3.8-py3-none-any.whl", hash = "sha256:ff7059bb7eb1179e2685604f4aaf157cfd9535242bd23742eadc3c13542139b4", size = 18567, upload-time = "2025-05-07T22:47:40.376Z" }, + { url = "https://files.pythonhosted.org/packages/73/cb/ac7874b3e5d58441674fb70742e6c374b28b0c7cb988d37d991cde47166c/platformdirs-4.5.0-py3-none-any.whl", hash = "sha256:e578a81bb873cbb89a41fcc904c7ef523cc18284b7e3b3ccf06aca1403b7ebd3", size = 18651, upload-time = "2025-10-08T17:44:47.223Z" }, ] [[package]] name = "plotly" -version = "6.1.2" +version = "6.5.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "narwhals" }, { name = "packaging" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/ae/77/431447616eda6a432dc3ce541b3f808ecb8803ea3d4ab2573b67f8eb4208/plotly-6.1.2.tar.gz", hash = "sha256:4fdaa228926ba3e3a213f4d1713287e69dcad1a7e66cf2025bd7d7026d5014b4", size = 7662971, upload-time = "2025-05-27T20:21:52.56Z" } +sdist = { url = "https://files.pythonhosted.org/packages/94/05/1199e2a03ce6637960bc1e951ca0f928209a48cfceb57355806a88f214cf/plotly-6.5.0.tar.gz", hash = "sha256:d5d38224883fd38c1409bef7d6a8dc32b74348d39313f3c52ca998b8e447f5c8", size = 7013624, upload-time = "2025-11-17T18:39:24.523Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/bf/6f/759d5da0517547a5d38aabf05d04d9f8adf83391d2c7fc33f904417d3ba2/plotly-6.1.2-py3-none-any.whl", hash = "sha256:f1548a8ed9158d59e03d7fed548c7db5549f3130d9ae19293c8638c202648f6d", size = 16265530, upload-time = "2025-05-27T20:21:46.6Z" }, + { url = "https://files.pythonhosted.org/packages/e7/c3/3031c931098de393393e1f93a38dc9ed6805d86bb801acc3cf2d5bd1e6b7/plotly-6.5.0-py3-none-any.whl", hash = "sha256:5ac851e100367735250206788a2b1325412aa4a4917a4fe3e6f0bc5aa6f3d90a", size = 9893174, upload-time = "2025-11-17T18:39:20.351Z" }, ] [[package]] @@ -11011,7 +9357,7 @@ wheels = [ [[package]] name = "pre-commit" -version = "4.2.0" +version = "4.5.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "cfgv" }, @@ -11020,122 +9366,132 @@ dependencies = [ { name = "pyyaml" }, { name = "virtualenv" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/08/39/679ca9b26c7bb2999ff122d50faa301e49af82ca9c066ec061cfbc0c6784/pre_commit-4.2.0.tar.gz", hash = "sha256:601283b9757afd87d40c4c4a9b2b5de9637a8ea02eaff7adc2d0fb4e04841146", size = 193424, upload-time = "2025-03-18T21:35:20.987Z" } +sdist = { url = "https://files.pythonhosted.org/packages/f4/9b/6a4ffb4ed980519da959e1cf3122fc6cb41211daa58dbae1c73c0e519a37/pre_commit-4.5.0.tar.gz", hash = "sha256:dc5a065e932b19fc1d4c653c6939068fe54325af8e741e74e88db4d28a4dd66b", size = 198428, upload-time = "2025-11-22T21:02:42.304Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/88/74/a88bf1b1efeae488a0c0b7bdf71429c313722d1fc0f377537fbe554e6180/pre_commit-4.2.0-py2.py3-none-any.whl", hash = "sha256:a009ca7205f1eb497d10b845e52c838a98b6cdd2102a6c8e4540e94ee75c58bd", size = 220707, upload-time = "2025-03-18T21:35:19.343Z" }, + { url = "https://files.pythonhosted.org/packages/5d/c4/b2d28e9d2edf4f1713eb3c29307f1a63f3d67cf09bdda29715a36a68921a/pre_commit-4.5.0-py2.py3-none-any.whl", hash = "sha256:25e2ce09595174d9c97860a95609f9f852c0614ba602de3561e267547f2335e1", size = 226429, upload-time = "2025-11-22T21:02:40.836Z" }, ] [[package]] name = "prettytable" -version = "3.16.0" +version = "3.17.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "wcwidth" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/99/b1/85e18ac92afd08c533603e3393977b6bc1443043115a47bb094f3b98f94f/prettytable-3.16.0.tar.gz", hash = "sha256:3c64b31719d961bf69c9a7e03d0c1e477320906a98da63952bc6698d6164ff57", size = 66276, upload-time = "2025-03-24T19:39:04.008Z" } +sdist = { url = "https://files.pythonhosted.org/packages/79/45/b0847d88d6cfeb4413566738c8bbf1e1995fad3d42515327ff32cc1eb578/prettytable-3.17.0.tar.gz", hash = "sha256:59f2590776527f3c9e8cf9fe7b66dd215837cca96a9c39567414cbc632e8ddb0", size = 67892, upload-time = "2025-11-14T17:33:20.212Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/02/c7/5613524e606ea1688b3bdbf48aa64bafb6d0a4ac3750274c43b6158a390f/prettytable-3.16.0-py3-none-any.whl", hash = "sha256:b5eccfabb82222f5aa46b798ff02a8452cf530a352c31bddfa29be41242863aa", size = 33863, upload-time = "2025-03-24T19:39:02.359Z" }, + { url = "https://files.pythonhosted.org/packages/ee/8c/83087ebc47ab0396ce092363001fa37c17153119ee282700c0713a195853/prettytable-3.17.0-py3-none-any.whl", hash = "sha256:aad69b294ddbe3e1f95ef8886a060ed1666a0b83018bbf56295f6f226c43d287", size = 34433, upload-time = "2025-11-14T17:33:19.093Z" }, ] [[package]] name = "prompt-toolkit" -version = "3.0.51" +version = "3.0.52" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "wcwidth" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/bb/6e/9d084c929dfe9e3bfe0c6a47e31f78a25c54627d64a66e884a8bf5474f1c/prompt_toolkit-3.0.51.tar.gz", hash = "sha256:931a162e3b27fc90c86f1b48bb1fb2c528c2761475e57c9c06de13311c7b54ed", size = 428940, upload-time = "2025-04-15T09:18:47.731Z" } +sdist = { url = "https://files.pythonhosted.org/packages/a1/96/06e01a7b38dce6fe1db213e061a4602dd6032a8a97ef6c1a862537732421/prompt_toolkit-3.0.52.tar.gz", hash = "sha256:28cde192929c8e7321de85de1ddbe736f1375148b02f2e17edd840042b1be855", size = 434198, upload-time = "2025-08-27T15:24:02.057Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/ce/4f/5249960887b1fbe561d9ff265496d170b55a735b76724f10ef19f9e40716/prompt_toolkit-3.0.51-py3-none-any.whl", hash = "sha256:52742911fde84e2d423e2f9a4cf1de7d7ac4e51958f648d9540e0fb8db077b07", size = 387810, upload-time = "2025-04-15T09:18:44.753Z" }, + { url = "https://files.pythonhosted.org/packages/84/03/0d3ce49e2505ae70cf43bc5bb3033955d2fc9f932163e84dc0779cc47f48/prompt_toolkit-3.0.52-py3-none-any.whl", hash = "sha256:9aac639a3bbd33284347de5ad8d68ecc044b91a762dc39b7c21095fcd6a19955", size = 391431, upload-time = "2025-08-27T15:23:59.498Z" }, ] [[package]] name = "propcache" -version = "0.3.2" +version = "0.4.1" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/a6/16/43264e4a779dd8588c21a70f0709665ee8f611211bdd2c87d952cfa7c776/propcache-0.3.2.tar.gz", hash = "sha256:20d7d62e4e7ef05f221e0db2856b979540686342e7dd9973b815599c7057e168", size = 44139, upload-time = "2025-06-09T22:56:06.081Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/ab/14/510deed325e262afeb8b360043c5d7c960da7d3ecd6d6f9496c9c56dc7f4/propcache-0.3.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:22d9962a358aedbb7a2e36187ff273adeaab9743373a272976d2e348d08c7770", size = 73178, upload-time = "2025-06-09T22:53:40.126Z" }, - { url = "https://files.pythonhosted.org/packages/cd/4e/ad52a7925ff01c1325653a730c7ec3175a23f948f08626a534133427dcff/propcache-0.3.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0d0fda578d1dc3f77b6b5a5dce3b9ad69a8250a891760a548df850a5e8da87f3", size = 43133, upload-time = "2025-06-09T22:53:41.965Z" }, - { url = "https://files.pythonhosted.org/packages/63/7c/e9399ba5da7780871db4eac178e9c2e204c23dd3e7d32df202092a1ed400/propcache-0.3.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3def3da3ac3ce41562d85db655d18ebac740cb3fa4367f11a52b3da9d03a5cc3", size = 43039, upload-time = "2025-06-09T22:53:43.268Z" }, - { url = "https://files.pythonhosted.org/packages/22/e1/58da211eb8fdc6fc854002387d38f415a6ca5f5c67c1315b204a5d3e9d7a/propcache-0.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9bec58347a5a6cebf239daba9bda37dffec5b8d2ce004d9fe4edef3d2815137e", size = 201903, upload-time = "2025-06-09T22:53:44.872Z" }, - { url = "https://files.pythonhosted.org/packages/c4/0a/550ea0f52aac455cb90111c8bab995208443e46d925e51e2f6ebdf869525/propcache-0.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:55ffda449a507e9fbd4aca1a7d9aa6753b07d6166140e5a18d2ac9bc49eac220", size = 213362, upload-time = "2025-06-09T22:53:46.707Z" }, - { url = "https://files.pythonhosted.org/packages/5a/af/9893b7d878deda9bb69fcf54600b247fba7317761b7db11fede6e0f28bd0/propcache-0.3.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:64a67fb39229a8a8491dd42f864e5e263155e729c2e7ff723d6e25f596b1e8cb", size = 210525, upload-time = "2025-06-09T22:53:48.547Z" }, - { url = "https://files.pythonhosted.org/packages/7c/bb/38fd08b278ca85cde36d848091ad2b45954bc5f15cce494bb300b9285831/propcache-0.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9da1cf97b92b51253d5b68cf5a2b9e0dafca095e36b7f2da335e27dc6172a614", size = 198283, upload-time = "2025-06-09T22:53:50.067Z" }, - { url = "https://files.pythonhosted.org/packages/78/8c/9fe55bd01d362bafb413dfe508c48753111a1e269737fa143ba85693592c/propcache-0.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5f559e127134b07425134b4065be45b166183fdcb433cb6c24c8e4149056ad50", size = 191872, upload-time = "2025-06-09T22:53:51.438Z" }, - { url = "https://files.pythonhosted.org/packages/54/14/4701c33852937a22584e08abb531d654c8bcf7948a8f87ad0a4822394147/propcache-0.3.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:aff2e4e06435d61f11a428360a932138d0ec288b0a31dd9bd78d200bd4a2b339", size = 199452, upload-time = "2025-06-09T22:53:53.229Z" }, - { url = "https://files.pythonhosted.org/packages/16/44/447f2253d859602095356007657ee535e0093215ea0b3d1d6a41d16e5201/propcache-0.3.2-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:4927842833830942a5d0a56e6f4839bc484785b8e1ce8d287359794818633ba0", size = 191567, upload-time = "2025-06-09T22:53:54.541Z" }, - { url = "https://files.pythonhosted.org/packages/f2/b3/e4756258749bb2d3b46defcff606a2f47410bab82be5824a67e84015b267/propcache-0.3.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:6107ddd08b02654a30fb8ad7a132021759d750a82578b94cd55ee2772b6ebea2", size = 193015, upload-time = "2025-06-09T22:53:56.44Z" }, - { url = "https://files.pythonhosted.org/packages/1e/df/e6d3c7574233164b6330b9fd697beeac402afd367280e6dc377bb99b43d9/propcache-0.3.2-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:70bd8b9cd6b519e12859c99f3fc9a93f375ebd22a50296c3a295028bea73b9e7", size = 204660, upload-time = "2025-06-09T22:53:57.839Z" }, - { url = "https://files.pythonhosted.org/packages/b2/53/e4d31dd5170b4a0e2e6b730f2385a96410633b4833dc25fe5dffd1f73294/propcache-0.3.2-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:2183111651d710d3097338dd1893fcf09c9f54e27ff1a8795495a16a469cc90b", size = 206105, upload-time = "2025-06-09T22:53:59.638Z" }, - { url = "https://files.pythonhosted.org/packages/7f/fe/74d54cf9fbe2a20ff786e5f7afcfde446588f0cf15fb2daacfbc267b866c/propcache-0.3.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fb075ad271405dcad8e2a7ffc9a750a3bf70e533bd86e89f0603e607b93aa64c", size = 196980, upload-time = "2025-06-09T22:54:01.071Z" }, - { url = "https://files.pythonhosted.org/packages/22/ec/c469c9d59dada8a7679625e0440b544fe72e99311a4679c279562051f6fc/propcache-0.3.2-cp310-cp310-win32.whl", hash = "sha256:404d70768080d3d3bdb41d0771037da19d8340d50b08e104ca0e7f9ce55fce70", size = 37679, upload-time = "2025-06-09T22:54:03.003Z" }, - { url = "https://files.pythonhosted.org/packages/38/35/07a471371ac89d418f8d0b699c75ea6dca2041fbda360823de21f6a9ce0a/propcache-0.3.2-cp310-cp310-win_amd64.whl", hash = "sha256:7435d766f978b4ede777002e6b3b6641dd229cd1da8d3d3106a45770365f9ad9", size = 41459, upload-time = "2025-06-09T22:54:04.134Z" }, - { url = "https://files.pythonhosted.org/packages/80/8d/e8b436717ab9c2cfc23b116d2c297305aa4cd8339172a456d61ebf5669b8/propcache-0.3.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:0b8d2f607bd8f80ddc04088bc2a037fdd17884a6fcadc47a96e334d72f3717be", size = 74207, upload-time = "2025-06-09T22:54:05.399Z" }, - { url = "https://files.pythonhosted.org/packages/d6/29/1e34000e9766d112171764b9fa3226fa0153ab565d0c242c70e9945318a7/propcache-0.3.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:06766d8f34733416e2e34f46fea488ad5d60726bb9481d3cddf89a6fa2d9603f", size = 43648, upload-time = "2025-06-09T22:54:08.023Z" }, - { url = "https://files.pythonhosted.org/packages/46/92/1ad5af0df781e76988897da39b5f086c2bf0f028b7f9bd1f409bb05b6874/propcache-0.3.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:a2dc1f4a1df4fecf4e6f68013575ff4af84ef6f478fe5344317a65d38a8e6dc9", size = 43496, upload-time = "2025-06-09T22:54:09.228Z" }, - { url = "https://files.pythonhosted.org/packages/b3/ce/e96392460f9fb68461fabab3e095cb00c8ddf901205be4eae5ce246e5b7e/propcache-0.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:be29c4f4810c5789cf10ddf6af80b041c724e629fa51e308a7a0fb19ed1ef7bf", size = 217288, upload-time = "2025-06-09T22:54:10.466Z" }, - { url = "https://files.pythonhosted.org/packages/c5/2a/866726ea345299f7ceefc861a5e782b045545ae6940851930a6adaf1fca6/propcache-0.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:59d61f6970ecbd8ff2e9360304d5c8876a6abd4530cb752c06586849ac8a9dc9", size = 227456, upload-time = "2025-06-09T22:54:11.828Z" }, - { url = "https://files.pythonhosted.org/packages/de/03/07d992ccb6d930398689187e1b3c718339a1c06b8b145a8d9650e4726166/propcache-0.3.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:62180e0b8dbb6b004baec00a7983e4cc52f5ada9cd11f48c3528d8cfa7b96a66", size = 225429, upload-time = "2025-06-09T22:54:13.823Z" }, - { url = "https://files.pythonhosted.org/packages/5d/e6/116ba39448753b1330f48ab8ba927dcd6cf0baea8a0ccbc512dfb49ba670/propcache-0.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c144ca294a204c470f18cf4c9d78887810d04a3e2fbb30eea903575a779159df", size = 213472, upload-time = "2025-06-09T22:54:15.232Z" }, - { url = "https://files.pythonhosted.org/packages/a6/85/f01f5d97e54e428885a5497ccf7f54404cbb4f906688a1690cd51bf597dc/propcache-0.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c5c2a784234c28854878d68978265617aa6dc0780e53d44b4d67f3651a17a9a2", size = 204480, upload-time = "2025-06-09T22:54:17.104Z" }, - { url = "https://files.pythonhosted.org/packages/e3/79/7bf5ab9033b8b8194cc3f7cf1aaa0e9c3256320726f64a3e1f113a812dce/propcache-0.3.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:5745bc7acdafa978ca1642891b82c19238eadc78ba2aaa293c6863b304e552d7", size = 214530, upload-time = "2025-06-09T22:54:18.512Z" }, - { url = "https://files.pythonhosted.org/packages/31/0b/bd3e0c00509b609317df4a18e6b05a450ef2d9a963e1d8bc9c9415d86f30/propcache-0.3.2-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:c0075bf773d66fa8c9d41f66cc132ecc75e5bb9dd7cce3cfd14adc5ca184cb95", size = 205230, upload-time = "2025-06-09T22:54:19.947Z" }, - { url = "https://files.pythonhosted.org/packages/7a/23/fae0ff9b54b0de4e819bbe559508da132d5683c32d84d0dc2ccce3563ed4/propcache-0.3.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5f57aa0847730daceff0497f417c9de353c575d8da3579162cc74ac294c5369e", size = 206754, upload-time = "2025-06-09T22:54:21.716Z" }, - { url = "https://files.pythonhosted.org/packages/b7/7f/ad6a3c22630aaa5f618b4dc3c3598974a72abb4c18e45a50b3cdd091eb2f/propcache-0.3.2-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:eef914c014bf72d18efb55619447e0aecd5fb7c2e3fa7441e2e5d6099bddff7e", size = 218430, upload-time = "2025-06-09T22:54:23.17Z" }, - { url = "https://files.pythonhosted.org/packages/5b/2c/ba4f1c0e8a4b4c75910742f0d333759d441f65a1c7f34683b4a74c0ee015/propcache-0.3.2-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:2a4092e8549031e82facf3decdbc0883755d5bbcc62d3aea9d9e185549936dcf", size = 223884, upload-time = "2025-06-09T22:54:25.539Z" }, - { url = "https://files.pythonhosted.org/packages/88/e4/ebe30fc399e98572019eee82ad0caf512401661985cbd3da5e3140ffa1b0/propcache-0.3.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:85871b050f174bc0bfb437efbdb68aaf860611953ed12418e4361bc9c392749e", size = 211480, upload-time = "2025-06-09T22:54:26.892Z" }, - { url = "https://files.pythonhosted.org/packages/96/0a/7d5260b914e01d1d0906f7f38af101f8d8ed0dc47426219eeaf05e8ea7c2/propcache-0.3.2-cp311-cp311-win32.whl", hash = "sha256:36c8d9b673ec57900c3554264e630d45980fd302458e4ac801802a7fd2ef7897", size = 37757, upload-time = "2025-06-09T22:54:28.241Z" }, - { url = "https://files.pythonhosted.org/packages/e1/2d/89fe4489a884bc0da0c3278c552bd4ffe06a1ace559db5ef02ef24ab446b/propcache-0.3.2-cp311-cp311-win_amd64.whl", hash = "sha256:e53af8cb6a781b02d2ea079b5b853ba9430fcbe18a8e3ce647d5982a3ff69f39", size = 41500, upload-time = "2025-06-09T22:54:29.4Z" }, - { url = "https://files.pythonhosted.org/packages/a8/42/9ca01b0a6f48e81615dca4765a8f1dd2c057e0540f6116a27dc5ee01dfb6/propcache-0.3.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:8de106b6c84506b31c27168582cd3cb3000a6412c16df14a8628e5871ff83c10", size = 73674, upload-time = "2025-06-09T22:54:30.551Z" }, - { url = "https://files.pythonhosted.org/packages/af/6e/21293133beb550f9c901bbece755d582bfaf2176bee4774000bd4dd41884/propcache-0.3.2-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:28710b0d3975117239c76600ea351934ac7b5ff56e60953474342608dbbb6154", size = 43570, upload-time = "2025-06-09T22:54:32.296Z" }, - { url = "https://files.pythonhosted.org/packages/0c/c8/0393a0a3a2b8760eb3bde3c147f62b20044f0ddac81e9d6ed7318ec0d852/propcache-0.3.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ce26862344bdf836650ed2487c3d724b00fbfec4233a1013f597b78c1cb73615", size = 43094, upload-time = "2025-06-09T22:54:33.929Z" }, - { url = "https://files.pythonhosted.org/packages/37/2c/489afe311a690399d04a3e03b069225670c1d489eb7b044a566511c1c498/propcache-0.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bca54bd347a253af2cf4544bbec232ab982f4868de0dd684246b67a51bc6b1db", size = 226958, upload-time = "2025-06-09T22:54:35.186Z" }, - { url = "https://files.pythonhosted.org/packages/9d/ca/63b520d2f3d418c968bf596839ae26cf7f87bead026b6192d4da6a08c467/propcache-0.3.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:55780d5e9a2ddc59711d727226bb1ba83a22dd32f64ee15594b9392b1f544eb1", size = 234894, upload-time = "2025-06-09T22:54:36.708Z" }, - { url = "https://files.pythonhosted.org/packages/11/60/1d0ed6fff455a028d678df30cc28dcee7af77fa2b0e6962ce1df95c9a2a9/propcache-0.3.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:035e631be25d6975ed87ab23153db6a73426a48db688070d925aa27e996fe93c", size = 233672, upload-time = "2025-06-09T22:54:38.062Z" }, - { url = "https://files.pythonhosted.org/packages/37/7c/54fd5301ef38505ab235d98827207176a5c9b2aa61939b10a460ca53e123/propcache-0.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee6f22b6eaa39297c751d0e80c0d3a454f112f5c6481214fcf4c092074cecd67", size = 224395, upload-time = "2025-06-09T22:54:39.634Z" }, - { url = "https://files.pythonhosted.org/packages/ee/1a/89a40e0846f5de05fdc6779883bf46ba980e6df4d2ff8fb02643de126592/propcache-0.3.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7ca3aee1aa955438c4dba34fc20a9f390e4c79967257d830f137bd5a8a32ed3b", size = 212510, upload-time = "2025-06-09T22:54:41.565Z" }, - { url = "https://files.pythonhosted.org/packages/5e/33/ca98368586c9566a6b8d5ef66e30484f8da84c0aac3f2d9aec6d31a11bd5/propcache-0.3.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:7a4f30862869fa2b68380d677cc1c5fcf1e0f2b9ea0cf665812895c75d0ca3b8", size = 222949, upload-time = "2025-06-09T22:54:43.038Z" }, - { url = "https://files.pythonhosted.org/packages/ba/11/ace870d0aafe443b33b2f0b7efdb872b7c3abd505bfb4890716ad7865e9d/propcache-0.3.2-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:b77ec3c257d7816d9f3700013639db7491a434644c906a2578a11daf13176251", size = 217258, upload-time = "2025-06-09T22:54:44.376Z" }, - { url = "https://files.pythonhosted.org/packages/5b/d2/86fd6f7adffcfc74b42c10a6b7db721d1d9ca1055c45d39a1a8f2a740a21/propcache-0.3.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:cab90ac9d3f14b2d5050928483d3d3b8fb6b4018893fc75710e6aa361ecb2474", size = 213036, upload-time = "2025-06-09T22:54:46.243Z" }, - { url = "https://files.pythonhosted.org/packages/07/94/2d7d1e328f45ff34a0a284cf5a2847013701e24c2a53117e7c280a4316b3/propcache-0.3.2-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:0b504d29f3c47cf6b9e936c1852246c83d450e8e063d50562115a6be6d3a2535", size = 227684, upload-time = "2025-06-09T22:54:47.63Z" }, - { url = "https://files.pythonhosted.org/packages/b7/05/37ae63a0087677e90b1d14710e532ff104d44bc1efa3b3970fff99b891dc/propcache-0.3.2-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:ce2ac2675a6aa41ddb2a0c9cbff53780a617ac3d43e620f8fd77ba1c84dcfc06", size = 234562, upload-time = "2025-06-09T22:54:48.982Z" }, - { url = "https://files.pythonhosted.org/packages/a4/7c/3f539fcae630408d0bd8bf3208b9a647ccad10976eda62402a80adf8fc34/propcache-0.3.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:62b4239611205294cc433845b914131b2a1f03500ff3c1ed093ed216b82621e1", size = 222142, upload-time = "2025-06-09T22:54:50.424Z" }, - { url = "https://files.pythonhosted.org/packages/7c/d2/34b9eac8c35f79f8a962546b3e97e9d4b990c420ee66ac8255d5d9611648/propcache-0.3.2-cp312-cp312-win32.whl", hash = "sha256:df4a81b9b53449ebc90cc4deefb052c1dd934ba85012aa912c7ea7b7e38b60c1", size = 37711, upload-time = "2025-06-09T22:54:52.072Z" }, - { url = "https://files.pythonhosted.org/packages/19/61/d582be5d226cf79071681d1b46b848d6cb03d7b70af7063e33a2787eaa03/propcache-0.3.2-cp312-cp312-win_amd64.whl", hash = "sha256:7046e79b989d7fe457bb755844019e10f693752d169076138abf17f31380800c", size = 41479, upload-time = "2025-06-09T22:54:53.234Z" }, - { url = "https://files.pythonhosted.org/packages/dc/d1/8c747fafa558c603c4ca19d8e20b288aa0c7cda74e9402f50f31eb65267e/propcache-0.3.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ca592ed634a73ca002967458187109265e980422116c0a107cf93d81f95af945", size = 71286, upload-time = "2025-06-09T22:54:54.369Z" }, - { url = "https://files.pythonhosted.org/packages/61/99/d606cb7986b60d89c36de8a85d58764323b3a5ff07770a99d8e993b3fa73/propcache-0.3.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:9ecb0aad4020e275652ba3975740f241bd12a61f1a784df044cf7477a02bc252", size = 42425, upload-time = "2025-06-09T22:54:55.642Z" }, - { url = "https://files.pythonhosted.org/packages/8c/96/ef98f91bbb42b79e9bb82bdd348b255eb9d65f14dbbe3b1594644c4073f7/propcache-0.3.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:7f08f1cc28bd2eade7a8a3d2954ccc673bb02062e3e7da09bc75d843386b342f", size = 41846, upload-time = "2025-06-09T22:54:57.246Z" }, - { url = "https://files.pythonhosted.org/packages/5b/ad/3f0f9a705fb630d175146cd7b1d2bf5555c9beaed54e94132b21aac098a6/propcache-0.3.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d1a342c834734edb4be5ecb1e9fb48cb64b1e2320fccbd8c54bf8da8f2a84c33", size = 208871, upload-time = "2025-06-09T22:54:58.975Z" }, - { url = "https://files.pythonhosted.org/packages/3a/38/2085cda93d2c8b6ec3e92af2c89489a36a5886b712a34ab25de9fbca7992/propcache-0.3.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8a544caaae1ac73f1fecfae70ded3e93728831affebd017d53449e3ac052ac1e", size = 215720, upload-time = "2025-06-09T22:55:00.471Z" }, - { url = "https://files.pythonhosted.org/packages/61/c1/d72ea2dc83ac7f2c8e182786ab0fc2c7bd123a1ff9b7975bee671866fe5f/propcache-0.3.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:310d11aa44635298397db47a3ebce7db99a4cc4b9bbdfcf6c98a60c8d5261cf1", size = 215203, upload-time = "2025-06-09T22:55:01.834Z" }, - { url = "https://files.pythonhosted.org/packages/af/81/b324c44ae60c56ef12007105f1460d5c304b0626ab0cc6b07c8f2a9aa0b8/propcache-0.3.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4c1396592321ac83157ac03a2023aa6cc4a3cc3cfdecb71090054c09e5a7cce3", size = 206365, upload-time = "2025-06-09T22:55:03.199Z" }, - { url = "https://files.pythonhosted.org/packages/09/73/88549128bb89e66d2aff242488f62869014ae092db63ccea53c1cc75a81d/propcache-0.3.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8cabf5b5902272565e78197edb682017d21cf3b550ba0460ee473753f28d23c1", size = 196016, upload-time = "2025-06-09T22:55:04.518Z" }, - { url = "https://files.pythonhosted.org/packages/b9/3f/3bdd14e737d145114a5eb83cb172903afba7242f67c5877f9909a20d948d/propcache-0.3.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:0a2f2235ac46a7aa25bdeb03a9e7060f6ecbd213b1f9101c43b3090ffb971ef6", size = 205596, upload-time = "2025-06-09T22:55:05.942Z" }, - { url = "https://files.pythonhosted.org/packages/0f/ca/2f4aa819c357d3107c3763d7ef42c03980f9ed5c48c82e01e25945d437c1/propcache-0.3.2-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:92b69e12e34869a6970fd2f3da91669899994b47c98f5d430b781c26f1d9f387", size = 200977, upload-time = "2025-06-09T22:55:07.792Z" }, - { url = "https://files.pythonhosted.org/packages/cd/4a/e65276c7477533c59085251ae88505caf6831c0e85ff8b2e31ebcbb949b1/propcache-0.3.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:54e02207c79968ebbdffc169591009f4474dde3b4679e16634d34c9363ff56b4", size = 197220, upload-time = "2025-06-09T22:55:09.173Z" }, - { url = "https://files.pythonhosted.org/packages/7c/54/fc7152e517cf5578278b242396ce4d4b36795423988ef39bb8cd5bf274c8/propcache-0.3.2-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:4adfb44cb588001f68c5466579d3f1157ca07f7504fc91ec87862e2b8e556b88", size = 210642, upload-time = "2025-06-09T22:55:10.62Z" }, - { url = "https://files.pythonhosted.org/packages/b9/80/abeb4a896d2767bf5f1ea7b92eb7be6a5330645bd7fb844049c0e4045d9d/propcache-0.3.2-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:fd3e6019dc1261cd0291ee8919dd91fbab7b169bb76aeef6c716833a3f65d206", size = 212789, upload-time = "2025-06-09T22:55:12.029Z" }, - { url = "https://files.pythonhosted.org/packages/b3/db/ea12a49aa7b2b6d68a5da8293dcf50068d48d088100ac016ad92a6a780e6/propcache-0.3.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:4c181cad81158d71c41a2bce88edce078458e2dd5ffee7eddd6b05da85079f43", size = 205880, upload-time = "2025-06-09T22:55:13.45Z" }, - { url = "https://files.pythonhosted.org/packages/d1/e5/9076a0bbbfb65d1198007059c65639dfd56266cf8e477a9707e4b1999ff4/propcache-0.3.2-cp313-cp313-win32.whl", hash = "sha256:8a08154613f2249519e549de2330cf8e2071c2887309a7b07fb56098f5170a02", size = 37220, upload-time = "2025-06-09T22:55:15.284Z" }, - { url = "https://files.pythonhosted.org/packages/d3/f5/b369e026b09a26cd77aa88d8fffd69141d2ae00a2abaaf5380d2603f4b7f/propcache-0.3.2-cp313-cp313-win_amd64.whl", hash = "sha256:e41671f1594fc4ab0a6dec1351864713cb3a279910ae8b58f884a88a0a632c05", size = 40678, upload-time = "2025-06-09T22:55:16.445Z" }, - { url = "https://files.pythonhosted.org/packages/a4/3a/6ece377b55544941a08d03581c7bc400a3c8cd3c2865900a68d5de79e21f/propcache-0.3.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:9a3cf035bbaf035f109987d9d55dc90e4b0e36e04bbbb95af3055ef17194057b", size = 76560, upload-time = "2025-06-09T22:55:17.598Z" }, - { url = "https://files.pythonhosted.org/packages/0c/da/64a2bb16418740fa634b0e9c3d29edff1db07f56d3546ca2d86ddf0305e1/propcache-0.3.2-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:156c03d07dc1323d8dacaa221fbe028c5c70d16709cdd63502778e6c3ccca1b0", size = 44676, upload-time = "2025-06-09T22:55:18.922Z" }, - { url = "https://files.pythonhosted.org/packages/36/7b/f025e06ea51cb72c52fb87e9b395cced02786610b60a3ed51da8af017170/propcache-0.3.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:74413c0ba02ba86f55cf60d18daab219f7e531620c15f1e23d95563f505efe7e", size = 44701, upload-time = "2025-06-09T22:55:20.106Z" }, - { url = "https://files.pythonhosted.org/packages/a4/00/faa1b1b7c3b74fc277f8642f32a4c72ba1d7b2de36d7cdfb676db7f4303e/propcache-0.3.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f066b437bb3fa39c58ff97ab2ca351db465157d68ed0440abecb21715eb24b28", size = 276934, upload-time = "2025-06-09T22:55:21.5Z" }, - { url = "https://files.pythonhosted.org/packages/74/ab/935beb6f1756e0476a4d5938ff44bf0d13a055fed880caf93859b4f1baf4/propcache-0.3.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f1304b085c83067914721e7e9d9917d41ad87696bf70f0bc7dee450e9c71ad0a", size = 278316, upload-time = "2025-06-09T22:55:22.918Z" }, - { url = "https://files.pythonhosted.org/packages/f8/9d/994a5c1ce4389610838d1caec74bdf0e98b306c70314d46dbe4fcf21a3e2/propcache-0.3.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ab50cef01b372763a13333b4e54021bdcb291fc9a8e2ccb9c2df98be51bcde6c", size = 282619, upload-time = "2025-06-09T22:55:24.651Z" }, - { url = "https://files.pythonhosted.org/packages/2b/00/a10afce3d1ed0287cef2e09506d3be9822513f2c1e96457ee369adb9a6cd/propcache-0.3.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fad3b2a085ec259ad2c2842666b2a0a49dea8463579c606426128925af1ed725", size = 265896, upload-time = "2025-06-09T22:55:26.049Z" }, - { url = "https://files.pythonhosted.org/packages/2e/a8/2aa6716ffa566ca57c749edb909ad27884680887d68517e4be41b02299f3/propcache-0.3.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:261fa020c1c14deafd54c76b014956e2f86991af198c51139faf41c4d5e83892", size = 252111, upload-time = "2025-06-09T22:55:27.381Z" }, - { url = "https://files.pythonhosted.org/packages/36/4f/345ca9183b85ac29c8694b0941f7484bf419c7f0fea2d1e386b4f7893eed/propcache-0.3.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:46d7f8aa79c927e5f987ee3a80205c987717d3659f035c85cf0c3680526bdb44", size = 268334, upload-time = "2025-06-09T22:55:28.747Z" }, - { url = "https://files.pythonhosted.org/packages/3e/ca/fcd54f78b59e3f97b3b9715501e3147f5340167733d27db423aa321e7148/propcache-0.3.2-cp313-cp313t-musllinux_1_2_armv7l.whl", hash = "sha256:6d8f3f0eebf73e3c0ff0e7853f68be638b4043c65a70517bb575eff54edd8dbe", size = 255026, upload-time = "2025-06-09T22:55:30.184Z" }, - { url = "https://files.pythonhosted.org/packages/8b/95/8e6a6bbbd78ac89c30c225210a5c687790e532ba4088afb8c0445b77ef37/propcache-0.3.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:03c89c1b14a5452cf15403e291c0ccd7751d5b9736ecb2c5bab977ad6c5bcd81", size = 250724, upload-time = "2025-06-09T22:55:31.646Z" }, - { url = "https://files.pythonhosted.org/packages/ee/b0/0dd03616142baba28e8b2d14ce5df6631b4673850a3d4f9c0f9dd714a404/propcache-0.3.2-cp313-cp313t-musllinux_1_2_ppc64le.whl", hash = "sha256:0cc17efde71e12bbaad086d679ce575268d70bc123a5a71ea7ad76f70ba30bba", size = 268868, upload-time = "2025-06-09T22:55:33.209Z" }, - { url = "https://files.pythonhosted.org/packages/c5/98/2c12407a7e4fbacd94ddd32f3b1e3d5231e77c30ef7162b12a60e2dd5ce3/propcache-0.3.2-cp313-cp313t-musllinux_1_2_s390x.whl", hash = "sha256:acdf05d00696bc0447e278bb53cb04ca72354e562cf88ea6f9107df8e7fd9770", size = 271322, upload-time = "2025-06-09T22:55:35.065Z" }, - { url = "https://files.pythonhosted.org/packages/35/91/9cb56efbb428b006bb85db28591e40b7736847b8331d43fe335acf95f6c8/propcache-0.3.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:4445542398bd0b5d32df908031cb1b30d43ac848e20470a878b770ec2dcc6330", size = 265778, upload-time = "2025-06-09T22:55:36.45Z" }, - { url = "https://files.pythonhosted.org/packages/9a/4c/b0fe775a2bdd01e176b14b574be679d84fc83958335790f7c9a686c1f468/propcache-0.3.2-cp313-cp313t-win32.whl", hash = "sha256:f86e5d7cd03afb3a1db8e9f9f6eff15794e79e791350ac48a8c924e6f439f394", size = 41175, upload-time = "2025-06-09T22:55:38.436Z" }, - { url = "https://files.pythonhosted.org/packages/a4/ff/47f08595e3d9b5e149c150f88d9714574f1a7cbd89fe2817158a952674bf/propcache-0.3.2-cp313-cp313t-win_amd64.whl", hash = "sha256:9704bedf6e7cbe3c65eca4379a9b53ee6a83749f047808cbb5044d40d7d72198", size = 44857, upload-time = "2025-06-09T22:55:39.687Z" }, - { url = "https://files.pythonhosted.org/packages/cc/35/cc0aaecf278bb4575b8555f2b137de5ab821595ddae9da9d3cd1da4072c7/propcache-0.3.2-py3-none-any.whl", hash = "sha256:98f1ec44fb675f5052cccc8e609c46ed23a35a1cfd18545ad4e29002d858a43f", size = 12663, upload-time = "2025-06-09T22:56:04.484Z" }, +sdist = { url = "https://files.pythonhosted.org/packages/9e/da/e9fc233cf63743258bff22b3dfa7ea5baef7b5bc324af47a0ad89b8ffc6f/propcache-0.4.1.tar.gz", hash = "sha256:f48107a8c637e80362555f37ecf49abe20370e557cc4ab374f04ec4423c97c3d", size = 46442, upload-time = "2025-10-08T19:49:02.291Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8c/d4/4e2c9aaf7ac2242b9358f98dccd8f90f2605402f5afeff6c578682c2c491/propcache-0.4.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:60a8fda9644b7dfd5dece8c61d8a85e271cb958075bfc4e01083c148b61a7caf", size = 80208, upload-time = "2025-10-08T19:46:24.597Z" }, + { url = "https://files.pythonhosted.org/packages/c2/21/d7b68e911f9c8e18e4ae43bdbc1e1e9bbd971f8866eb81608947b6f585ff/propcache-0.4.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c30b53e7e6bda1d547cabb47c825f3843a0a1a42b0496087bb58d8fedf9f41b5", size = 45777, upload-time = "2025-10-08T19:46:25.733Z" }, + { url = "https://files.pythonhosted.org/packages/d3/1d/11605e99ac8ea9435651ee71ab4cb4bf03f0949586246476a25aadfec54a/propcache-0.4.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:6918ecbd897443087a3b7cd978d56546a812517dcaaca51b49526720571fa93e", size = 47647, upload-time = "2025-10-08T19:46:27.304Z" }, + { url = "https://files.pythonhosted.org/packages/58/1a/3c62c127a8466c9c843bccb503d40a273e5cc69838805f322e2826509e0d/propcache-0.4.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:3d902a36df4e5989763425a8ab9e98cd8ad5c52c823b34ee7ef307fd50582566", size = 214929, upload-time = "2025-10-08T19:46:28.62Z" }, + { url = "https://files.pythonhosted.org/packages/56/b9/8fa98f850960b367c4b8fe0592e7fc341daa7a9462e925228f10a60cf74f/propcache-0.4.1-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:a9695397f85973bb40427dedddf70d8dc4a44b22f1650dd4af9eedf443d45165", size = 221778, upload-time = "2025-10-08T19:46:30.358Z" }, + { url = "https://files.pythonhosted.org/packages/46/a6/0ab4f660eb59649d14b3d3d65c439421cf2f87fe5dd68591cbe3c1e78a89/propcache-0.4.1-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:2bb07ffd7eaad486576430c89f9b215f9e4be68c4866a96e97db9e97fead85dc", size = 228144, upload-time = "2025-10-08T19:46:32.607Z" }, + { url = "https://files.pythonhosted.org/packages/52/6a/57f43e054fb3d3a56ac9fc532bc684fc6169a26c75c353e65425b3e56eef/propcache-0.4.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:fd6f30fdcf9ae2a70abd34da54f18da086160e4d7d9251f81f3da0ff84fc5a48", size = 210030, upload-time = "2025-10-08T19:46:33.969Z" }, + { url = "https://files.pythonhosted.org/packages/40/e2/27e6feebb5f6b8408fa29f5efbb765cd54c153ac77314d27e457a3e993b7/propcache-0.4.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:fc38cba02d1acba4e2869eef1a57a43dfbd3d49a59bf90dda7444ec2be6a5570", size = 208252, upload-time = "2025-10-08T19:46:35.309Z" }, + { url = "https://files.pythonhosted.org/packages/9e/f8/91c27b22ccda1dbc7967f921c42825564fa5336a01ecd72eb78a9f4f53c2/propcache-0.4.1-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:67fad6162281e80e882fb3ec355398cf72864a54069d060321f6cd0ade95fe85", size = 202064, upload-time = "2025-10-08T19:46:36.993Z" }, + { url = "https://files.pythonhosted.org/packages/f2/26/7f00bd6bd1adba5aafe5f4a66390f243acab58eab24ff1a08bebb2ef9d40/propcache-0.4.1-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:f10207adf04d08bec185bae14d9606a1444715bc99180f9331c9c02093e1959e", size = 212429, upload-time = "2025-10-08T19:46:38.398Z" }, + { url = "https://files.pythonhosted.org/packages/84/89/fd108ba7815c1117ddca79c228f3f8a15fc82a73bca8b142eb5de13b2785/propcache-0.4.1-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:e9b0d8d0845bbc4cfcdcbcdbf5086886bc8157aa963c31c777ceff7846c77757", size = 216727, upload-time = "2025-10-08T19:46:39.732Z" }, + { url = "https://files.pythonhosted.org/packages/79/37/3ec3f7e3173e73f1d600495d8b545b53802cbf35506e5732dd8578db3724/propcache-0.4.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:981333cb2f4c1896a12f4ab92a9cc8f09ea664e9b7dbdc4eff74627af3a11c0f", size = 205097, upload-time = "2025-10-08T19:46:41.025Z" }, + { url = "https://files.pythonhosted.org/packages/61/b0/b2631c19793f869d35f47d5a3a56fb19e9160d3c119f15ac7344fc3ccae7/propcache-0.4.1-cp311-cp311-win32.whl", hash = "sha256:f1d2f90aeec838a52f1c1a32fe9a619fefd5e411721a9117fbf82aea638fe8a1", size = 38084, upload-time = "2025-10-08T19:46:42.693Z" }, + { url = "https://files.pythonhosted.org/packages/f4/78/6cce448e2098e9f3bfc91bb877f06aa24b6ccace872e39c53b2f707c4648/propcache-0.4.1-cp311-cp311-win_amd64.whl", hash = "sha256:364426a62660f3f699949ac8c621aad6977be7126c5807ce48c0aeb8e7333ea6", size = 41637, upload-time = "2025-10-08T19:46:43.778Z" }, + { url = "https://files.pythonhosted.org/packages/9c/e9/754f180cccd7f51a39913782c74717c581b9cc8177ad0e949f4d51812383/propcache-0.4.1-cp311-cp311-win_arm64.whl", hash = "sha256:e53f3a38d3510c11953f3e6a33f205c6d1b001129f972805ca9b42fc308bc239", size = 38064, upload-time = "2025-10-08T19:46:44.872Z" }, + { url = "https://files.pythonhosted.org/packages/a2/0f/f17b1b2b221d5ca28b4b876e8bb046ac40466513960646bda8e1853cdfa2/propcache-0.4.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:e153e9cd40cc8945138822807139367f256f89c6810c2634a4f6902b52d3b4e2", size = 80061, upload-time = "2025-10-08T19:46:46.075Z" }, + { url = "https://files.pythonhosted.org/packages/76/47/8ccf75935f51448ba9a16a71b783eb7ef6b9ee60f5d14c7f8a8a79fbeed7/propcache-0.4.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:cd547953428f7abb73c5ad82cbb32109566204260d98e41e5dfdc682eb7f8403", size = 46037, upload-time = "2025-10-08T19:46:47.23Z" }, + { url = "https://files.pythonhosted.org/packages/0a/b6/5c9a0e42df4d00bfb4a3cbbe5cf9f54260300c88a0e9af1f47ca5ce17ac0/propcache-0.4.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:f048da1b4f243fc44f205dfd320933a951b8d89e0afd4c7cacc762a8b9165207", size = 47324, upload-time = "2025-10-08T19:46:48.384Z" }, + { url = "https://files.pythonhosted.org/packages/9e/d3/6c7ee328b39a81ee877c962469f1e795f9db87f925251efeb0545e0020d0/propcache-0.4.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ec17c65562a827bba85e3872ead335f95405ea1674860d96483a02f5c698fa72", size = 225505, upload-time = "2025-10-08T19:46:50.055Z" }, + { url = "https://files.pythonhosted.org/packages/01/5d/1c53f4563490b1d06a684742cc6076ef944bc6457df6051b7d1a877c057b/propcache-0.4.1-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:405aac25c6394ef275dee4c709be43745d36674b223ba4eb7144bf4d691b7367", size = 230242, upload-time = "2025-10-08T19:46:51.815Z" }, + { url = "https://files.pythonhosted.org/packages/20/e1/ce4620633b0e2422207c3cb774a0ee61cac13abc6217763a7b9e2e3f4a12/propcache-0.4.1-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:0013cb6f8dde4b2a2f66903b8ba740bdfe378c943c4377a200551ceb27f379e4", size = 238474, upload-time = "2025-10-08T19:46:53.208Z" }, + { url = "https://files.pythonhosted.org/packages/46/4b/3aae6835b8e5f44ea6a68348ad90f78134047b503765087be2f9912140ea/propcache-0.4.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:15932ab57837c3368b024473a525e25d316d8353016e7cc0e5ba9eb343fbb1cf", size = 221575, upload-time = "2025-10-08T19:46:54.511Z" }, + { url = "https://files.pythonhosted.org/packages/6e/a5/8a5e8678bcc9d3a1a15b9a29165640d64762d424a16af543f00629c87338/propcache-0.4.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:031dce78b9dc099f4c29785d9cf5577a3faf9ebf74ecbd3c856a7b92768c3df3", size = 216736, upload-time = "2025-10-08T19:46:56.212Z" }, + { url = "https://files.pythonhosted.org/packages/f1/63/b7b215eddeac83ca1c6b934f89d09a625aa9ee4ba158338854c87210cc36/propcache-0.4.1-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:ab08df6c9a035bee56e31af99be621526bd237bea9f32def431c656b29e41778", size = 213019, upload-time = "2025-10-08T19:46:57.595Z" }, + { url = "https://files.pythonhosted.org/packages/57/74/f580099a58c8af587cac7ba19ee7cb418506342fbbe2d4a4401661cca886/propcache-0.4.1-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:4d7af63f9f93fe593afbf104c21b3b15868efb2c21d07d8732c0c4287e66b6a6", size = 220376, upload-time = "2025-10-08T19:46:59.067Z" }, + { url = "https://files.pythonhosted.org/packages/c4/ee/542f1313aff7eaf19c2bb758c5d0560d2683dac001a1c96d0774af799843/propcache-0.4.1-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:cfc27c945f422e8b5071b6e93169679e4eb5bf73bbcbf1ba3ae3a83d2f78ebd9", size = 226988, upload-time = "2025-10-08T19:47:00.544Z" }, + { url = "https://files.pythonhosted.org/packages/8f/18/9c6b015dd9c6930f6ce2229e1f02fb35298b847f2087ea2b436a5bfa7287/propcache-0.4.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:35c3277624a080cc6ec6f847cbbbb5b49affa3598c4535a0a4682a697aaa5c75", size = 215615, upload-time = "2025-10-08T19:47:01.968Z" }, + { url = "https://files.pythonhosted.org/packages/80/9e/e7b85720b98c45a45e1fca6a177024934dc9bc5f4d5dd04207f216fc33ed/propcache-0.4.1-cp312-cp312-win32.whl", hash = "sha256:671538c2262dadb5ba6395e26c1731e1d52534bfe9ae56d0b5573ce539266aa8", size = 38066, upload-time = "2025-10-08T19:47:03.503Z" }, + { url = "https://files.pythonhosted.org/packages/54/09/d19cff2a5aaac632ec8fc03737b223597b1e347416934c1b3a7df079784c/propcache-0.4.1-cp312-cp312-win_amd64.whl", hash = "sha256:cb2d222e72399fcf5890d1d5cc1060857b9b236adff2792ff48ca2dfd46c81db", size = 41655, upload-time = "2025-10-08T19:47:04.973Z" }, + { url = "https://files.pythonhosted.org/packages/68/ab/6b5c191bb5de08036a8c697b265d4ca76148efb10fa162f14af14fb5f076/propcache-0.4.1-cp312-cp312-win_arm64.whl", hash = "sha256:204483131fb222bdaaeeea9f9e6c6ed0cac32731f75dfc1d4a567fc1926477c1", size = 37789, upload-time = "2025-10-08T19:47:06.077Z" }, + { url = "https://files.pythonhosted.org/packages/bf/df/6d9c1b6ac12b003837dde8a10231a7344512186e87b36e855bef32241942/propcache-0.4.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:43eedf29202c08550aac1d14e0ee619b0430aaef78f85864c1a892294fbc28cf", size = 77750, upload-time = "2025-10-08T19:47:07.648Z" }, + { url = "https://files.pythonhosted.org/packages/8b/e8/677a0025e8a2acf07d3418a2e7ba529c9c33caf09d3c1f25513023c1db56/propcache-0.4.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:d62cdfcfd89ccb8de04e0eda998535c406bf5e060ffd56be6c586cbcc05b3311", size = 44780, upload-time = "2025-10-08T19:47:08.851Z" }, + { url = "https://files.pythonhosted.org/packages/89/a4/92380f7ca60f99ebae761936bc48a72a639e8a47b29050615eef757cb2a7/propcache-0.4.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:cae65ad55793da34db5f54e4029b89d3b9b9490d8abe1b4c7ab5d4b8ec7ebf74", size = 46308, upload-time = "2025-10-08T19:47:09.982Z" }, + { url = "https://files.pythonhosted.org/packages/2d/48/c5ac64dee5262044348d1d78a5f85dd1a57464a60d30daee946699963eb3/propcache-0.4.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:333ddb9031d2704a301ee3e506dc46b1fe5f294ec198ed6435ad5b6a085facfe", size = 208182, upload-time = "2025-10-08T19:47:11.319Z" }, + { url = "https://files.pythonhosted.org/packages/c6/0c/cd762dd011a9287389a6a3eb43aa30207bde253610cca06824aeabfe9653/propcache-0.4.1-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:fd0858c20f078a32cf55f7e81473d96dcf3b93fd2ccdb3d40fdf54b8573df3af", size = 211215, upload-time = "2025-10-08T19:47:13.146Z" }, + { url = "https://files.pythonhosted.org/packages/30/3e/49861e90233ba36890ae0ca4c660e95df565b2cd15d4a68556ab5865974e/propcache-0.4.1-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:678ae89ebc632c5c204c794f8dab2837c5f159aeb59e6ed0539500400577298c", size = 218112, upload-time = "2025-10-08T19:47:14.913Z" }, + { url = "https://files.pythonhosted.org/packages/f1/8b/544bc867e24e1bd48f3118cecd3b05c694e160a168478fa28770f22fd094/propcache-0.4.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:d472aeb4fbf9865e0c6d622d7f4d54a4e101a89715d8904282bb5f9a2f476c3f", size = 204442, upload-time = "2025-10-08T19:47:16.277Z" }, + { url = "https://files.pythonhosted.org/packages/50/a6/4282772fd016a76d3e5c0df58380a5ea64900afd836cec2c2f662d1b9bb3/propcache-0.4.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:4d3df5fa7e36b3225954fba85589da77a0fe6a53e3976de39caf04a0db4c36f1", size = 199398, upload-time = "2025-10-08T19:47:17.962Z" }, + { url = "https://files.pythonhosted.org/packages/3e/ec/d8a7cd406ee1ddb705db2139f8a10a8a427100347bd698e7014351c7af09/propcache-0.4.1-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:ee17f18d2498f2673e432faaa71698032b0127ebf23ae5974eeaf806c279df24", size = 196920, upload-time = "2025-10-08T19:47:19.355Z" }, + { url = "https://files.pythonhosted.org/packages/f6/6c/f38ab64af3764f431e359f8baf9e0a21013e24329e8b85d2da32e8ed07ca/propcache-0.4.1-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:580e97762b950f993ae618e167e7be9256b8353c2dcd8b99ec100eb50f5286aa", size = 203748, upload-time = "2025-10-08T19:47:21.338Z" }, + { url = "https://files.pythonhosted.org/packages/d6/e3/fa846bd70f6534d647886621388f0a265254d30e3ce47e5c8e6e27dbf153/propcache-0.4.1-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:501d20b891688eb8e7aa903021f0b72d5a55db40ffaab27edefd1027caaafa61", size = 205877, upload-time = "2025-10-08T19:47:23.059Z" }, + { url = "https://files.pythonhosted.org/packages/e2/39/8163fc6f3133fea7b5f2827e8eba2029a0277ab2c5beee6c1db7b10fc23d/propcache-0.4.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:9a0bd56e5b100aef69bd8562b74b46254e7c8812918d3baa700c8a8009b0af66", size = 199437, upload-time = "2025-10-08T19:47:24.445Z" }, + { url = "https://files.pythonhosted.org/packages/93/89/caa9089970ca49c7c01662bd0eeedfe85494e863e8043565aeb6472ce8fe/propcache-0.4.1-cp313-cp313-win32.whl", hash = "sha256:bcc9aaa5d80322bc2fb24bb7accb4a30f81e90ab8d6ba187aec0744bc302ad81", size = 37586, upload-time = "2025-10-08T19:47:25.736Z" }, + { url = "https://files.pythonhosted.org/packages/f5/ab/f76ec3c3627c883215b5c8080debb4394ef5a7a29be811f786415fc1e6fd/propcache-0.4.1-cp313-cp313-win_amd64.whl", hash = "sha256:381914df18634f5494334d201e98245c0596067504b9372d8cf93f4bb23e025e", size = 40790, upload-time = "2025-10-08T19:47:26.847Z" }, + { url = "https://files.pythonhosted.org/packages/59/1b/e71ae98235f8e2ba5004d8cb19765a74877abf189bc53fc0c80d799e56c3/propcache-0.4.1-cp313-cp313-win_arm64.whl", hash = "sha256:8873eb4460fd55333ea49b7d189749ecf6e55bf85080f11b1c4530ed3034cba1", size = 37158, upload-time = "2025-10-08T19:47:27.961Z" }, + { url = "https://files.pythonhosted.org/packages/83/ce/a31bbdfc24ee0dcbba458c8175ed26089cf109a55bbe7b7640ed2470cfe9/propcache-0.4.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:92d1935ee1f8d7442da9c0c4fa7ac20d07e94064184811b685f5c4fada64553b", size = 81451, upload-time = "2025-10-08T19:47:29.445Z" }, + { url = "https://files.pythonhosted.org/packages/25/9c/442a45a470a68456e710d96cacd3573ef26a1d0a60067e6a7d5e655621ed/propcache-0.4.1-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:473c61b39e1460d386479b9b2f337da492042447c9b685f28be4f74d3529e566", size = 46374, upload-time = "2025-10-08T19:47:30.579Z" }, + { url = "https://files.pythonhosted.org/packages/f4/bf/b1d5e21dbc3b2e889ea4327044fb16312a736d97640fb8b6aa3f9c7b3b65/propcache-0.4.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:c0ef0aaafc66fbd87842a3fe3902fd889825646bc21149eafe47be6072725835", size = 48396, upload-time = "2025-10-08T19:47:31.79Z" }, + { url = "https://files.pythonhosted.org/packages/f4/04/5b4c54a103d480e978d3c8a76073502b18db0c4bc17ab91b3cb5092ad949/propcache-0.4.1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f95393b4d66bfae908c3ca8d169d5f79cd65636ae15b5e7a4f6e67af675adb0e", size = 275950, upload-time = "2025-10-08T19:47:33.481Z" }, + { url = "https://files.pythonhosted.org/packages/b4/c1/86f846827fb969c4b78b0af79bba1d1ea2156492e1b83dea8b8a6ae27395/propcache-0.4.1-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:c07fda85708bc48578467e85099645167a955ba093be0a2dcba962195676e859", size = 273856, upload-time = "2025-10-08T19:47:34.906Z" }, + { url = "https://files.pythonhosted.org/packages/36/1d/fc272a63c8d3bbad6878c336c7a7dea15e8f2d23a544bda43205dfa83ada/propcache-0.4.1-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:af223b406d6d000830c6f65f1e6431783fc3f713ba3e6cc8c024d5ee96170a4b", size = 280420, upload-time = "2025-10-08T19:47:36.338Z" }, + { url = "https://files.pythonhosted.org/packages/07/0c/01f2219d39f7e53d52e5173bcb09c976609ba30209912a0680adfb8c593a/propcache-0.4.1-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a78372c932c90ee474559c5ddfffd718238e8673c340dc21fe45c5b8b54559a0", size = 263254, upload-time = "2025-10-08T19:47:37.692Z" }, + { url = "https://files.pythonhosted.org/packages/2d/18/cd28081658ce597898f0c4d174d4d0f3c5b6d4dc27ffafeef835c95eb359/propcache-0.4.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:564d9f0d4d9509e1a870c920a89b2fec951b44bf5ba7d537a9e7c1ccec2c18af", size = 261205, upload-time = "2025-10-08T19:47:39.659Z" }, + { url = "https://files.pythonhosted.org/packages/7a/71/1f9e22eb8b8316701c2a19fa1f388c8a3185082607da8e406a803c9b954e/propcache-0.4.1-cp313-cp313t-musllinux_1_2_armv7l.whl", hash = "sha256:17612831fda0138059cc5546f4d12a2aacfb9e47068c06af35c400ba58ba7393", size = 247873, upload-time = "2025-10-08T19:47:41.084Z" }, + { url = "https://files.pythonhosted.org/packages/4a/65/3d4b61f36af2b4eddba9def857959f1016a51066b4f1ce348e0cf7881f58/propcache-0.4.1-cp313-cp313t-musllinux_1_2_ppc64le.whl", hash = "sha256:41a89040cb10bd345b3c1a873b2bf36413d48da1def52f268a055f7398514874", size = 262739, upload-time = "2025-10-08T19:47:42.51Z" }, + { url = "https://files.pythonhosted.org/packages/2a/42/26746ab087faa77c1c68079b228810436ccd9a5ce9ac85e2b7307195fd06/propcache-0.4.1-cp313-cp313t-musllinux_1_2_s390x.whl", hash = "sha256:e35b88984e7fa64aacecea39236cee32dd9bd8c55f57ba8a75cf2399553f9bd7", size = 263514, upload-time = "2025-10-08T19:47:43.927Z" }, + { url = "https://files.pythonhosted.org/packages/94/13/630690fe201f5502d2403dd3cfd451ed8858fe3c738ee88d095ad2ff407b/propcache-0.4.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:6f8b465489f927b0df505cbe26ffbeed4d6d8a2bbc61ce90eb074ff129ef0ab1", size = 257781, upload-time = "2025-10-08T19:47:45.448Z" }, + { url = "https://files.pythonhosted.org/packages/92/f7/1d4ec5841505f423469efbfc381d64b7b467438cd5a4bbcbb063f3b73d27/propcache-0.4.1-cp313-cp313t-win32.whl", hash = "sha256:2ad890caa1d928c7c2965b48f3a3815c853180831d0e5503d35cf00c472f4717", size = 41396, upload-time = "2025-10-08T19:47:47.202Z" }, + { url = "https://files.pythonhosted.org/packages/48/f0/615c30622316496d2cbbc29f5985f7777d3ada70f23370608c1d3e081c1f/propcache-0.4.1-cp313-cp313t-win_amd64.whl", hash = "sha256:f7ee0e597f495cf415bcbd3da3caa3bd7e816b74d0d52b8145954c5e6fd3ff37", size = 44897, upload-time = "2025-10-08T19:47:48.336Z" }, + { url = "https://files.pythonhosted.org/packages/fd/ca/6002e46eccbe0e33dcd4069ef32f7f1c9e243736e07adca37ae8c4830ec3/propcache-0.4.1-cp313-cp313t-win_arm64.whl", hash = "sha256:929d7cbe1f01bb7baffb33dc14eb5691c95831450a26354cd210a8155170c93a", size = 39789, upload-time = "2025-10-08T19:47:49.876Z" }, + { url = "https://files.pythonhosted.org/packages/8e/5c/bca52d654a896f831b8256683457ceddd490ec18d9ec50e97dfd8fc726a8/propcache-0.4.1-cp314-cp314-macosx_10_13_universal2.whl", hash = "sha256:3f7124c9d820ba5548d431afb4632301acf965db49e666aa21c305cbe8c6de12", size = 78152, upload-time = "2025-10-08T19:47:51.051Z" }, + { url = "https://files.pythonhosted.org/packages/65/9b/03b04e7d82a5f54fb16113d839f5ea1ede58a61e90edf515f6577c66fa8f/propcache-0.4.1-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:c0d4b719b7da33599dfe3b22d3db1ef789210a0597bc650b7cee9c77c2be8c5c", size = 44869, upload-time = "2025-10-08T19:47:52.594Z" }, + { url = "https://files.pythonhosted.org/packages/b2/fa/89a8ef0468d5833a23fff277b143d0573897cf75bd56670a6d28126c7d68/propcache-0.4.1-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:9f302f4783709a78240ebc311b793f123328716a60911d667e0c036bc5dcbded", size = 46596, upload-time = "2025-10-08T19:47:54.073Z" }, + { url = "https://files.pythonhosted.org/packages/86/bd/47816020d337f4a746edc42fe8d53669965138f39ee117414c7d7a340cfe/propcache-0.4.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c80ee5802e3fb9ea37938e7eecc307fb984837091d5fd262bb37238b1ae97641", size = 206981, upload-time = "2025-10-08T19:47:55.715Z" }, + { url = "https://files.pythonhosted.org/packages/df/f6/c5fa1357cc9748510ee55f37173eb31bfde6d94e98ccd9e6f033f2fc06e1/propcache-0.4.1-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:ed5a841e8bb29a55fb8159ed526b26adc5bdd7e8bd7bf793ce647cb08656cdf4", size = 211490, upload-time = "2025-10-08T19:47:57.499Z" }, + { url = "https://files.pythonhosted.org/packages/80/1e/e5889652a7c4a3846683401a48f0f2e5083ce0ec1a8a5221d8058fbd1adf/propcache-0.4.1-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:55c72fd6ea2da4c318e74ffdf93c4fe4e926051133657459131a95c846d16d44", size = 215371, upload-time = "2025-10-08T19:47:59.317Z" }, + { url = "https://files.pythonhosted.org/packages/b2/f2/889ad4b2408f72fe1a4f6a19491177b30ea7bf1a0fd5f17050ca08cfc882/propcache-0.4.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:8326e144341460402713f91df60ade3c999d601e7eb5ff8f6f7862d54de0610d", size = 201424, upload-time = "2025-10-08T19:48:00.67Z" }, + { url = "https://files.pythonhosted.org/packages/27/73/033d63069b57b0812c8bd19f311faebeceb6ba31b8f32b73432d12a0b826/propcache-0.4.1-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:060b16ae65bc098da7f6d25bf359f1f31f688384858204fe5d652979e0015e5b", size = 197566, upload-time = "2025-10-08T19:48:02.604Z" }, + { url = "https://files.pythonhosted.org/packages/dc/89/ce24f3dc182630b4e07aa6d15f0ff4b14ed4b9955fae95a0b54c58d66c05/propcache-0.4.1-cp314-cp314-musllinux_1_2_armv7l.whl", hash = "sha256:89eb3fa9524f7bec9de6e83cf3faed9d79bffa560672c118a96a171a6f55831e", size = 193130, upload-time = "2025-10-08T19:48:04.499Z" }, + { url = "https://files.pythonhosted.org/packages/a9/24/ef0d5fd1a811fb5c609278d0209c9f10c35f20581fcc16f818da959fc5b4/propcache-0.4.1-cp314-cp314-musllinux_1_2_ppc64le.whl", hash = "sha256:dee69d7015dc235f526fe80a9c90d65eb0039103fe565776250881731f06349f", size = 202625, upload-time = "2025-10-08T19:48:06.213Z" }, + { url = "https://files.pythonhosted.org/packages/f5/02/98ec20ff5546f68d673df2f7a69e8c0d076b5abd05ca882dc7ee3a83653d/propcache-0.4.1-cp314-cp314-musllinux_1_2_s390x.whl", hash = "sha256:5558992a00dfd54ccbc64a32726a3357ec93825a418a401f5cc67df0ac5d9e49", size = 204209, upload-time = "2025-10-08T19:48:08.432Z" }, + { url = "https://files.pythonhosted.org/packages/a0/87/492694f76759b15f0467a2a93ab68d32859672b646aa8a04ce4864e7932d/propcache-0.4.1-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:c9b822a577f560fbd9554812526831712c1436d2c046cedee4c3796d3543b144", size = 197797, upload-time = "2025-10-08T19:48:09.968Z" }, + { url = "https://files.pythonhosted.org/packages/ee/36/66367de3575db1d2d3f3d177432bd14ee577a39d3f5d1b3d5df8afe3b6e2/propcache-0.4.1-cp314-cp314-win32.whl", hash = "sha256:ab4c29b49d560fe48b696cdcb127dd36e0bc2472548f3bf56cc5cb3da2b2984f", size = 38140, upload-time = "2025-10-08T19:48:11.232Z" }, + { url = "https://files.pythonhosted.org/packages/0c/2a/a758b47de253636e1b8aef181c0b4f4f204bf0dd964914fb2af90a95b49b/propcache-0.4.1-cp314-cp314-win_amd64.whl", hash = "sha256:5a103c3eb905fcea0ab98be99c3a9a5ab2de60228aa5aceedc614c0281cf6153", size = 41257, upload-time = "2025-10-08T19:48:12.707Z" }, + { url = "https://files.pythonhosted.org/packages/34/5e/63bd5896c3fec12edcbd6f12508d4890d23c265df28c74b175e1ef9f4f3b/propcache-0.4.1-cp314-cp314-win_arm64.whl", hash = "sha256:74c1fb26515153e482e00177a1ad654721bf9207da8a494a0c05e797ad27b992", size = 38097, upload-time = "2025-10-08T19:48:13.923Z" }, + { url = "https://files.pythonhosted.org/packages/99/85/9ff785d787ccf9bbb3f3106f79884a130951436f58392000231b4c737c80/propcache-0.4.1-cp314-cp314t-macosx_10_13_universal2.whl", hash = "sha256:824e908bce90fb2743bd6b59db36eb4f45cd350a39637c9f73b1c1ea66f5b75f", size = 81455, upload-time = "2025-10-08T19:48:15.16Z" }, + { url = "https://files.pythonhosted.org/packages/90/85/2431c10c8e7ddb1445c1f7c4b54d886e8ad20e3c6307e7218f05922cad67/propcache-0.4.1-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:c2b5e7db5328427c57c8e8831abda175421b709672f6cfc3d630c3b7e2146393", size = 46372, upload-time = "2025-10-08T19:48:16.424Z" }, + { url = "https://files.pythonhosted.org/packages/01/20/b0972d902472da9bcb683fa595099911f4d2e86e5683bcc45de60dd05dc3/propcache-0.4.1-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:6f6ff873ed40292cd4969ef5310179afd5db59fdf055897e282485043fc80ad0", size = 48411, upload-time = "2025-10-08T19:48:17.577Z" }, + { url = "https://files.pythonhosted.org/packages/e2/e3/7dc89f4f21e8f99bad3d5ddb3a3389afcf9da4ac69e3deb2dcdc96e74169/propcache-0.4.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:49a2dc67c154db2c1463013594c458881a069fcf98940e61a0569016a583020a", size = 275712, upload-time = "2025-10-08T19:48:18.901Z" }, + { url = "https://files.pythonhosted.org/packages/20/67/89800c8352489b21a8047c773067644e3897f02ecbbd610f4d46b7f08612/propcache-0.4.1-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:005f08e6a0529984491e37d8dbc3dd86f84bd78a8ceb5fa9a021f4c48d4984be", size = 273557, upload-time = "2025-10-08T19:48:20.762Z" }, + { url = "https://files.pythonhosted.org/packages/e2/a1/b52b055c766a54ce6d9c16d9aca0cad8059acd9637cdf8aa0222f4a026ef/propcache-0.4.1-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:5c3310452e0d31390da9035c348633b43d7e7feb2e37be252be6da45abd1abcc", size = 280015, upload-time = "2025-10-08T19:48:22.592Z" }, + { url = "https://files.pythonhosted.org/packages/48/c8/33cee30bd890672c63743049f3c9e4be087e6780906bfc3ec58528be59c1/propcache-0.4.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:4c3c70630930447f9ef1caac7728c8ad1c56bc5015338b20fed0d08ea2480b3a", size = 262880, upload-time = "2025-10-08T19:48:23.947Z" }, + { url = "https://files.pythonhosted.org/packages/0c/b1/8f08a143b204b418285c88b83d00edbd61afbc2c6415ffafc8905da7038b/propcache-0.4.1-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:8e57061305815dfc910a3634dcf584f08168a8836e6999983569f51a8544cd89", size = 260938, upload-time = "2025-10-08T19:48:25.656Z" }, + { url = "https://files.pythonhosted.org/packages/cf/12/96e4664c82ca2f31e1c8dff86afb867348979eb78d3cb8546a680287a1e9/propcache-0.4.1-cp314-cp314t-musllinux_1_2_armv7l.whl", hash = "sha256:521a463429ef54143092c11a77e04056dd00636f72e8c45b70aaa3140d639726", size = 247641, upload-time = "2025-10-08T19:48:27.207Z" }, + { url = "https://files.pythonhosted.org/packages/18/ed/e7a9cfca28133386ba52278136d42209d3125db08d0a6395f0cba0c0285c/propcache-0.4.1-cp314-cp314t-musllinux_1_2_ppc64le.whl", hash = "sha256:120c964da3fdc75e3731aa392527136d4ad35868cc556fd09bb6d09172d9a367", size = 262510, upload-time = "2025-10-08T19:48:28.65Z" }, + { url = "https://files.pythonhosted.org/packages/f5/76/16d8bf65e8845dd62b4e2b57444ab81f07f40caa5652b8969b87ddcf2ef6/propcache-0.4.1-cp314-cp314t-musllinux_1_2_s390x.whl", hash = "sha256:d8f353eb14ee3441ee844ade4277d560cdd68288838673273b978e3d6d2c8f36", size = 263161, upload-time = "2025-10-08T19:48:30.133Z" }, + { url = "https://files.pythonhosted.org/packages/e7/70/c99e9edb5d91d5ad8a49fa3c1e8285ba64f1476782fed10ab251ff413ba1/propcache-0.4.1-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:ab2943be7c652f09638800905ee1bab2c544e537edb57d527997a24c13dc1455", size = 257393, upload-time = "2025-10-08T19:48:31.567Z" }, + { url = "https://files.pythonhosted.org/packages/08/02/87b25304249a35c0915d236575bc3574a323f60b47939a2262b77632a3ee/propcache-0.4.1-cp314-cp314t-win32.whl", hash = "sha256:05674a162469f31358c30bcaa8883cb7829fa3110bf9c0991fe27d7896c42d85", size = 42546, upload-time = "2025-10-08T19:48:32.872Z" }, + { url = "https://files.pythonhosted.org/packages/cb/ef/3c6ecf8b317aa982f309835e8f96987466123c6e596646d4e6a1dfcd080f/propcache-0.4.1-cp314-cp314t-win_amd64.whl", hash = "sha256:990f6b3e2a27d683cb7602ed6c86f15ee6b43b1194736f9baaeb93d0016633b1", size = 46259, upload-time = "2025-10-08T19:48:34.226Z" }, + { url = "https://files.pythonhosted.org/packages/c4/2d/346e946d4951f37eca1e4f55be0f0174c52cd70720f84029b02f296f4a38/propcache-0.4.1-cp314-cp314t-win_arm64.whl", hash = "sha256:ecef2343af4cc68e05131e45024ba34f6095821988a9d0a02aa7c73fcc448aa9", size = 40428, upload-time = "2025-10-08T19:48:35.441Z" }, + { url = "https://files.pythonhosted.org/packages/5b/5a/bc7b4a4ef808fa59a816c17b20c4bef6884daebbdf627ff2a161da67da19/propcache-0.4.1-py3-none-any.whl", hash = "sha256:af2a6052aeb6cf17d3e46ee169099044fd8224cbaf75c76a2ef596e8163e2237", size = 13305, upload-time = "2025-10-08T19:49:00.792Z" }, ] [[package]] @@ -11143,95 +9499,590 @@ name = "proto-plus" version = "1.26.1" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "protobuf" }, + { name = "protobuf", version = "4.25.8", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-orb') or (sys_platform == 'linux' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, + { name = "protobuf", version = "5.29.5", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (sys_platform != 'linux' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/f4/ac/87285f15f7cce6d4a008f33f1757fb5a13611ea8914eb58c3d0d26243468/proto_plus-1.26.1.tar.gz", hash = "sha256:21a515a4c4c0088a773899e23c7bbade3d18f9c66c73edd4c7ee3816bc96a012", size = 56142, upload-time = "2025-03-10T15:54:38.843Z" } wheels = [ { url = "https://files.pythonhosted.org/packages/4e/6d/280c4c2ce28b1593a19ad5239c8b826871fc6ec275c21afc8e1820108039/proto_plus-1.26.1-py3-none-any.whl", hash = "sha256:13285478c2dcf2abb829db158e1047e2f1e8d63a077d94263c2b88b043c75a66", size = 50163, upload-time = "2025-03-10T15:54:37.335Z" }, ] - -[[package]] -name = "protobuf" -version = "4.25.8" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/df/01/34c8d2b6354906d728703cb9d546a0e534de479e25f1b581e4094c4a85cc/protobuf-4.25.8.tar.gz", hash = "sha256:6135cf8affe1fc6f76cced2641e4ea8d3e59518d1f24ae41ba97bcad82d397cd", size = 380920, upload-time = "2025-05-28T14:22:25.153Z" } + +[[package]] +name = "protobuf" +version = "4.25.8" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", +] +sdist = { url = "https://files.pythonhosted.org/packages/df/01/34c8d2b6354906d728703cb9d546a0e534de479e25f1b581e4094c4a85cc/protobuf-4.25.8.tar.gz", hash = "sha256:6135cf8affe1fc6f76cced2641e4ea8d3e59518d1f24ae41ba97bcad82d397cd", size = 380920, upload-time = "2025-05-28T14:22:25.153Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/45/ff/05f34305fe6b85bbfbecbc559d423a5985605cad5eda4f47eae9e9c9c5c5/protobuf-4.25.8-cp310-abi3-win32.whl", hash = "sha256:504435d831565f7cfac9f0714440028907f1975e4bed228e58e72ecfff58a1e0", size = 392745, upload-time = "2025-05-28T14:22:10.524Z" }, + { url = "https://files.pythonhosted.org/packages/08/35/8b8a8405c564caf4ba835b1fdf554da869954712b26d8f2a98c0e434469b/protobuf-4.25.8-cp310-abi3-win_amd64.whl", hash = "sha256:bd551eb1fe1d7e92c1af1d75bdfa572eff1ab0e5bf1736716814cdccdb2360f9", size = 413736, upload-time = "2025-05-28T14:22:13.156Z" }, + { url = "https://files.pythonhosted.org/packages/28/d7/ab27049a035b258dab43445eb6ec84a26277b16105b277cbe0a7698bdc6c/protobuf-4.25.8-cp37-abi3-macosx_10_9_universal2.whl", hash = "sha256:ca809b42f4444f144f2115c4c1a747b9a404d590f18f37e9402422033e464e0f", size = 394537, upload-time = "2025-05-28T14:22:14.768Z" }, + { url = "https://files.pythonhosted.org/packages/bd/6d/a4a198b61808dd3d1ee187082ccc21499bc949d639feb948961b48be9a7e/protobuf-4.25.8-cp37-abi3-manylinux2014_aarch64.whl", hash = "sha256:9ad7ef62d92baf5a8654fbb88dac7fa5594cfa70fd3440488a5ca3bfc6d795a7", size = 294005, upload-time = "2025-05-28T14:22:16.052Z" }, + { url = "https://files.pythonhosted.org/packages/d6/c6/c9deaa6e789b6fc41b88ccbdfe7a42d2b82663248b715f55aa77fbc00724/protobuf-4.25.8-cp37-abi3-manylinux2014_x86_64.whl", hash = "sha256:83e6e54e93d2b696a92cad6e6efc924f3850f82b52e1563778dfab8b355101b0", size = 294924, upload-time = "2025-05-28T14:22:17.105Z" }, + { url = "https://files.pythonhosted.org/packages/0c/c1/6aece0ab5209981a70cd186f164c133fdba2f51e124ff92b73de7fd24d78/protobuf-4.25.8-py3-none-any.whl", hash = "sha256:15a0af558aa3b13efef102ae6e4f3efac06f1eea11afb3a57db2901447d9fb59", size = 156757, upload-time = "2025-05-28T14:22:24.135Z" }, +] + +[[package]] +name = "protobuf" +version = "5.29.5" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", +] +sdist = { url = "https://files.pythonhosted.org/packages/43/29/d09e70352e4e88c9c7a198d5645d7277811448d76c23b00345670f7c8a38/protobuf-5.29.5.tar.gz", hash = "sha256:bc1463bafd4b0929216c35f437a8e28731a2b7fe3d98bb77a600efced5a15c84", size = 425226, upload-time = "2025-05-28T23:51:59.82Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/45/ff/05f34305fe6b85bbfbecbc559d423a5985605cad5eda4f47eae9e9c9c5c5/protobuf-4.25.8-cp310-abi3-win32.whl", hash = "sha256:504435d831565f7cfac9f0714440028907f1975e4bed228e58e72ecfff58a1e0", size = 392745, upload-time = "2025-05-28T14:22:10.524Z" }, - { url = "https://files.pythonhosted.org/packages/08/35/8b8a8405c564caf4ba835b1fdf554da869954712b26d8f2a98c0e434469b/protobuf-4.25.8-cp310-abi3-win_amd64.whl", hash = "sha256:bd551eb1fe1d7e92c1af1d75bdfa572eff1ab0e5bf1736716814cdccdb2360f9", size = 413736, upload-time = "2025-05-28T14:22:13.156Z" }, - { url = "https://files.pythonhosted.org/packages/28/d7/ab27049a035b258dab43445eb6ec84a26277b16105b277cbe0a7698bdc6c/protobuf-4.25.8-cp37-abi3-macosx_10_9_universal2.whl", hash = "sha256:ca809b42f4444f144f2115c4c1a747b9a404d590f18f37e9402422033e464e0f", size = 394537, upload-time = "2025-05-28T14:22:14.768Z" }, - { url = "https://files.pythonhosted.org/packages/bd/6d/a4a198b61808dd3d1ee187082ccc21499bc949d639feb948961b48be9a7e/protobuf-4.25.8-cp37-abi3-manylinux2014_aarch64.whl", hash = "sha256:9ad7ef62d92baf5a8654fbb88dac7fa5594cfa70fd3440488a5ca3bfc6d795a7", size = 294005, upload-time = "2025-05-28T14:22:16.052Z" }, - { url = "https://files.pythonhosted.org/packages/d6/c6/c9deaa6e789b6fc41b88ccbdfe7a42d2b82663248b715f55aa77fbc00724/protobuf-4.25.8-cp37-abi3-manylinux2014_x86_64.whl", hash = "sha256:83e6e54e93d2b696a92cad6e6efc924f3850f82b52e1563778dfab8b355101b0", size = 294924, upload-time = "2025-05-28T14:22:17.105Z" }, - { url = "https://files.pythonhosted.org/packages/0c/c1/6aece0ab5209981a70cd186f164c133fdba2f51e124ff92b73de7fd24d78/protobuf-4.25.8-py3-none-any.whl", hash = "sha256:15a0af558aa3b13efef102ae6e4f3efac06f1eea11afb3a57db2901447d9fb59", size = 156757, upload-time = "2025-05-28T14:22:24.135Z" }, + { url = "https://files.pythonhosted.org/packages/5f/11/6e40e9fc5bba02988a214c07cf324595789ca7820160bfd1f8be96e48539/protobuf-5.29.5-cp310-abi3-win32.whl", hash = "sha256:3f1c6468a2cfd102ff4703976138844f78ebd1fb45f49011afc5139e9e283079", size = 422963, upload-time = "2025-05-28T23:51:41.204Z" }, + { url = "https://files.pythonhosted.org/packages/81/7f/73cefb093e1a2a7c3ffd839e6f9fcafb7a427d300c7f8aef9c64405d8ac6/protobuf-5.29.5-cp310-abi3-win_amd64.whl", hash = "sha256:3f76e3a3675b4a4d867b52e4a5f5b78a2ef9565549d4037e06cf7b0942b1d3fc", size = 434818, upload-time = "2025-05-28T23:51:44.297Z" }, + { url = "https://files.pythonhosted.org/packages/dd/73/10e1661c21f139f2c6ad9b23040ff36fee624310dc28fba20d33fdae124c/protobuf-5.29.5-cp38-abi3-macosx_10_9_universal2.whl", hash = "sha256:e38c5add5a311f2a6eb0340716ef9b039c1dfa428b28f25a7838ac329204a671", size = 418091, upload-time = "2025-05-28T23:51:45.907Z" }, + { url = "https://files.pythonhosted.org/packages/6c/04/98f6f8cf5b07ab1294c13f34b4e69b3722bb609c5b701d6c169828f9f8aa/protobuf-5.29.5-cp38-abi3-manylinux2014_aarch64.whl", hash = "sha256:fa18533a299d7ab6c55a238bf8629311439995f2e7eca5caaff08663606e9015", size = 319824, upload-time = "2025-05-28T23:51:47.545Z" }, + { url = "https://files.pythonhosted.org/packages/85/e4/07c80521879c2d15f321465ac24c70efe2381378c00bf5e56a0f4fbac8cd/protobuf-5.29.5-cp38-abi3-manylinux2014_x86_64.whl", hash = "sha256:63848923da3325e1bf7e9003d680ce6e14b07e55d0473253a690c3a8b8fd6e61", size = 319942, upload-time = "2025-05-28T23:51:49.11Z" }, + { url = "https://files.pythonhosted.org/packages/7e/cc/7e77861000a0691aeea8f4566e5d3aa716f2b1dece4a24439437e41d3d25/protobuf-5.29.5-py3-none-any.whl", hash = "sha256:6cf42630262c59b2d8de33954443d94b746c952b01434fc58a417fdbd2e84bd5", size = 172823, upload-time = "2025-05-28T23:51:58.157Z" }, ] [[package]] name = "psutil" -version = "7.0.0" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/2a/80/336820c1ad9286a4ded7e845b2eccfcb27851ab8ac6abece774a6ff4d3de/psutil-7.0.0.tar.gz", hash = "sha256:7be9c3eba38beccb6495ea33afd982a44074b78f28c434a1f51cc07fd315c456", size = 497003, upload-time = "2025-02-13T21:54:07.946Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/ed/e6/2d26234410f8b8abdbf891c9da62bee396583f713fb9f3325a4760875d22/psutil-7.0.0-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:101d71dc322e3cffd7cea0650b09b3d08b8e7c4109dd6809fe452dfd00e58b25", size = 238051, upload-time = "2025-02-13T21:54:12.36Z" }, - { url = "https://files.pythonhosted.org/packages/04/8b/30f930733afe425e3cbfc0e1468a30a18942350c1a8816acfade80c005c4/psutil-7.0.0-cp36-abi3-macosx_11_0_arm64.whl", hash = "sha256:39db632f6bb862eeccf56660871433e111b6ea58f2caea825571951d4b6aa3da", size = 239535, upload-time = "2025-02-13T21:54:16.07Z" }, - { url = "https://files.pythonhosted.org/packages/2a/ed/d362e84620dd22876b55389248e522338ed1bf134a5edd3b8231d7207f6d/psutil-7.0.0-cp36-abi3-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1fcee592b4c6f146991ca55919ea3d1f8926497a713ed7faaf8225e174581e91", size = 275004, upload-time = "2025-02-13T21:54:18.662Z" }, - { url = "https://files.pythonhosted.org/packages/bf/b9/b0eb3f3cbcb734d930fdf839431606844a825b23eaf9a6ab371edac8162c/psutil-7.0.0-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4b1388a4f6875d7e2aff5c4ca1cc16c545ed41dd8bb596cefea80111db353a34", size = 277986, upload-time = "2025-02-13T21:54:21.811Z" }, - { url = "https://files.pythonhosted.org/packages/eb/a2/709e0fe2f093556c17fbafda93ac032257242cabcc7ff3369e2cb76a97aa/psutil-7.0.0-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a5f098451abc2828f7dc6b58d44b532b22f2088f4999a937557b603ce72b1993", size = 279544, upload-time = "2025-02-13T21:54:24.68Z" }, - { url = "https://files.pythonhosted.org/packages/50/e6/eecf58810b9d12e6427369784efe814a1eec0f492084ce8eb8f4d89d6d61/psutil-7.0.0-cp37-abi3-win32.whl", hash = "sha256:ba3fcef7523064a6c9da440fc4d6bd07da93ac726b5733c29027d7dc95b39d99", size = 241053, upload-time = "2025-02-13T21:54:34.31Z" }, - { url = "https://files.pythonhosted.org/packages/50/1b/6921afe68c74868b4c9fa424dad3be35b095e16687989ebbb50ce4fceb7c/psutil-7.0.0-cp37-abi3-win_amd64.whl", hash = "sha256:4cf3d4eb1aa9b348dec30105c55cd9b7d4629285735a102beb4441e38db90553", size = 244885, upload-time = "2025-02-13T21:54:37.486Z" }, +version = "7.1.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/e1/88/bdd0a41e5857d5d703287598cbf08dad90aed56774ea52ae071bae9071b6/psutil-7.1.3.tar.gz", hash = "sha256:6c86281738d77335af7aec228328e944b30930899ea760ecf33a4dba66be5e74", size = 489059, upload-time = "2025-11-02T12:25:54.619Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/bd/93/0c49e776b8734fef56ec9c5c57f923922f2cf0497d62e0f419465f28f3d0/psutil-7.1.3-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:0005da714eee687b4b8decd3d6cc7c6db36215c9e74e5ad2264b90c3df7d92dc", size = 239751, upload-time = "2025-11-02T12:25:58.161Z" }, + { url = "https://files.pythonhosted.org/packages/6f/8d/b31e39c769e70780f007969815195a55c81a63efebdd4dbe9e7a113adb2f/psutil-7.1.3-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:19644c85dcb987e35eeeaefdc3915d059dac7bd1167cdcdbf27e0ce2df0c08c0", size = 240368, upload-time = "2025-11-02T12:26:00.491Z" }, + { url = "https://files.pythonhosted.org/packages/62/61/23fd4acc3c9eebbf6b6c78bcd89e5d020cfde4acf0a9233e9d4e3fa698b4/psutil-7.1.3-cp313-cp313t-manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:95ef04cf2e5ba0ab9eaafc4a11eaae91b44f4ef5541acd2ee91d9108d00d59a7", size = 287134, upload-time = "2025-11-02T12:26:02.613Z" }, + { url = "https://files.pythonhosted.org/packages/30/1c/f921a009ea9ceb51aa355cb0cc118f68d354db36eae18174bab63affb3e6/psutil-7.1.3-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1068c303be3a72f8e18e412c5b2a8f6d31750fb152f9cb106b54090296c9d251", size = 289904, upload-time = "2025-11-02T12:26:05.207Z" }, + { url = "https://files.pythonhosted.org/packages/a6/82/62d68066e13e46a5116df187d319d1724b3f437ddd0f958756fc052677f4/psutil-7.1.3-cp313-cp313t-win_amd64.whl", hash = "sha256:18349c5c24b06ac5612c0428ec2a0331c26443d259e2a0144a9b24b4395b58fa", size = 249642, upload-time = "2025-11-02T12:26:07.447Z" }, + { url = "https://files.pythonhosted.org/packages/df/ad/c1cd5fe965c14a0392112f68362cfceb5230819dbb5b1888950d18a11d9f/psutil-7.1.3-cp313-cp313t-win_arm64.whl", hash = "sha256:c525ffa774fe4496282fb0b1187725793de3e7c6b29e41562733cae9ada151ee", size = 245518, upload-time = "2025-11-02T12:26:09.719Z" }, + { url = "https://files.pythonhosted.org/packages/2e/bb/6670bded3e3236eb4287c7bcdc167e9fae6e1e9286e437f7111caed2f909/psutil-7.1.3-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:b403da1df4d6d43973dc004d19cee3b848e998ae3154cc8097d139b77156c353", size = 239843, upload-time = "2025-11-02T12:26:11.968Z" }, + { url = "https://files.pythonhosted.org/packages/b8/66/853d50e75a38c9a7370ddbeefabdd3d3116b9c31ef94dc92c6729bc36bec/psutil-7.1.3-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:ad81425efc5e75da3f39b3e636293360ad8d0b49bed7df824c79764fb4ba9b8b", size = 240369, upload-time = "2025-11-02T12:26:14.358Z" }, + { url = "https://files.pythonhosted.org/packages/41/bd/313aba97cb5bfb26916dc29cf0646cbe4dd6a89ca69e8c6edce654876d39/psutil-7.1.3-cp314-cp314t-manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:8f33a3702e167783a9213db10ad29650ebf383946e91bc77f28a5eb083496bc9", size = 288210, upload-time = "2025-11-02T12:26:16.699Z" }, + { url = "https://files.pythonhosted.org/packages/c2/fa/76e3c06e760927a0cfb5705eb38164254de34e9bd86db656d4dbaa228b04/psutil-7.1.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:fac9cd332c67f4422504297889da5ab7e05fd11e3c4392140f7370f4208ded1f", size = 291182, upload-time = "2025-11-02T12:26:18.848Z" }, + { url = "https://files.pythonhosted.org/packages/0f/1d/5774a91607035ee5078b8fd747686ebec28a962f178712de100d00b78a32/psutil-7.1.3-cp314-cp314t-win_amd64.whl", hash = "sha256:3792983e23b69843aea49c8f5b8f115572c5ab64c153bada5270086a2123c7e7", size = 250466, upload-time = "2025-11-02T12:26:21.183Z" }, + { url = "https://files.pythonhosted.org/packages/00/ca/e426584bacb43a5cb1ac91fae1937f478cd8fbe5e4ff96574e698a2c77cd/psutil-7.1.3-cp314-cp314t-win_arm64.whl", hash = "sha256:31d77fcedb7529f27bb3a0472bea9334349f9a04160e8e6e5020f22c59893264", size = 245756, upload-time = "2025-11-02T12:26:23.148Z" }, + { url = "https://files.pythonhosted.org/packages/ef/94/46b9154a800253e7ecff5aaacdf8ebf43db99de4a2dfa18575b02548654e/psutil-7.1.3-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:2bdbcd0e58ca14996a42adf3621a6244f1bb2e2e528886959c72cf1e326677ab", size = 238359, upload-time = "2025-11-02T12:26:25.284Z" }, + { url = "https://files.pythonhosted.org/packages/68/3a/9f93cff5c025029a36d9a92fef47220ab4692ee7f2be0fba9f92813d0cb8/psutil-7.1.3-cp36-abi3-macosx_11_0_arm64.whl", hash = "sha256:bc31fa00f1fbc3c3802141eede66f3a2d51d89716a194bf2cd6fc68310a19880", size = 239171, upload-time = "2025-11-02T12:26:27.23Z" }, + { url = "https://files.pythonhosted.org/packages/ce/b1/5f49af514f76431ba4eea935b8ad3725cdeb397e9245ab919dbc1d1dc20f/psutil-7.1.3-cp36-abi3-manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:3bb428f9f05c1225a558f53e30ccbad9930b11c3fc206836242de1091d3e7dd3", size = 263261, upload-time = "2025-11-02T12:26:29.48Z" }, + { url = "https://files.pythonhosted.org/packages/e0/95/992c8816a74016eb095e73585d747e0a8ea21a061ed3689474fabb29a395/psutil-7.1.3-cp36-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:56d974e02ca2c8eb4812c3f76c30e28836fffc311d55d979f1465c1feeb2b68b", size = 264635, upload-time = "2025-11-02T12:26:31.74Z" }, + { url = "https://files.pythonhosted.org/packages/55/4c/c3ed1a622b6ae2fd3c945a366e64eb35247a31e4db16cf5095e269e8eb3c/psutil-7.1.3-cp37-abi3-win_amd64.whl", hash = "sha256:f39c2c19fe824b47484b96f9692932248a54c43799a84282cfe58d05a6449efd", size = 247633, upload-time = "2025-11-02T12:26:33.887Z" }, + { url = "https://files.pythonhosted.org/packages/c9/ad/33b2ccec09bf96c2b2ef3f9a6f66baac8253d7565d8839e024a6b905d45d/psutil-7.1.3-cp37-abi3-win_arm64.whl", hash = "sha256:bd0d69cee829226a761e92f28140bec9a5ee9d5b4fb4b0cc589068dbfff559b1", size = 244608, upload-time = "2025-11-02T12:26:36.136Z" }, ] [[package]] name = "psycopg2-binary" -version = "2.9.10" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/cb/0e/bdc8274dc0585090b4e3432267d7be4dfbfd8971c0fa59167c711105a6bf/psycopg2-binary-2.9.10.tar.gz", hash = "sha256:4b3df0e6990aa98acda57d983942eff13d824135fe2250e6522edaa782a06de2", size = 385764, upload-time = "2024-10-16T11:24:58.126Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/7a/81/331257dbf2801cdb82105306042f7a1637cc752f65f2bb688188e0de5f0b/psycopg2_binary-2.9.10-cp310-cp310-macosx_12_0_x86_64.whl", hash = "sha256:0ea8e3d0ae83564f2fc554955d327fa081d065c8ca5cc6d2abb643e2c9c1200f", size = 3043397, upload-time = "2024-10-16T11:18:58.647Z" }, - { url = "https://files.pythonhosted.org/packages/e7/9a/7f4f2f031010bbfe6a02b4a15c01e12eb6b9b7b358ab33229f28baadbfc1/psycopg2_binary-2.9.10-cp310-cp310-macosx_14_0_arm64.whl", hash = "sha256:3e9c76f0ac6f92ecfc79516a8034a544926430f7b080ec5a0537bca389ee0906", size = 3274806, upload-time = "2024-10-16T11:19:03.935Z" }, - { url = "https://files.pythonhosted.org/packages/e5/57/8ddd4b374fa811a0b0a0f49b6abad1cde9cb34df73ea3348cc283fcd70b4/psycopg2_binary-2.9.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ad26b467a405c798aaa1458ba09d7e2b6e5f96b1ce0ac15d82fd9f95dc38a92", size = 2851361, upload-time = "2024-10-16T11:19:07.277Z" }, - { url = "https://files.pythonhosted.org/packages/f9/66/d1e52c20d283f1f3a8e7e5c1e06851d432f123ef57b13043b4f9b21ffa1f/psycopg2_binary-2.9.10-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:270934a475a0e4b6925b5f804e3809dd5f90f8613621d062848dd82f9cd62007", size = 3080836, upload-time = "2024-10-16T11:19:11.033Z" }, - { url = "https://files.pythonhosted.org/packages/a0/cb/592d44a9546aba78f8a1249021fe7c59d3afb8a0ba51434d6610cc3462b6/psycopg2_binary-2.9.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:48b338f08d93e7be4ab2b5f1dbe69dc5e9ef07170fe1f86514422076d9c010d0", size = 3264552, upload-time = "2024-10-16T11:19:14.606Z" }, - { url = "https://files.pythonhosted.org/packages/64/33/c8548560b94b7617f203d7236d6cdf36fe1a5a3645600ada6efd79da946f/psycopg2_binary-2.9.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f4152f8f76d2023aac16285576a9ecd2b11a9895373a1f10fd9db54b3ff06b4", size = 3019789, upload-time = "2024-10-16T11:19:18.889Z" }, - { url = "https://files.pythonhosted.org/packages/b0/0e/c2da0db5bea88a3be52307f88b75eec72c4de62814cbe9ee600c29c06334/psycopg2_binary-2.9.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:32581b3020c72d7a421009ee1c6bf4a131ef5f0a968fab2e2de0c9d2bb4577f1", size = 2871776, upload-time = "2024-10-16T11:19:23.023Z" }, - { url = "https://files.pythonhosted.org/packages/15/d7/774afa1eadb787ddf41aab52d4c62785563e29949613c958955031408ae6/psycopg2_binary-2.9.10-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:2ce3e21dc3437b1d960521eca599d57408a695a0d3c26797ea0f72e834c7ffe5", size = 2820959, upload-time = "2024-10-16T11:19:26.906Z" }, - { url = "https://files.pythonhosted.org/packages/5e/ed/440dc3f5991a8c6172a1cde44850ead0e483a375277a1aef7cfcec00af07/psycopg2_binary-2.9.10-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:e984839e75e0b60cfe75e351db53d6db750b00de45644c5d1f7ee5d1f34a1ce5", size = 2919329, upload-time = "2024-10-16T11:19:30.027Z" }, - { url = "https://files.pythonhosted.org/packages/03/be/2cc8f4282898306732d2ae7b7378ae14e8df3c1231b53579efa056aae887/psycopg2_binary-2.9.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:3c4745a90b78e51d9ba06e2088a2fe0c693ae19cc8cb051ccda44e8df8a6eb53", size = 2957659, upload-time = "2024-10-16T11:19:32.864Z" }, - { url = "https://files.pythonhosted.org/packages/d0/12/fb8e4f485d98c570e00dad5800e9a2349cfe0f71a767c856857160d343a5/psycopg2_binary-2.9.10-cp310-cp310-win32.whl", hash = "sha256:e5720a5d25e3b99cd0dc5c8a440570469ff82659bb09431c1439b92caf184d3b", size = 1024605, upload-time = "2024-10-16T11:19:35.462Z" }, - { url = "https://files.pythonhosted.org/packages/22/4f/217cd2471ecf45d82905dd09085e049af8de6cfdc008b6663c3226dc1c98/psycopg2_binary-2.9.10-cp310-cp310-win_amd64.whl", hash = "sha256:3c18f74eb4386bf35e92ab2354a12c17e5eb4d9798e4c0ad3a00783eae7cd9f1", size = 1163817, upload-time = "2024-10-16T11:19:37.384Z" }, - { url = "https://files.pythonhosted.org/packages/9c/8f/9feb01291d0d7a0a4c6a6bab24094135c2b59c6a81943752f632c75896d6/psycopg2_binary-2.9.10-cp311-cp311-macosx_12_0_x86_64.whl", hash = "sha256:04392983d0bb89a8717772a193cfaac58871321e3ec69514e1c4e0d4957b5aff", size = 3043397, upload-time = "2024-10-16T11:19:40.033Z" }, - { url = "https://files.pythonhosted.org/packages/15/30/346e4683532011561cd9c8dfeac6a8153dd96452fee0b12666058ab7893c/psycopg2_binary-2.9.10-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:1a6784f0ce3fec4edc64e985865c17778514325074adf5ad8f80636cd029ef7c", size = 3274806, upload-time = "2024-10-16T11:19:43.5Z" }, - { url = "https://files.pythonhosted.org/packages/66/6e/4efebe76f76aee7ec99166b6c023ff8abdc4e183f7b70913d7c047701b79/psycopg2_binary-2.9.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b5f86c56eeb91dc3135b3fd8a95dc7ae14c538a2f3ad77a19645cf55bab1799c", size = 2851370, upload-time = "2024-10-16T11:19:46.986Z" }, - { url = "https://files.pythonhosted.org/packages/7f/fd/ff83313f86b50f7ca089b161b8e0a22bb3c319974096093cd50680433fdb/psycopg2_binary-2.9.10-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2b3d2491d4d78b6b14f76881905c7a8a8abcf974aad4a8a0b065273a0ed7a2cb", size = 3080780, upload-time = "2024-10-16T11:19:50.242Z" }, - { url = "https://files.pythonhosted.org/packages/e6/c4/bfadd202dcda8333a7ccafdc51c541dbdfce7c2c7cda89fa2374455d795f/psycopg2_binary-2.9.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2286791ececda3a723d1910441c793be44625d86d1a4e79942751197f4d30341", size = 3264583, upload-time = "2024-10-16T11:19:54.424Z" }, - { url = "https://files.pythonhosted.org/packages/5d/f1/09f45ac25e704ac954862581f9f9ae21303cc5ded3d0b775532b407f0e90/psycopg2_binary-2.9.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:512d29bb12608891e349af6a0cccedce51677725a921c07dba6342beaf576f9a", size = 3019831, upload-time = "2024-10-16T11:19:57.762Z" }, - { url = "https://files.pythonhosted.org/packages/9e/2e/9beaea078095cc558f215e38f647c7114987d9febfc25cb2beed7c3582a5/psycopg2_binary-2.9.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:5a507320c58903967ef7384355a4da7ff3f28132d679aeb23572753cbf2ec10b", size = 2871822, upload-time = "2024-10-16T11:20:04.693Z" }, - { url = "https://files.pythonhosted.org/packages/01/9e/ef93c5d93f3dc9fc92786ffab39e323b9aed066ba59fdc34cf85e2722271/psycopg2_binary-2.9.10-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:6d4fa1079cab9018f4d0bd2db307beaa612b0d13ba73b5c6304b9fe2fb441ff7", size = 2820975, upload-time = "2024-10-16T11:20:11.401Z" }, - { url = "https://files.pythonhosted.org/packages/a5/f0/049e9631e3268fe4c5a387f6fc27e267ebe199acf1bc1bc9cbde4bd6916c/psycopg2_binary-2.9.10-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:851485a42dbb0bdc1edcdabdb8557c09c9655dfa2ca0460ff210522e073e319e", size = 2919320, upload-time = "2024-10-16T11:20:17.959Z" }, - { url = "https://files.pythonhosted.org/packages/dc/9a/bcb8773b88e45fb5a5ea8339e2104d82c863a3b8558fbb2aadfe66df86b3/psycopg2_binary-2.9.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:35958ec9e46432d9076286dda67942ed6d968b9c3a6a2fd62b48939d1d78bf68", size = 2957617, upload-time = "2024-10-16T11:20:24.711Z" }, - { url = "https://files.pythonhosted.org/packages/e2/6b/144336a9bf08a67d217b3af3246abb1d027095dab726f0687f01f43e8c03/psycopg2_binary-2.9.10-cp311-cp311-win32.whl", hash = "sha256:ecced182e935529727401b24d76634a357c71c9275b356efafd8a2a91ec07392", size = 1024618, upload-time = "2024-10-16T11:20:27.718Z" }, - { url = "https://files.pythonhosted.org/packages/61/69/3b3d7bd583c6d3cbe5100802efa5beacaacc86e37b653fc708bf3d6853b8/psycopg2_binary-2.9.10-cp311-cp311-win_amd64.whl", hash = "sha256:ee0e8c683a7ff25d23b55b11161c2663d4b099770f6085ff0a20d4505778d6b4", size = 1163816, upload-time = "2024-10-16T11:20:30.777Z" }, - { url = "https://files.pythonhosted.org/packages/49/7d/465cc9795cf76f6d329efdafca74693714556ea3891813701ac1fee87545/psycopg2_binary-2.9.10-cp312-cp312-macosx_12_0_x86_64.whl", hash = "sha256:880845dfe1f85d9d5f7c412efea7a08946a46894537e4e5d091732eb1d34d9a0", size = 3044771, upload-time = "2024-10-16T11:20:35.234Z" }, - { url = "https://files.pythonhosted.org/packages/8b/31/6d225b7b641a1a2148e3ed65e1aa74fc86ba3fee850545e27be9e1de893d/psycopg2_binary-2.9.10-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:9440fa522a79356aaa482aa4ba500b65f28e5d0e63b801abf6aa152a29bd842a", size = 3275336, upload-time = "2024-10-16T11:20:38.742Z" }, - { url = "https://files.pythonhosted.org/packages/30/b7/a68c2b4bff1cbb1728e3ec864b2d92327c77ad52edcd27922535a8366f68/psycopg2_binary-2.9.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e3923c1d9870c49a2d44f795df0c889a22380d36ef92440ff618ec315757e539", size = 2851637, upload-time = "2024-10-16T11:20:42.145Z" }, - { url = "https://files.pythonhosted.org/packages/0b/b1/cfedc0e0e6f9ad61f8657fd173b2f831ce261c02a08c0b09c652b127d813/psycopg2_binary-2.9.10-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7b2c956c028ea5de47ff3a8d6b3cc3330ab45cf0b7c3da35a2d6ff8420896526", size = 3082097, upload-time = "2024-10-16T11:20:46.185Z" }, - { url = "https://files.pythonhosted.org/packages/18/ed/0a8e4153c9b769f59c02fb5e7914f20f0b2483a19dae7bf2db54b743d0d0/psycopg2_binary-2.9.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f758ed67cab30b9a8d2833609513ce4d3bd027641673d4ebc9c067e4d208eec1", size = 3264776, upload-time = "2024-10-16T11:20:50.879Z" }, - { url = "https://files.pythonhosted.org/packages/10/db/d09da68c6a0cdab41566b74e0a6068a425f077169bed0946559b7348ebe9/psycopg2_binary-2.9.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8cd9b4f2cfab88ed4a9106192de509464b75a906462fb846b936eabe45c2063e", size = 3020968, upload-time = "2024-10-16T11:20:56.819Z" }, - { url = "https://files.pythonhosted.org/packages/94/28/4d6f8c255f0dfffb410db2b3f9ac5218d959a66c715c34cac31081e19b95/psycopg2_binary-2.9.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:6dc08420625b5a20b53551c50deae6e231e6371194fa0651dbe0fb206452ae1f", size = 2872334, upload-time = "2024-10-16T11:21:02.411Z" }, - { url = "https://files.pythonhosted.org/packages/05/f7/20d7bf796593c4fea95e12119d6cc384ff1f6141a24fbb7df5a668d29d29/psycopg2_binary-2.9.10-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:d7cd730dfa7c36dbe8724426bf5612798734bff2d3c3857f36f2733f5bfc7c00", size = 2822722, upload-time = "2024-10-16T11:21:09.01Z" }, - { url = "https://files.pythonhosted.org/packages/4d/e4/0c407ae919ef626dbdb32835a03b6737013c3cc7240169843965cada2bdf/psycopg2_binary-2.9.10-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:155e69561d54d02b3c3209545fb08938e27889ff5a10c19de8d23eb5a41be8a5", size = 2920132, upload-time = "2024-10-16T11:21:16.339Z" }, - { url = "https://files.pythonhosted.org/packages/2d/70/aa69c9f69cf09a01da224909ff6ce8b68faeef476f00f7ec377e8f03be70/psycopg2_binary-2.9.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:c3cc28a6fd5a4a26224007712e79b81dbaee2ffb90ff406256158ec4d7b52b47", size = 2959312, upload-time = "2024-10-16T11:21:25.584Z" }, - { url = "https://files.pythonhosted.org/packages/d3/bd/213e59854fafe87ba47814bf413ace0dcee33a89c8c8c814faca6bc7cf3c/psycopg2_binary-2.9.10-cp312-cp312-win32.whl", hash = "sha256:ec8a77f521a17506a24a5f626cb2aee7850f9b69a0afe704586f63a464f3cd64", size = 1025191, upload-time = "2024-10-16T11:21:29.912Z" }, - { url = "https://files.pythonhosted.org/packages/92/29/06261ea000e2dc1e22907dbbc483a1093665509ea586b29b8986a0e56733/psycopg2_binary-2.9.10-cp312-cp312-win_amd64.whl", hash = "sha256:18c5ee682b9c6dd3696dad6e54cc7ff3a1a9020df6a5c0f861ef8bfd338c3ca0", size = 1164031, upload-time = "2024-10-16T11:21:34.211Z" }, - { url = "https://files.pythonhosted.org/packages/3e/30/d41d3ba765609c0763505d565c4d12d8f3c79793f0d0f044ff5a28bf395b/psycopg2_binary-2.9.10-cp313-cp313-macosx_12_0_x86_64.whl", hash = "sha256:26540d4a9a4e2b096f1ff9cce51253d0504dca5a85872c7f7be23be5a53eb18d", size = 3044699, upload-time = "2024-10-16T11:21:42.841Z" }, - { url = "https://files.pythonhosted.org/packages/35/44/257ddadec7ef04536ba71af6bc6a75ec05c5343004a7ec93006bee66c0bc/psycopg2_binary-2.9.10-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:e217ce4d37667df0bc1c397fdcd8de5e81018ef305aed9415c3b093faaeb10fb", size = 3275245, upload-time = "2024-10-16T11:21:51.989Z" }, - { url = "https://files.pythonhosted.org/packages/1b/11/48ea1cd11de67f9efd7262085588790a95d9dfcd9b8a687d46caf7305c1a/psycopg2_binary-2.9.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:245159e7ab20a71d989da00f280ca57da7641fa2cdcf71749c193cea540a74f7", size = 2851631, upload-time = "2024-10-16T11:21:57.584Z" }, - { url = "https://files.pythonhosted.org/packages/62/e0/62ce5ee650e6c86719d621a761fe4bc846ab9eff8c1f12b1ed5741bf1c9b/psycopg2_binary-2.9.10-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3c4ded1a24b20021ebe677b7b08ad10bf09aac197d6943bfe6fec70ac4e4690d", size = 3082140, upload-time = "2024-10-16T11:22:02.005Z" }, - { url = "https://files.pythonhosted.org/packages/27/ce/63f946c098611f7be234c0dd7cb1ad68b0b5744d34f68062bb3c5aa510c8/psycopg2_binary-2.9.10-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3abb691ff9e57d4a93355f60d4f4c1dd2d68326c968e7db17ea96df3c023ef73", size = 3264762, upload-time = "2024-10-16T11:22:06.412Z" }, - { url = "https://files.pythonhosted.org/packages/43/25/c603cd81402e69edf7daa59b1602bd41eb9859e2824b8c0855d748366ac9/psycopg2_binary-2.9.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8608c078134f0b3cbd9f89b34bd60a943b23fd33cc5f065e8d5f840061bd0673", size = 3020967, upload-time = "2024-10-16T11:22:11.583Z" }, - { url = "https://files.pythonhosted.org/packages/5f/d6/8708d8c6fca531057fa170cdde8df870e8b6a9b136e82b361c65e42b841e/psycopg2_binary-2.9.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:230eeae2d71594103cd5b93fd29d1ace6420d0b86f4778739cb1a5a32f607d1f", size = 2872326, upload-time = "2024-10-16T11:22:16.406Z" }, - { url = "https://files.pythonhosted.org/packages/ce/ac/5b1ea50fc08a9df82de7e1771537557f07c2632231bbab652c7e22597908/psycopg2_binary-2.9.10-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:bb89f0a835bcfc1d42ccd5f41f04870c1b936d8507c6df12b7737febc40f0909", size = 2822712, upload-time = "2024-10-16T11:22:21.366Z" }, - { url = "https://files.pythonhosted.org/packages/c4/fc/504d4503b2abc4570fac3ca56eb8fed5e437bf9c9ef13f36b6621db8ef00/psycopg2_binary-2.9.10-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:f0c2d907a1e102526dd2986df638343388b94c33860ff3bbe1384130828714b1", size = 2920155, upload-time = "2024-10-16T11:22:25.684Z" }, - { url = "https://files.pythonhosted.org/packages/b2/d1/323581e9273ad2c0dbd1902f3fb50c441da86e894b6e25a73c3fda32c57e/psycopg2_binary-2.9.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:f8157bed2f51db683f31306aa497311b560f2265998122abe1dce6428bd86567", size = 2959356, upload-time = "2024-10-16T11:22:30.562Z" }, - { url = "https://files.pythonhosted.org/packages/08/50/d13ea0a054189ae1bc21af1d85b6f8bb9bbc5572991055d70ad9006fe2d6/psycopg2_binary-2.9.10-cp313-cp313-win_amd64.whl", hash = "sha256:27422aa5f11fbcd9b18da48373eb67081243662f9b46e6fd07c3eb46e4535142", size = 2569224, upload-time = "2025-01-04T20:09:19.234Z" }, +version = "2.9.11" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ac/6c/8767aaa597ba424643dc87348c6f1754dd9f48e80fdc1b9f7ca5c3a7c213/psycopg2-binary-2.9.11.tar.gz", hash = "sha256:b6aed9e096bf63f9e75edf2581aa9a7e7186d97ab5c177aa6c87797cd591236c", size = 379620, upload-time = "2025-10-10T11:14:48.041Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c7/ae/8d8266f6dd183ab4d48b95b9674034e1b482a3f8619b33a0d86438694577/psycopg2_binary-2.9.11-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:0e8480afd62362d0a6a27dd09e4ca2def6fa50ed3a4e7c09165266106b2ffa10", size = 3756452, upload-time = "2025-10-10T11:11:11.583Z" }, + { url = "https://files.pythonhosted.org/packages/4b/34/aa03d327739c1be70e09d01182619aca8ebab5970cd0cfa50dd8b9cec2ac/psycopg2_binary-2.9.11-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:763c93ef1df3da6d1a90f86ea7f3f806dc06b21c198fa87c3c25504abec9404a", size = 3863957, upload-time = "2025-10-10T11:11:16.932Z" }, + { url = "https://files.pythonhosted.org/packages/48/89/3fdb5902bdab8868bbedc1c6e6023a4e08112ceac5db97fc2012060e0c9a/psycopg2_binary-2.9.11-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:2e164359396576a3cc701ba8af4751ae68a07235d7a380c631184a611220d9a4", size = 4410955, upload-time = "2025-10-10T11:11:21.21Z" }, + { url = "https://files.pythonhosted.org/packages/ce/24/e18339c407a13c72b336e0d9013fbbbde77b6fd13e853979019a1269519c/psycopg2_binary-2.9.11-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:d57c9c387660b8893093459738b6abddbb30a7eab058b77b0d0d1c7d521ddfd7", size = 4468007, upload-time = "2025-10-10T11:11:24.831Z" }, + { url = "https://files.pythonhosted.org/packages/91/7e/b8441e831a0f16c159b5381698f9f7f7ed54b77d57bc9c5f99144cc78232/psycopg2_binary-2.9.11-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:2c226ef95eb2250974bf6fa7a842082b31f68385c4f3268370e3f3870e7859ee", size = 4165012, upload-time = "2025-10-10T11:11:29.51Z" }, + { url = "https://files.pythonhosted.org/packages/0d/61/4aa89eeb6d751f05178a13da95516c036e27468c5d4d2509bb1e15341c81/psycopg2_binary-2.9.11-cp311-cp311-manylinux_2_38_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:a311f1edc9967723d3511ea7d2708e2c3592e3405677bf53d5c7246753591fbb", size = 3981881, upload-time = "2025-10-30T02:55:07.332Z" }, + { url = "https://files.pythonhosted.org/packages/76/a1/2f5841cae4c635a9459fe7aca8ed771336e9383b6429e05c01267b0774cf/psycopg2_binary-2.9.11-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ebb415404821b6d1c47353ebe9c8645967a5235e6d88f914147e7fd411419e6f", size = 3650985, upload-time = "2025-10-10T11:11:34.975Z" }, + { url = "https://files.pythonhosted.org/packages/84/74/4defcac9d002bca5709951b975173c8c2fa968e1a95dc713f61b3a8d3b6a/psycopg2_binary-2.9.11-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:f07c9c4a5093258a03b28fab9b4f151aa376989e7f35f855088234e656ee6a94", size = 3296039, upload-time = "2025-10-10T11:11:40.432Z" }, + { url = "https://files.pythonhosted.org/packages/6d/c2/782a3c64403d8ce35b5c50e1b684412cf94f171dc18111be8c976abd2de1/psycopg2_binary-2.9.11-cp311-cp311-musllinux_1_2_riscv64.whl", hash = "sha256:00ce1830d971f43b667abe4a56e42c1e2d594b32da4802e44a73bacacb25535f", size = 3043477, upload-time = "2025-10-30T02:55:11.182Z" }, + { url = "https://files.pythonhosted.org/packages/c8/31/36a1d8e702aa35c38fc117c2b8be3f182613faa25d794b8aeaab948d4c03/psycopg2_binary-2.9.11-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:cffe9d7697ae7456649617e8bb8d7a45afb71cd13f7ab22af3e5c61f04840908", size = 3345842, upload-time = "2025-10-10T11:11:45.366Z" }, + { url = "https://files.pythonhosted.org/packages/6e/b4/a5375cda5b54cb95ee9b836930fea30ae5a8f14aa97da7821722323d979b/psycopg2_binary-2.9.11-cp311-cp311-win_amd64.whl", hash = "sha256:304fd7b7f97eef30e91b8f7e720b3db75fee010b520e434ea35ed1ff22501d03", size = 2713894, upload-time = "2025-10-10T11:11:48.775Z" }, + { url = "https://files.pythonhosted.org/packages/d8/91/f870a02f51be4a65987b45a7de4c2e1897dd0d01051e2b559a38fa634e3e/psycopg2_binary-2.9.11-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:be9b840ac0525a283a96b556616f5b4820e0526addb8dcf6525a0fa162730be4", size = 3756603, upload-time = "2025-10-10T11:11:52.213Z" }, + { url = "https://files.pythonhosted.org/packages/27/fa/cae40e06849b6c9a95eb5c04d419942f00d9eaac8d81626107461e268821/psycopg2_binary-2.9.11-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:f090b7ddd13ca842ebfe301cd587a76a4cf0913b1e429eb92c1be5dbeb1a19bc", size = 3864509, upload-time = "2025-10-10T11:11:56.452Z" }, + { url = "https://files.pythonhosted.org/packages/2d/75/364847b879eb630b3ac8293798e380e441a957c53657995053c5ec39a316/psycopg2_binary-2.9.11-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:ab8905b5dcb05bf3fb22e0cf90e10f469563486ffb6a96569e51f897c750a76a", size = 4411159, upload-time = "2025-10-10T11:12:00.49Z" }, + { url = "https://files.pythonhosted.org/packages/6f/a0/567f7ea38b6e1c62aafd58375665a547c00c608a471620c0edc364733e13/psycopg2_binary-2.9.11-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:bf940cd7e7fec19181fdbc29d76911741153d51cab52e5c21165f3262125685e", size = 4468234, upload-time = "2025-10-10T11:12:04.892Z" }, + { url = "https://files.pythonhosted.org/packages/30/da/4e42788fb811bbbfd7b7f045570c062f49e350e1d1f3df056c3fb5763353/psycopg2_binary-2.9.11-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:fa0f693d3c68ae925966f0b14b8edda71696608039f4ed61b1fe9ffa468d16db", size = 4166236, upload-time = "2025-10-10T11:12:11.674Z" }, + { url = "https://files.pythonhosted.org/packages/3c/94/c1777c355bc560992af848d98216148be5f1be001af06e06fc49cbded578/psycopg2_binary-2.9.11-cp312-cp312-manylinux_2_38_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:a1cf393f1cdaf6a9b57c0a719a1068ba1069f022a59b8b1fe44b006745b59757", size = 3983083, upload-time = "2025-10-30T02:55:15.73Z" }, + { url = "https://files.pythonhosted.org/packages/bd/42/c9a21edf0e3daa7825ed04a4a8588686c6c14904344344a039556d78aa58/psycopg2_binary-2.9.11-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:ef7a6beb4beaa62f88592ccc65df20328029d721db309cb3250b0aae0fa146c3", size = 3652281, upload-time = "2025-10-10T11:12:17.713Z" }, + { url = "https://files.pythonhosted.org/packages/12/22/dedfbcfa97917982301496b6b5e5e6c5531d1f35dd2b488b08d1ebc52482/psycopg2_binary-2.9.11-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:31b32c457a6025e74d233957cc9736742ac5a6cb196c6b68499f6bb51390bd6a", size = 3298010, upload-time = "2025-10-10T11:12:22.671Z" }, + { url = "https://files.pythonhosted.org/packages/66/ea/d3390e6696276078bd01b2ece417deac954dfdd552d2edc3d03204416c0c/psycopg2_binary-2.9.11-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:edcb3aeb11cb4bf13a2af3c53a15b3d612edeb6409047ea0b5d6a21a9d744b34", size = 3044641, upload-time = "2025-10-30T02:55:19.929Z" }, + { url = "https://files.pythonhosted.org/packages/12/9a/0402ded6cbd321da0c0ba7d34dc12b29b14f5764c2fc10750daa38e825fc/psycopg2_binary-2.9.11-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:62b6d93d7c0b61a1dd6197d208ab613eb7dcfdcca0a49c42ceb082257991de9d", size = 3347940, upload-time = "2025-10-10T11:12:26.529Z" }, + { url = "https://files.pythonhosted.org/packages/b1/d2/99b55e85832ccde77b211738ff3925a5d73ad183c0b37bcbbe5a8ff04978/psycopg2_binary-2.9.11-cp312-cp312-win_amd64.whl", hash = "sha256:b33fabeb1fde21180479b2d4667e994de7bbf0eec22832ba5d9b5e4cf65b6c6d", size = 2714147, upload-time = "2025-10-10T11:12:29.535Z" }, + { url = "https://files.pythonhosted.org/packages/ff/a8/a2709681b3ac11b0b1786def10006b8995125ba268c9a54bea6f5ae8bd3e/psycopg2_binary-2.9.11-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:b8fb3db325435d34235b044b199e56cdf9ff41223a4b9752e8576465170bb38c", size = 3756572, upload-time = "2025-10-10T11:12:32.873Z" }, + { url = "https://files.pythonhosted.org/packages/62/e1/c2b38d256d0dafd32713e9f31982a5b028f4a3651f446be70785f484f472/psycopg2_binary-2.9.11-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:366df99e710a2acd90efed3764bb1e28df6c675d33a7fb40df9b7281694432ee", size = 3864529, upload-time = "2025-10-10T11:12:36.791Z" }, + { url = "https://files.pythonhosted.org/packages/11/32/b2ffe8f3853c181e88f0a157c5fb4e383102238d73c52ac6d93a5c8bffe6/psycopg2_binary-2.9.11-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:8c55b385daa2f92cb64b12ec4536c66954ac53654c7f15a203578da4e78105c0", size = 4411242, upload-time = "2025-10-10T11:12:42.388Z" }, + { url = "https://files.pythonhosted.org/packages/10/04/6ca7477e6160ae258dc96f67c371157776564679aefd247b66f4661501a2/psycopg2_binary-2.9.11-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:c0377174bf1dd416993d16edc15357f6eb17ac998244cca19bc67cdc0e2e5766", size = 4468258, upload-time = "2025-10-10T11:12:48.654Z" }, + { url = "https://files.pythonhosted.org/packages/3c/7e/6a1a38f86412df101435809f225d57c1a021307dd0689f7a5e7fe83588b1/psycopg2_binary-2.9.11-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:5c6ff3335ce08c75afaed19e08699e8aacf95d4a260b495a4a8545244fe2ceb3", size = 4166295, upload-time = "2025-10-10T11:12:52.525Z" }, + { url = "https://files.pythonhosted.org/packages/f2/7d/c07374c501b45f3579a9eb761cbf2604ddef3d96ad48679112c2c5aa9c25/psycopg2_binary-2.9.11-cp313-cp313-manylinux_2_38_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:84011ba3109e06ac412f95399b704d3d6950e386b7994475b231cf61eec2fc1f", size = 3983133, upload-time = "2025-10-30T02:55:24.329Z" }, + { url = "https://files.pythonhosted.org/packages/82/56/993b7104cb8345ad7d4516538ccf8f0d0ac640b1ebd8c754a7b024e76878/psycopg2_binary-2.9.11-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:ba34475ceb08cccbdd98f6b46916917ae6eeb92b5ae111df10b544c3a4621dc4", size = 3652383, upload-time = "2025-10-10T11:12:56.387Z" }, + { url = "https://files.pythonhosted.org/packages/2d/ac/eaeb6029362fd8d454a27374d84c6866c82c33bfc24587b4face5a8e43ef/psycopg2_binary-2.9.11-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:b31e90fdd0f968c2de3b26ab014314fe814225b6c324f770952f7d38abf17e3c", size = 3298168, upload-time = "2025-10-10T11:13:00.403Z" }, + { url = "https://files.pythonhosted.org/packages/2b/39/50c3facc66bded9ada5cbc0de867499a703dc6bca6be03070b4e3b65da6c/psycopg2_binary-2.9.11-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:d526864e0f67f74937a8fce859bd56c979f5e2ec57ca7c627f5f1071ef7fee60", size = 3044712, upload-time = "2025-10-30T02:55:27.975Z" }, + { url = "https://files.pythonhosted.org/packages/9c/8e/b7de019a1f562f72ada81081a12823d3c1590bedc48d7d2559410a2763fe/psycopg2_binary-2.9.11-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:04195548662fa544626c8ea0f06561eb6203f1984ba5b4562764fbeb4c3d14b1", size = 3347549, upload-time = "2025-10-10T11:13:03.971Z" }, + { url = "https://files.pythonhosted.org/packages/80/2d/1bb683f64737bbb1f86c82b7359db1eb2be4e2c0c13b947f80efefa7d3e5/psycopg2_binary-2.9.11-cp313-cp313-win_amd64.whl", hash = "sha256:efff12b432179443f54e230fdf60de1f6cc726b6c832db8701227d089310e8aa", size = 2714215, upload-time = "2025-10-10T11:13:07.14Z" }, + { url = "https://files.pythonhosted.org/packages/64/12/93ef0098590cf51d9732b4f139533732565704f45bdc1ffa741b7c95fb54/psycopg2_binary-2.9.11-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:92e3b669236327083a2e33ccfa0d320dd01b9803b3e14dd986a4fc54aa00f4e1", size = 3756567, upload-time = "2025-10-10T11:13:11.885Z" }, + { url = "https://files.pythonhosted.org/packages/7c/a9/9d55c614a891288f15ca4b5209b09f0f01e3124056924e17b81b9fa054cc/psycopg2_binary-2.9.11-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:e0deeb03da539fa3577fcb0b3f2554a97f7e5477c246098dbb18091a4a01c16f", size = 3864755, upload-time = "2025-10-10T11:13:17.727Z" }, + { url = "https://files.pythonhosted.org/packages/13/1e/98874ce72fd29cbde93209977b196a2edae03f8490d1bd8158e7f1daf3a0/psycopg2_binary-2.9.11-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:9b52a3f9bb540a3e4ec0f6ba6d31339727b2950c9772850d6545b7eae0b9d7c5", size = 4411646, upload-time = "2025-10-10T11:13:24.432Z" }, + { url = "https://files.pythonhosted.org/packages/5a/bd/a335ce6645334fb8d758cc358810defca14a1d19ffbc8a10bd38a2328565/psycopg2_binary-2.9.11-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:db4fd476874ccfdbb630a54426964959e58da4c61c9feba73e6094d51303d7d8", size = 4468701, upload-time = "2025-10-10T11:13:29.266Z" }, + { url = "https://files.pythonhosted.org/packages/44/d6/c8b4f53f34e295e45709b7568bf9b9407a612ea30387d35eb9fa84f269b4/psycopg2_binary-2.9.11-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:47f212c1d3be608a12937cc131bd85502954398aaa1320cb4c14421a0ffccf4c", size = 4166293, upload-time = "2025-10-10T11:13:33.336Z" }, + { url = "https://files.pythonhosted.org/packages/4b/e0/f8cc36eadd1b716ab36bb290618a3292e009867e5c97ce4aba908cb99644/psycopg2_binary-2.9.11-cp314-cp314-manylinux_2_38_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:e35b7abae2b0adab776add56111df1735ccc71406e56203515e228a8dc07089f", size = 3983184, upload-time = "2025-10-30T02:55:32.483Z" }, + { url = "https://files.pythonhosted.org/packages/53/3e/2a8fe18a4e61cfb3417da67b6318e12691772c0696d79434184a511906dc/psycopg2_binary-2.9.11-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:fcf21be3ce5f5659daefd2b3b3b6e4727b028221ddc94e6c1523425579664747", size = 3652650, upload-time = "2025-10-10T11:13:38.181Z" }, + { url = "https://files.pythonhosted.org/packages/76/36/03801461b31b29fe58d228c24388f999fe814dfc302856e0d17f97d7c54d/psycopg2_binary-2.9.11-cp314-cp314-musllinux_1_2_ppc64le.whl", hash = "sha256:9bd81e64e8de111237737b29d68039b9c813bdf520156af36d26819c9a979e5f", size = 3298663, upload-time = "2025-10-10T11:13:44.878Z" }, + { url = "https://files.pythonhosted.org/packages/97/77/21b0ea2e1a73aa5fa9222b2a6b8ba325c43c3a8d54272839c991f2345656/psycopg2_binary-2.9.11-cp314-cp314-musllinux_1_2_riscv64.whl", hash = "sha256:32770a4d666fbdafab017086655bcddab791d7cb260a16679cc5a7338b64343b", size = 3044737, upload-time = "2025-10-30T02:55:35.69Z" }, + { url = "https://files.pythonhosted.org/packages/67/69/f36abe5f118c1dca6d3726ceae164b9356985805480731ac6712a63f24f0/psycopg2_binary-2.9.11-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:c3cb3a676873d7506825221045bd70e0427c905b9c8ee8d6acd70cfcbd6e576d", size = 3347643, upload-time = "2025-10-10T11:13:53.499Z" }, + { url = "https://files.pythonhosted.org/packages/e1/36/9c0c326fe3a4227953dfb29f5d0c8ae3b8eb8c1cd2967aa569f50cb3c61f/psycopg2_binary-2.9.11-cp314-cp314-win_amd64.whl", hash = "sha256:4012c9c954dfaccd28f94e84ab9f94e12df76b4afb22331b1f0d3154893a6316", size = 2803913, upload-time = "2025-10-10T11:13:57.058Z" }, ] [[package]] @@ -11275,16 +10126,15 @@ wheels = [ [[package]] name = "pybtex" -version = "0.24.0" +version = "0.25.1" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "latexcodec" }, { name = "pyyaml" }, - { name = "six" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/46/9b/fd39836a6397fb363446d83075a7b9c2cc562f4c449292e039ed36084376/pybtex-0.24.0.tar.gz", hash = "sha256:818eae35b61733e5c007c3fcd2cfb75ed1bc8b4173c1f70b56cc4c0802d34755", size = 402879, upload-time = "2021-01-17T20:02:27.328Z" } +sdist = { url = "https://files.pythonhosted.org/packages/5f/bc/c2be05ca72f8c103670e983df8be26d1e288bc6556f487fa8cccaa27779f/pybtex-0.25.1.tar.gz", hash = "sha256:9eaf90267c7e83e225af89fea65c370afbf65f458220d3946a9e3049e1eca491", size = 406157, upload-time = "2025-06-26T13:27:41.903Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/ad/5f/40d8e90f985a05133a8895fc454c6127ecec3de8b095dd35bba91382f803/pybtex-0.24.0-py2.py3-none-any.whl", hash = "sha256:e1e0c8c69998452fea90e9179aa2a98ab103f3eed894405b7264e517cc2fcc0f", size = 561354, upload-time = "2021-01-17T20:02:23.696Z" }, + { url = "https://files.pythonhosted.org/packages/25/68/ceb5d6679baa326261f5d3e5113d9cfed6efef2810afd9f18bffb8ed312b/pybtex-0.25.1-py2.py3-none-any.whl", hash = "sha256:9053b0d619409a0a83f38abad5d9921de5f7b3ede00742beafcd9f10ad0d8c5c", size = 127437, upload-time = "2025-06-26T13:27:43.585Z" }, ] [[package]] @@ -11302,16 +10152,16 @@ wheels = [ [[package]] name = "pycparser" -version = "2.22" +version = "2.23" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/1d/b2/31537cf4b1ca988837256c910a668b553fceb8f069bedc4b1c826024b52c/pycparser-2.22.tar.gz", hash = "sha256:491c8be9c040f5390f5bf44a5b07752bd07f56edf992381b05c701439eec10f6", size = 172736, upload-time = "2024-03-30T13:22:22.564Z" } +sdist = { url = "https://files.pythonhosted.org/packages/fe/cf/d2d3b9f5699fb1e4615c8e32ff220203e43b248e1dfcc6736ad9057731ca/pycparser-2.23.tar.gz", hash = "sha256:78816d4f24add8f10a06d6f05b4d424ad9e96cfebf68a4ddc99c65c0720d00c2", size = 173734, upload-time = "2025-09-09T13:23:47.91Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/13/a3/a812df4e2dd5696d1f351d58b8fe16a405b234ad2886a0dab9183fb78109/pycparser-2.22-py3-none-any.whl", hash = "sha256:c3702b6d3dd8c7abc1afa565d7e63d53a1d0bd86cdc24edd75470f4de499cfcc", size = 117552, upload-time = "2024-03-30T13:22:20.476Z" }, + { url = "https://files.pythonhosted.org/packages/a0/e3/59cd50310fc9b59512193629e1984c1f95e5c8ae6e5d8c69532ccc65a7fe/pycparser-2.23-py3-none-any.whl", hash = "sha256:e5c6e8d3fbad53479cab09ac03729e0a9faf2bee3db8208a550daf5af81a5934", size = 118140, upload-time = "2025-09-09T13:23:46.651Z" }, ] [[package]] name = "pydantic" -version = "2.11.5" +version = "2.12.5" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "annotated-types" }, @@ -11319,110 +10169,120 @@ dependencies = [ { name = "typing-extensions" }, { name = "typing-inspection" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/f0/86/8ce9040065e8f924d642c58e4a344e33163a07f6b57f836d0d734e0ad3fb/pydantic-2.11.5.tar.gz", hash = "sha256:7f853db3d0ce78ce8bbb148c401c2cdd6431b3473c0cdff2755c7690952a7b7a", size = 787102, upload-time = "2025-05-22T21:18:08.761Z" } +sdist = { url = "https://files.pythonhosted.org/packages/69/44/36f1a6e523abc58ae5f928898e4aca2e0ea509b5aa6f6f392a5d882be928/pydantic-2.12.5.tar.gz", hash = "sha256:4d351024c75c0f085a9febbb665ce8c0c6ec5d30e903bdb6394b7ede26aebb49", size = 821591, upload-time = "2025-11-26T15:11:46.471Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/b5/69/831ed22b38ff9b4b64b66569f0e5b7b97cf3638346eb95a2147fdb49ad5f/pydantic-2.11.5-py3-none-any.whl", hash = "sha256:f9c26ba06f9747749ca1e5c94d6a85cb84254577553c8785576fd38fa64dc0f7", size = 444229, upload-time = "2025-05-22T21:18:06.329Z" }, + { url = "https://files.pythonhosted.org/packages/5a/87/b70ad306ebb6f9b585f114d0ac2137d792b48be34d732d60e597c2f8465a/pydantic-2.12.5-py3-none-any.whl", hash = "sha256:e561593fccf61e8a20fc46dfc2dfe075b8be7d0188df33f221ad1f0139180f9d", size = 463580, upload-time = "2025-11-26T15:11:44.605Z" }, ] [[package]] name = "pydantic-core" -version = "2.33.2" +version = "2.41.5" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "typing-extensions" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/ad/88/5f2260bdfae97aabf98f1778d43f69574390ad787afb646292a638c923d4/pydantic_core-2.33.2.tar.gz", hash = "sha256:7cb8bc3605c29176e1b105350d2e6474142d7c1bd1d9327c4a9bdb46bf827acc", size = 435195, upload-time = "2025-04-23T18:33:52.104Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/e5/92/b31726561b5dae176c2d2c2dc43a9c5bfba5d32f96f8b4c0a600dd492447/pydantic_core-2.33.2-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:2b3d326aaef0c0399d9afffeb6367d5e26ddc24d351dbc9c636840ac355dc5d8", size = 2028817, upload-time = "2025-04-23T18:30:43.919Z" }, - { url = "https://files.pythonhosted.org/packages/a3/44/3f0b95fafdaca04a483c4e685fe437c6891001bf3ce8b2fded82b9ea3aa1/pydantic_core-2.33.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:0e5b2671f05ba48b94cb90ce55d8bdcaaedb8ba00cc5359f6810fc918713983d", size = 1861357, upload-time = "2025-04-23T18:30:46.372Z" }, - { url = "https://files.pythonhosted.org/packages/30/97/e8f13b55766234caae05372826e8e4b3b96e7b248be3157f53237682e43c/pydantic_core-2.33.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0069c9acc3f3981b9ff4cdfaf088e98d83440a4c7ea1bc07460af3d4dc22e72d", size = 1898011, upload-time = "2025-04-23T18:30:47.591Z" }, - { url = "https://files.pythonhosted.org/packages/9b/a3/99c48cf7bafc991cc3ee66fd544c0aae8dc907b752f1dad2d79b1b5a471f/pydantic_core-2.33.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d53b22f2032c42eaaf025f7c40c2e3b94568ae077a606f006d206a463bc69572", size = 1982730, upload-time = "2025-04-23T18:30:49.328Z" }, - { url = "https://files.pythonhosted.org/packages/de/8e/a5b882ec4307010a840fb8b58bd9bf65d1840c92eae7534c7441709bf54b/pydantic_core-2.33.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0405262705a123b7ce9f0b92f123334d67b70fd1f20a9372b907ce1080c7ba02", size = 2136178, upload-time = "2025-04-23T18:30:50.907Z" }, - { url = "https://files.pythonhosted.org/packages/e4/bb/71e35fc3ed05af6834e890edb75968e2802fe98778971ab5cba20a162315/pydantic_core-2.33.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4b25d91e288e2c4e0662b8038a28c6a07eaac3e196cfc4ff69de4ea3db992a1b", size = 2736462, upload-time = "2025-04-23T18:30:52.083Z" }, - { url = "https://files.pythonhosted.org/packages/31/0d/c8f7593e6bc7066289bbc366f2235701dcbebcd1ff0ef8e64f6f239fb47d/pydantic_core-2.33.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6bdfe4b3789761f3bcb4b1ddf33355a71079858958e3a552f16d5af19768fef2", size = 2005652, upload-time = "2025-04-23T18:30:53.389Z" }, - { url = "https://files.pythonhosted.org/packages/d2/7a/996d8bd75f3eda405e3dd219ff5ff0a283cd8e34add39d8ef9157e722867/pydantic_core-2.33.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:efec8db3266b76ef9607c2c4c419bdb06bf335ae433b80816089ea7585816f6a", size = 2113306, upload-time = "2025-04-23T18:30:54.661Z" }, - { url = "https://files.pythonhosted.org/packages/ff/84/daf2a6fb2db40ffda6578a7e8c5a6e9c8affb251a05c233ae37098118788/pydantic_core-2.33.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:031c57d67ca86902726e0fae2214ce6770bbe2f710dc33063187a68744a5ecac", size = 2073720, upload-time = "2025-04-23T18:30:56.11Z" }, - { url = "https://files.pythonhosted.org/packages/77/fb/2258da019f4825128445ae79456a5499c032b55849dbd5bed78c95ccf163/pydantic_core-2.33.2-cp310-cp310-musllinux_1_1_armv7l.whl", hash = "sha256:f8de619080e944347f5f20de29a975c2d815d9ddd8be9b9b7268e2e3ef68605a", size = 2244915, upload-time = "2025-04-23T18:30:57.501Z" }, - { url = "https://files.pythonhosted.org/packages/d8/7a/925ff73756031289468326e355b6fa8316960d0d65f8b5d6b3a3e7866de7/pydantic_core-2.33.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:73662edf539e72a9440129f231ed3757faab89630d291b784ca99237fb94db2b", size = 2241884, upload-time = "2025-04-23T18:30:58.867Z" }, - { url = "https://files.pythonhosted.org/packages/0b/b0/249ee6d2646f1cdadcb813805fe76265745c4010cf20a8eba7b0e639d9b2/pydantic_core-2.33.2-cp310-cp310-win32.whl", hash = "sha256:0a39979dcbb70998b0e505fb1556a1d550a0781463ce84ebf915ba293ccb7e22", size = 1910496, upload-time = "2025-04-23T18:31:00.078Z" }, - { url = "https://files.pythonhosted.org/packages/66/ff/172ba8f12a42d4b552917aa65d1f2328990d3ccfc01d5b7c943ec084299f/pydantic_core-2.33.2-cp310-cp310-win_amd64.whl", hash = "sha256:b0379a2b24882fef529ec3b4987cb5d003b9cda32256024e6fe1586ac45fc640", size = 1955019, upload-time = "2025-04-23T18:31:01.335Z" }, - { url = "https://files.pythonhosted.org/packages/3f/8d/71db63483d518cbbf290261a1fc2839d17ff89fce7089e08cad07ccfce67/pydantic_core-2.33.2-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:4c5b0a576fb381edd6d27f0a85915c6daf2f8138dc5c267a57c08a62900758c7", size = 2028584, upload-time = "2025-04-23T18:31:03.106Z" }, - { url = "https://files.pythonhosted.org/packages/24/2f/3cfa7244ae292dd850989f328722d2aef313f74ffc471184dc509e1e4e5a/pydantic_core-2.33.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:e799c050df38a639db758c617ec771fd8fb7a5f8eaaa4b27b101f266b216a246", size = 1855071, upload-time = "2025-04-23T18:31:04.621Z" }, - { url = "https://files.pythonhosted.org/packages/b3/d3/4ae42d33f5e3f50dd467761304be2fa0a9417fbf09735bc2cce003480f2a/pydantic_core-2.33.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dc46a01bf8d62f227d5ecee74178ffc448ff4e5197c756331f71efcc66dc980f", size = 1897823, upload-time = "2025-04-23T18:31:06.377Z" }, - { url = "https://files.pythonhosted.org/packages/f4/f3/aa5976e8352b7695ff808599794b1fba2a9ae2ee954a3426855935799488/pydantic_core-2.33.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:a144d4f717285c6d9234a66778059f33a89096dfb9b39117663fd8413d582dcc", size = 1983792, upload-time = "2025-04-23T18:31:07.93Z" }, - { url = "https://files.pythonhosted.org/packages/d5/7a/cda9b5a23c552037717f2b2a5257e9b2bfe45e687386df9591eff7b46d28/pydantic_core-2.33.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:73cf6373c21bc80b2e0dc88444f41ae60b2f070ed02095754eb5a01df12256de", size = 2136338, upload-time = "2025-04-23T18:31:09.283Z" }, - { url = "https://files.pythonhosted.org/packages/2b/9f/b8f9ec8dd1417eb9da784e91e1667d58a2a4a7b7b34cf4af765ef663a7e5/pydantic_core-2.33.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3dc625f4aa79713512d1976fe9f0bc99f706a9dee21dfd1810b4bbbf228d0e8a", size = 2730998, upload-time = "2025-04-23T18:31:11.7Z" }, - { url = "https://files.pythonhosted.org/packages/47/bc/cd720e078576bdb8255d5032c5d63ee5c0bf4b7173dd955185a1d658c456/pydantic_core-2.33.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:881b21b5549499972441da4758d662aeea93f1923f953e9cbaff14b8b9565aef", size = 2003200, upload-time = "2025-04-23T18:31:13.536Z" }, - { url = "https://files.pythonhosted.org/packages/ca/22/3602b895ee2cd29d11a2b349372446ae9727c32e78a94b3d588a40fdf187/pydantic_core-2.33.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:bdc25f3681f7b78572699569514036afe3c243bc3059d3942624e936ec93450e", size = 2113890, upload-time = "2025-04-23T18:31:15.011Z" }, - { url = "https://files.pythonhosted.org/packages/ff/e6/e3c5908c03cf00d629eb38393a98fccc38ee0ce8ecce32f69fc7d7b558a7/pydantic_core-2.33.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:fe5b32187cbc0c862ee201ad66c30cf218e5ed468ec8dc1cf49dec66e160cc4d", size = 2073359, upload-time = "2025-04-23T18:31:16.393Z" }, - { url = "https://files.pythonhosted.org/packages/12/e7/6a36a07c59ebefc8777d1ffdaf5ae71b06b21952582e4b07eba88a421c79/pydantic_core-2.33.2-cp311-cp311-musllinux_1_1_armv7l.whl", hash = "sha256:bc7aee6f634a6f4a95676fcb5d6559a2c2a390330098dba5e5a5f28a2e4ada30", size = 2245883, upload-time = "2025-04-23T18:31:17.892Z" }, - { url = "https://files.pythonhosted.org/packages/16/3f/59b3187aaa6cc0c1e6616e8045b284de2b6a87b027cce2ffcea073adf1d2/pydantic_core-2.33.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:235f45e5dbcccf6bd99f9f472858849f73d11120d76ea8707115415f8e5ebebf", size = 2241074, upload-time = "2025-04-23T18:31:19.205Z" }, - { url = "https://files.pythonhosted.org/packages/e0/ed/55532bb88f674d5d8f67ab121a2a13c385df382de2a1677f30ad385f7438/pydantic_core-2.33.2-cp311-cp311-win32.whl", hash = "sha256:6368900c2d3ef09b69cb0b913f9f8263b03786e5b2a387706c5afb66800efd51", size = 1910538, upload-time = "2025-04-23T18:31:20.541Z" }, - { url = "https://files.pythonhosted.org/packages/fe/1b/25b7cccd4519c0b23c2dd636ad39d381abf113085ce4f7bec2b0dc755eb1/pydantic_core-2.33.2-cp311-cp311-win_amd64.whl", hash = "sha256:1e063337ef9e9820c77acc768546325ebe04ee38b08703244c1309cccc4f1bab", size = 1952909, upload-time = "2025-04-23T18:31:22.371Z" }, - { url = "https://files.pythonhosted.org/packages/49/a9/d809358e49126438055884c4366a1f6227f0f84f635a9014e2deb9b9de54/pydantic_core-2.33.2-cp311-cp311-win_arm64.whl", hash = "sha256:6b99022f1d19bc32a4c2a0d544fc9a76e3be90f0b3f4af413f87d38749300e65", size = 1897786, upload-time = "2025-04-23T18:31:24.161Z" }, - { url = "https://files.pythonhosted.org/packages/18/8a/2b41c97f554ec8c71f2a8a5f85cb56a8b0956addfe8b0efb5b3d77e8bdc3/pydantic_core-2.33.2-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:a7ec89dc587667f22b6a0b6579c249fca9026ce7c333fc142ba42411fa243cdc", size = 2009000, upload-time = "2025-04-23T18:31:25.863Z" }, - { url = "https://files.pythonhosted.org/packages/a1/02/6224312aacb3c8ecbaa959897af57181fb6cf3a3d7917fd44d0f2917e6f2/pydantic_core-2.33.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:3c6db6e52c6d70aa0d00d45cdb9b40f0433b96380071ea80b09277dba021ddf7", size = 1847996, upload-time = "2025-04-23T18:31:27.341Z" }, - { url = "https://files.pythonhosted.org/packages/d6/46/6dcdf084a523dbe0a0be59d054734b86a981726f221f4562aed313dbcb49/pydantic_core-2.33.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4e61206137cbc65e6d5256e1166f88331d3b6238e082d9f74613b9b765fb9025", size = 1880957, upload-time = "2025-04-23T18:31:28.956Z" }, - { url = "https://files.pythonhosted.org/packages/ec/6b/1ec2c03837ac00886ba8160ce041ce4e325b41d06a034adbef11339ae422/pydantic_core-2.33.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:eb8c529b2819c37140eb51b914153063d27ed88e3bdc31b71198a198e921e011", size = 1964199, upload-time = "2025-04-23T18:31:31.025Z" }, - { url = "https://files.pythonhosted.org/packages/2d/1d/6bf34d6adb9debd9136bd197ca72642203ce9aaaa85cfcbfcf20f9696e83/pydantic_core-2.33.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c52b02ad8b4e2cf14ca7b3d918f3eb0ee91e63b3167c32591e57c4317e134f8f", size = 2120296, upload-time = "2025-04-23T18:31:32.514Z" }, - { url = "https://files.pythonhosted.org/packages/e0/94/2bd0aaf5a591e974b32a9f7123f16637776c304471a0ab33cf263cf5591a/pydantic_core-2.33.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:96081f1605125ba0855dfda83f6f3df5ec90c61195421ba72223de35ccfb2f88", size = 2676109, upload-time = "2025-04-23T18:31:33.958Z" }, - { url = "https://files.pythonhosted.org/packages/f9/41/4b043778cf9c4285d59742281a769eac371b9e47e35f98ad321349cc5d61/pydantic_core-2.33.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8f57a69461af2a5fa6e6bbd7a5f60d3b7e6cebb687f55106933188e79ad155c1", size = 2002028, upload-time = "2025-04-23T18:31:39.095Z" }, - { url = "https://files.pythonhosted.org/packages/cb/d5/7bb781bf2748ce3d03af04d5c969fa1308880e1dca35a9bd94e1a96a922e/pydantic_core-2.33.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:572c7e6c8bb4774d2ac88929e3d1f12bc45714ae5ee6d9a788a9fb35e60bb04b", size = 2100044, upload-time = "2025-04-23T18:31:41.034Z" }, - { url = "https://files.pythonhosted.org/packages/fe/36/def5e53e1eb0ad896785702a5bbfd25eed546cdcf4087ad285021a90ed53/pydantic_core-2.33.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:db4b41f9bd95fbe5acd76d89920336ba96f03e149097365afe1cb092fceb89a1", size = 2058881, upload-time = "2025-04-23T18:31:42.757Z" }, - { url = "https://files.pythonhosted.org/packages/01/6c/57f8d70b2ee57fc3dc8b9610315949837fa8c11d86927b9bb044f8705419/pydantic_core-2.33.2-cp312-cp312-musllinux_1_1_armv7l.whl", hash = "sha256:fa854f5cf7e33842a892e5c73f45327760bc7bc516339fda888c75ae60edaeb6", size = 2227034, upload-time = "2025-04-23T18:31:44.304Z" }, - { url = "https://files.pythonhosted.org/packages/27/b9/9c17f0396a82b3d5cbea4c24d742083422639e7bb1d5bf600e12cb176a13/pydantic_core-2.33.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:5f483cfb75ff703095c59e365360cb73e00185e01aaea067cd19acffd2ab20ea", size = 2234187, upload-time = "2025-04-23T18:31:45.891Z" }, - { url = "https://files.pythonhosted.org/packages/b0/6a/adf5734ffd52bf86d865093ad70b2ce543415e0e356f6cacabbc0d9ad910/pydantic_core-2.33.2-cp312-cp312-win32.whl", hash = "sha256:9cb1da0f5a471435a7bc7e439b8a728e8b61e59784b2af70d7c169f8dd8ae290", size = 1892628, upload-time = "2025-04-23T18:31:47.819Z" }, - { url = "https://files.pythonhosted.org/packages/43/e4/5479fecb3606c1368d496a825d8411e126133c41224c1e7238be58b87d7e/pydantic_core-2.33.2-cp312-cp312-win_amd64.whl", hash = "sha256:f941635f2a3d96b2973e867144fde513665c87f13fe0e193c158ac51bfaaa7b2", size = 1955866, upload-time = "2025-04-23T18:31:49.635Z" }, - { url = "https://files.pythonhosted.org/packages/0d/24/8b11e8b3e2be9dd82df4b11408a67c61bb4dc4f8e11b5b0fc888b38118b5/pydantic_core-2.33.2-cp312-cp312-win_arm64.whl", hash = "sha256:cca3868ddfaccfbc4bfb1d608e2ccaaebe0ae628e1416aeb9c4d88c001bb45ab", size = 1888894, upload-time = "2025-04-23T18:31:51.609Z" }, - { url = "https://files.pythonhosted.org/packages/46/8c/99040727b41f56616573a28771b1bfa08a3d3fe74d3d513f01251f79f172/pydantic_core-2.33.2-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:1082dd3e2d7109ad8b7da48e1d4710c8d06c253cbc4a27c1cff4fbcaa97a9e3f", size = 2015688, upload-time = "2025-04-23T18:31:53.175Z" }, - { url = "https://files.pythonhosted.org/packages/3a/cc/5999d1eb705a6cefc31f0b4a90e9f7fc400539b1a1030529700cc1b51838/pydantic_core-2.33.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f517ca031dfc037a9c07e748cefd8d96235088b83b4f4ba8939105d20fa1dcd6", size = 1844808, upload-time = "2025-04-23T18:31:54.79Z" }, - { url = "https://files.pythonhosted.org/packages/6f/5e/a0a7b8885c98889a18b6e376f344da1ef323d270b44edf8174d6bce4d622/pydantic_core-2.33.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0a9f2c9dd19656823cb8250b0724ee9c60a82f3cdf68a080979d13092a3b0fef", size = 1885580, upload-time = "2025-04-23T18:31:57.393Z" }, - { url = "https://files.pythonhosted.org/packages/3b/2a/953581f343c7d11a304581156618c3f592435523dd9d79865903272c256a/pydantic_core-2.33.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:2b0a451c263b01acebe51895bfb0e1cc842a5c666efe06cdf13846c7418caa9a", size = 1973859, upload-time = "2025-04-23T18:31:59.065Z" }, - { url = "https://files.pythonhosted.org/packages/e6/55/f1a813904771c03a3f97f676c62cca0c0a4138654107c1b61f19c644868b/pydantic_core-2.33.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1ea40a64d23faa25e62a70ad163571c0b342b8bf66d5fa612ac0dec4f069d916", size = 2120810, upload-time = "2025-04-23T18:32:00.78Z" }, - { url = "https://files.pythonhosted.org/packages/aa/c3/053389835a996e18853ba107a63caae0b9deb4a276c6b472931ea9ae6e48/pydantic_core-2.33.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0fb2d542b4d66f9470e8065c5469ec676978d625a8b7a363f07d9a501a9cb36a", size = 2676498, upload-time = "2025-04-23T18:32:02.418Z" }, - { url = "https://files.pythonhosted.org/packages/eb/3c/f4abd740877a35abade05e437245b192f9d0ffb48bbbbd708df33d3cda37/pydantic_core-2.33.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9fdac5d6ffa1b5a83bca06ffe7583f5576555e6c8b3a91fbd25ea7780f825f7d", size = 2000611, upload-time = "2025-04-23T18:32:04.152Z" }, - { url = "https://files.pythonhosted.org/packages/59/a7/63ef2fed1837d1121a894d0ce88439fe3e3b3e48c7543b2a4479eb99c2bd/pydantic_core-2.33.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:04a1a413977ab517154eebb2d326da71638271477d6ad87a769102f7c2488c56", size = 2107924, upload-time = "2025-04-23T18:32:06.129Z" }, - { url = "https://files.pythonhosted.org/packages/04/8f/2551964ef045669801675f1cfc3b0d74147f4901c3ffa42be2ddb1f0efc4/pydantic_core-2.33.2-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:c8e7af2f4e0194c22b5b37205bfb293d166a7344a5b0d0eaccebc376546d77d5", size = 2063196, upload-time = "2025-04-23T18:32:08.178Z" }, - { url = "https://files.pythonhosted.org/packages/26/bd/d9602777e77fc6dbb0c7db9ad356e9a985825547dce5ad1d30ee04903918/pydantic_core-2.33.2-cp313-cp313-musllinux_1_1_armv7l.whl", hash = "sha256:5c92edd15cd58b3c2d34873597a1e20f13094f59cf88068adb18947df5455b4e", size = 2236389, upload-time = "2025-04-23T18:32:10.242Z" }, - { url = "https://files.pythonhosted.org/packages/42/db/0e950daa7e2230423ab342ae918a794964b053bec24ba8af013fc7c94846/pydantic_core-2.33.2-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:65132b7b4a1c0beded5e057324b7e16e10910c106d43675d9bd87d4f38dde162", size = 2239223, upload-time = "2025-04-23T18:32:12.382Z" }, - { url = "https://files.pythonhosted.org/packages/58/4d/4f937099c545a8a17eb52cb67fe0447fd9a373b348ccfa9a87f141eeb00f/pydantic_core-2.33.2-cp313-cp313-win32.whl", hash = "sha256:52fb90784e0a242bb96ec53f42196a17278855b0f31ac7c3cc6f5c1ec4811849", size = 1900473, upload-time = "2025-04-23T18:32:14.034Z" }, - { url = "https://files.pythonhosted.org/packages/a0/75/4a0a9bac998d78d889def5e4ef2b065acba8cae8c93696906c3a91f310ca/pydantic_core-2.33.2-cp313-cp313-win_amd64.whl", hash = "sha256:c083a3bdd5a93dfe480f1125926afcdbf2917ae714bdb80b36d34318b2bec5d9", size = 1955269, upload-time = "2025-04-23T18:32:15.783Z" }, - { url = "https://files.pythonhosted.org/packages/f9/86/1beda0576969592f1497b4ce8e7bc8cbdf614c352426271b1b10d5f0aa64/pydantic_core-2.33.2-cp313-cp313-win_arm64.whl", hash = "sha256:e80b087132752f6b3d714f041ccf74403799d3b23a72722ea2e6ba2e892555b9", size = 1893921, upload-time = "2025-04-23T18:32:18.473Z" }, - { url = "https://files.pythonhosted.org/packages/a4/7d/e09391c2eebeab681df2b74bfe6c43422fffede8dc74187b2b0bf6fd7571/pydantic_core-2.33.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:61c18fba8e5e9db3ab908620af374db0ac1baa69f0f32df4f61ae23f15e586ac", size = 1806162, upload-time = "2025-04-23T18:32:20.188Z" }, - { url = "https://files.pythonhosted.org/packages/f1/3d/847b6b1fed9f8ed3bb95a9ad04fbd0b212e832d4f0f50ff4d9ee5a9f15cf/pydantic_core-2.33.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:95237e53bb015f67b63c91af7518a62a8660376a6a0db19b89acc77a4d6199f5", size = 1981560, upload-time = "2025-04-23T18:32:22.354Z" }, - { url = "https://files.pythonhosted.org/packages/6f/9a/e73262f6c6656262b5fdd723ad90f518f579b7bc8622e43a942eec53c938/pydantic_core-2.33.2-cp313-cp313t-win_amd64.whl", hash = "sha256:c2fc0a768ef76c15ab9238afa6da7f69895bb5d1ee83aeea2e3509af4472d0b9", size = 1935777, upload-time = "2025-04-23T18:32:25.088Z" }, - { url = "https://files.pythonhosted.org/packages/30/68/373d55e58b7e83ce371691f6eaa7175e3a24b956c44628eb25d7da007917/pydantic_core-2.33.2-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:5c4aa4e82353f65e548c476b37e64189783aa5384903bfea4f41580f255fddfa", size = 2023982, upload-time = "2025-04-23T18:32:53.14Z" }, - { url = "https://files.pythonhosted.org/packages/a4/16/145f54ac08c96a63d8ed6442f9dec17b2773d19920b627b18d4f10a061ea/pydantic_core-2.33.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:d946c8bf0d5c24bf4fe333af284c59a19358aa3ec18cb3dc4370080da1e8ad29", size = 1858412, upload-time = "2025-04-23T18:32:55.52Z" }, - { url = "https://files.pythonhosted.org/packages/41/b1/c6dc6c3e2de4516c0bb2c46f6a373b91b5660312342a0cf5826e38ad82fa/pydantic_core-2.33.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:87b31b6846e361ef83fedb187bb5b4372d0da3f7e28d85415efa92d6125d6e6d", size = 1892749, upload-time = "2025-04-23T18:32:57.546Z" }, - { url = "https://files.pythonhosted.org/packages/12/73/8cd57e20afba760b21b742106f9dbdfa6697f1570b189c7457a1af4cd8a0/pydantic_core-2.33.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:aa9d91b338f2df0508606f7009fde642391425189bba6d8c653afd80fd6bb64e", size = 2067527, upload-time = "2025-04-23T18:32:59.771Z" }, - { url = "https://files.pythonhosted.org/packages/e3/d5/0bb5d988cc019b3cba4a78f2d4b3854427fc47ee8ec8e9eaabf787da239c/pydantic_core-2.33.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:2058a32994f1fde4ca0480ab9d1e75a0e8c87c22b53a3ae66554f9af78f2fe8c", size = 2108225, upload-time = "2025-04-23T18:33:04.51Z" }, - { url = "https://files.pythonhosted.org/packages/f1/c5/00c02d1571913d496aabf146106ad8239dc132485ee22efe08085084ff7c/pydantic_core-2.33.2-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:0e03262ab796d986f978f79c943fc5f620381be7287148b8010b4097f79a39ec", size = 2069490, upload-time = "2025-04-23T18:33:06.391Z" }, - { url = "https://files.pythonhosted.org/packages/22/a8/dccc38768274d3ed3a59b5d06f59ccb845778687652daa71df0cab4040d7/pydantic_core-2.33.2-pp310-pypy310_pp73-musllinux_1_1_armv7l.whl", hash = "sha256:1a8695a8d00c73e50bff9dfda4d540b7dee29ff9b8053e38380426a85ef10052", size = 2237525, upload-time = "2025-04-23T18:33:08.44Z" }, - { url = "https://files.pythonhosted.org/packages/d4/e7/4f98c0b125dda7cf7ccd14ba936218397b44f50a56dd8c16a3091df116c3/pydantic_core-2.33.2-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:fa754d1850735a0b0e03bcffd9d4b4343eb417e47196e4485d9cca326073a42c", size = 2238446, upload-time = "2025-04-23T18:33:10.313Z" }, - { url = "https://files.pythonhosted.org/packages/ce/91/2ec36480fdb0b783cd9ef6795753c1dea13882f2e68e73bce76ae8c21e6a/pydantic_core-2.33.2-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:a11c8d26a50bfab49002947d3d237abe4d9e4b5bdc8846a63537b6488e197808", size = 2066678, upload-time = "2025-04-23T18:33:12.224Z" }, - { url = "https://files.pythonhosted.org/packages/7b/27/d4ae6487d73948d6f20dddcd94be4ea43e74349b56eba82e9bdee2d7494c/pydantic_core-2.33.2-pp311-pypy311_pp73-macosx_10_12_x86_64.whl", hash = "sha256:dd14041875d09cc0f9308e37a6f8b65f5585cf2598a53aa0123df8b129d481f8", size = 2025200, upload-time = "2025-04-23T18:33:14.199Z" }, - { url = "https://files.pythonhosted.org/packages/f1/b8/b3cb95375f05d33801024079b9392a5ab45267a63400bf1866e7ce0f0de4/pydantic_core-2.33.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:d87c561733f66531dced0da6e864f44ebf89a8fba55f31407b00c2f7f9449593", size = 1859123, upload-time = "2025-04-23T18:33:16.555Z" }, - { url = "https://files.pythonhosted.org/packages/05/bc/0d0b5adeda59a261cd30a1235a445bf55c7e46ae44aea28f7bd6ed46e091/pydantic_core-2.33.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2f82865531efd18d6e07a04a17331af02cb7a651583c418df8266f17a63c6612", size = 1892852, upload-time = "2025-04-23T18:33:18.513Z" }, - { url = "https://files.pythonhosted.org/packages/3e/11/d37bdebbda2e449cb3f519f6ce950927b56d62f0b84fd9cb9e372a26a3d5/pydantic_core-2.33.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2bfb5112df54209d820d7bf9317c7a6c9025ea52e49f46b6a2060104bba37de7", size = 2067484, upload-time = "2025-04-23T18:33:20.475Z" }, - { url = "https://files.pythonhosted.org/packages/8c/55/1f95f0a05ce72ecb02a8a8a1c3be0579bbc29b1d5ab68f1378b7bebc5057/pydantic_core-2.33.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:64632ff9d614e5eecfb495796ad51b0ed98c453e447a76bcbeeb69615079fc7e", size = 2108896, upload-time = "2025-04-23T18:33:22.501Z" }, - { url = "https://files.pythonhosted.org/packages/53/89/2b2de6c81fa131f423246a9109d7b2a375e83968ad0800d6e57d0574629b/pydantic_core-2.33.2-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:f889f7a40498cc077332c7ab6b4608d296d852182211787d4f3ee377aaae66e8", size = 2069475, upload-time = "2025-04-23T18:33:24.528Z" }, - { url = "https://files.pythonhosted.org/packages/b8/e9/1f7efbe20d0b2b10f6718944b5d8ece9152390904f29a78e68d4e7961159/pydantic_core-2.33.2-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl", hash = "sha256:de4b83bb311557e439b9e186f733f6c645b9417c84e2eb8203f3f820a4b988bf", size = 2239013, upload-time = "2025-04-23T18:33:26.621Z" }, - { url = "https://files.pythonhosted.org/packages/3c/b2/5309c905a93811524a49b4e031e9851a6b00ff0fb668794472ea7746b448/pydantic_core-2.33.2-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:82f68293f055f51b51ea42fafc74b6aad03e70e191799430b90c13d643059ebb", size = 2238715, upload-time = "2025-04-23T18:33:28.656Z" }, - { url = "https://files.pythonhosted.org/packages/32/56/8a7ca5d2cd2cda1d245d34b1c9a942920a718082ae8e54e5f3e5a58b7add/pydantic_core-2.33.2-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:329467cecfb529c925cf2bbd4d60d2c509bc2fb52a20c1045bf09bb70971a9c1", size = 2066757, upload-time = "2025-04-23T18:33:30.645Z" }, +sdist = { url = "https://files.pythonhosted.org/packages/71/70/23b021c950c2addd24ec408e9ab05d59b035b39d97cdc1130e1bce647bb6/pydantic_core-2.41.5.tar.gz", hash = "sha256:08daa51ea16ad373ffd5e7606252cc32f07bc72b28284b6bc9c6df804816476e", size = 460952, upload-time = "2025-11-04T13:43:49.098Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e8/72/74a989dd9f2084b3d9530b0915fdda64ac48831c30dbf7c72a41a5232db8/pydantic_core-2.41.5-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:a3a52f6156e73e7ccb0f8cced536adccb7042be67cb45f9562e12b319c119da6", size = 2105873, upload-time = "2025-11-04T13:39:31.373Z" }, + { url = "https://files.pythonhosted.org/packages/12/44/37e403fd9455708b3b942949e1d7febc02167662bf1a7da5b78ee1ea2842/pydantic_core-2.41.5-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:7f3bf998340c6d4b0c9a2f02d6a400e51f123b59565d74dc60d252ce888c260b", size = 1899826, upload-time = "2025-11-04T13:39:32.897Z" }, + { url = "https://files.pythonhosted.org/packages/33/7f/1d5cab3ccf44c1935a359d51a8a2a9e1a654b744b5e7f80d41b88d501eec/pydantic_core-2.41.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:378bec5c66998815d224c9ca994f1e14c0c21cb95d2f52b6021cc0b2a58f2a5a", size = 1917869, upload-time = "2025-11-04T13:39:34.469Z" }, + { url = "https://files.pythonhosted.org/packages/6e/6a/30d94a9674a7fe4f4744052ed6c5e083424510be1e93da5bc47569d11810/pydantic_core-2.41.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:e7b576130c69225432866fe2f4a469a85a54ade141d96fd396dffcf607b558f8", size = 2063890, upload-time = "2025-11-04T13:39:36.053Z" }, + { url = "https://files.pythonhosted.org/packages/50/be/76e5d46203fcb2750e542f32e6c371ffa9b8ad17364cf94bb0818dbfb50c/pydantic_core-2.41.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6cb58b9c66f7e4179a2d5e0f849c48eff5c1fca560994d6eb6543abf955a149e", size = 2229740, upload-time = "2025-11-04T13:39:37.753Z" }, + { url = "https://files.pythonhosted.org/packages/d3/ee/fed784df0144793489f87db310a6bbf8118d7b630ed07aa180d6067e653a/pydantic_core-2.41.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:88942d3a3dff3afc8288c21e565e476fc278902ae4d6d134f1eeda118cc830b1", size = 2350021, upload-time = "2025-11-04T13:39:40.94Z" }, + { url = "https://files.pythonhosted.org/packages/c8/be/8fed28dd0a180dca19e72c233cbf58efa36df055e5b9d90d64fd1740b828/pydantic_core-2.41.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f31d95a179f8d64d90f6831d71fa93290893a33148d890ba15de25642c5d075b", size = 2066378, upload-time = "2025-11-04T13:39:42.523Z" }, + { url = "https://files.pythonhosted.org/packages/b0/3b/698cf8ae1d536a010e05121b4958b1257f0b5522085e335360e53a6b1c8b/pydantic_core-2.41.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:c1df3d34aced70add6f867a8cf413e299177e0c22660cc767218373d0779487b", size = 2175761, upload-time = "2025-11-04T13:39:44.553Z" }, + { url = "https://files.pythonhosted.org/packages/b8/ba/15d537423939553116dea94ce02f9c31be0fa9d0b806d427e0308ec17145/pydantic_core-2.41.5-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:4009935984bd36bd2c774e13f9a09563ce8de4abaa7226f5108262fa3e637284", size = 2146303, upload-time = "2025-11-04T13:39:46.238Z" }, + { url = "https://files.pythonhosted.org/packages/58/7f/0de669bf37d206723795f9c90c82966726a2ab06c336deba4735b55af431/pydantic_core-2.41.5-cp311-cp311-musllinux_1_1_armv7l.whl", hash = "sha256:34a64bc3441dc1213096a20fe27e8e128bd3ff89921706e83c0b1ac971276594", size = 2340355, upload-time = "2025-11-04T13:39:48.002Z" }, + { url = "https://files.pythonhosted.org/packages/e5/de/e7482c435b83d7e3c3ee5ee4451f6e8973cff0eb6007d2872ce6383f6398/pydantic_core-2.41.5-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:c9e19dd6e28fdcaa5a1de679aec4141f691023916427ef9bae8584f9c2fb3b0e", size = 2319875, upload-time = "2025-11-04T13:39:49.705Z" }, + { url = "https://files.pythonhosted.org/packages/fe/e6/8c9e81bb6dd7560e33b9053351c29f30c8194b72f2d6932888581f503482/pydantic_core-2.41.5-cp311-cp311-win32.whl", hash = "sha256:2c010c6ded393148374c0f6f0bf89d206bf3217f201faa0635dcd56bd1520f6b", size = 1987549, upload-time = "2025-11-04T13:39:51.842Z" }, + { url = "https://files.pythonhosted.org/packages/11/66/f14d1d978ea94d1bc21fc98fcf570f9542fe55bfcc40269d4e1a21c19bf7/pydantic_core-2.41.5-cp311-cp311-win_amd64.whl", hash = "sha256:76ee27c6e9c7f16f47db7a94157112a2f3a00e958bc626e2f4ee8bec5c328fbe", size = 2011305, upload-time = "2025-11-04T13:39:53.485Z" }, + { url = "https://files.pythonhosted.org/packages/56/d8/0e271434e8efd03186c5386671328154ee349ff0354d83c74f5caaf096ed/pydantic_core-2.41.5-cp311-cp311-win_arm64.whl", hash = "sha256:4bc36bbc0b7584de96561184ad7f012478987882ebf9f9c389b23f432ea3d90f", size = 1972902, upload-time = "2025-11-04T13:39:56.488Z" }, + { url = "https://files.pythonhosted.org/packages/5f/5d/5f6c63eebb5afee93bcaae4ce9a898f3373ca23df3ccaef086d0233a35a7/pydantic_core-2.41.5-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:f41a7489d32336dbf2199c8c0a215390a751c5b014c2c1c5366e817202e9cdf7", size = 2110990, upload-time = "2025-11-04T13:39:58.079Z" }, + { url = "https://files.pythonhosted.org/packages/aa/32/9c2e8ccb57c01111e0fd091f236c7b371c1bccea0fa85247ac55b1e2b6b6/pydantic_core-2.41.5-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:070259a8818988b9a84a449a2a7337c7f430a22acc0859c6b110aa7212a6d9c0", size = 1896003, upload-time = "2025-11-04T13:39:59.956Z" }, + { url = "https://files.pythonhosted.org/packages/68/b8/a01b53cb0e59139fbc9e4fda3e9724ede8de279097179be4ff31f1abb65a/pydantic_core-2.41.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e96cea19e34778f8d59fe40775a7a574d95816eb150850a85a7a4c8f4b94ac69", size = 1919200, upload-time = "2025-11-04T13:40:02.241Z" }, + { url = "https://files.pythonhosted.org/packages/38/de/8c36b5198a29bdaade07b5985e80a233a5ac27137846f3bc2d3b40a47360/pydantic_core-2.41.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ed2e99c456e3fadd05c991f8f437ef902e00eedf34320ba2b0842bd1c3ca3a75", size = 2052578, upload-time = "2025-11-04T13:40:04.401Z" }, + { url = "https://files.pythonhosted.org/packages/00/b5/0e8e4b5b081eac6cb3dbb7e60a65907549a1ce035a724368c330112adfdd/pydantic_core-2.41.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:65840751b72fbfd82c3c640cff9284545342a4f1eb1586ad0636955b261b0b05", size = 2208504, upload-time = "2025-11-04T13:40:06.072Z" }, + { url = "https://files.pythonhosted.org/packages/77/56/87a61aad59c7c5b9dc8caad5a41a5545cba3810c3e828708b3d7404f6cef/pydantic_core-2.41.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e536c98a7626a98feb2d3eaf75944ef6f3dbee447e1f841eae16f2f0a72d8ddc", size = 2335816, upload-time = "2025-11-04T13:40:07.835Z" }, + { url = "https://files.pythonhosted.org/packages/0d/76/941cc9f73529988688a665a5c0ecff1112b3d95ab48f81db5f7606f522d3/pydantic_core-2.41.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eceb81a8d74f9267ef4081e246ffd6d129da5d87e37a77c9bde550cb04870c1c", size = 2075366, upload-time = "2025-11-04T13:40:09.804Z" }, + { url = "https://files.pythonhosted.org/packages/d3/43/ebef01f69baa07a482844faaa0a591bad1ef129253ffd0cdaa9d8a7f72d3/pydantic_core-2.41.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:d38548150c39b74aeeb0ce8ee1d8e82696f4a4e16ddc6de7b1d8823f7de4b9b5", size = 2171698, upload-time = "2025-11-04T13:40:12.004Z" }, + { url = "https://files.pythonhosted.org/packages/b1/87/41f3202e4193e3bacfc2c065fab7706ebe81af46a83d3e27605029c1f5a6/pydantic_core-2.41.5-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:c23e27686783f60290e36827f9c626e63154b82b116d7fe9adba1fda36da706c", size = 2132603, upload-time = "2025-11-04T13:40:13.868Z" }, + { url = "https://files.pythonhosted.org/packages/49/7d/4c00df99cb12070b6bccdef4a195255e6020a550d572768d92cc54dba91a/pydantic_core-2.41.5-cp312-cp312-musllinux_1_1_armv7l.whl", hash = "sha256:482c982f814460eabe1d3bb0adfdc583387bd4691ef00b90575ca0d2b6fe2294", size = 2329591, upload-time = "2025-11-04T13:40:15.672Z" }, + { url = "https://files.pythonhosted.org/packages/cc/6a/ebf4b1d65d458f3cda6a7335d141305dfa19bdc61140a884d165a8a1bbc7/pydantic_core-2.41.5-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:bfea2a5f0b4d8d43adf9d7b8bf019fb46fdd10a2e5cde477fbcb9d1fa08c68e1", size = 2319068, upload-time = "2025-11-04T13:40:17.532Z" }, + { url = "https://files.pythonhosted.org/packages/49/3b/774f2b5cd4192d5ab75870ce4381fd89cf218af999515baf07e7206753f0/pydantic_core-2.41.5-cp312-cp312-win32.whl", hash = "sha256:b74557b16e390ec12dca509bce9264c3bbd128f8a2c376eaa68003d7f327276d", size = 1985908, upload-time = "2025-11-04T13:40:19.309Z" }, + { url = "https://files.pythonhosted.org/packages/86/45/00173a033c801cacf67c190fef088789394feaf88a98a7035b0e40d53dc9/pydantic_core-2.41.5-cp312-cp312-win_amd64.whl", hash = "sha256:1962293292865bca8e54702b08a4f26da73adc83dd1fcf26fbc875b35d81c815", size = 2020145, upload-time = "2025-11-04T13:40:21.548Z" }, + { url = "https://files.pythonhosted.org/packages/f9/22/91fbc821fa6d261b376a3f73809f907cec5ca6025642c463d3488aad22fb/pydantic_core-2.41.5-cp312-cp312-win_arm64.whl", hash = "sha256:1746d4a3d9a794cacae06a5eaaccb4b8643a131d45fbc9af23e353dc0a5ba5c3", size = 1976179, upload-time = "2025-11-04T13:40:23.393Z" }, + { url = "https://files.pythonhosted.org/packages/87/06/8806241ff1f70d9939f9af039c6c35f2360cf16e93c2ca76f184e76b1564/pydantic_core-2.41.5-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:941103c9be18ac8daf7b7adca8228f8ed6bb7a1849020f643b3a14d15b1924d9", size = 2120403, upload-time = "2025-11-04T13:40:25.248Z" }, + { url = "https://files.pythonhosted.org/packages/94/02/abfa0e0bda67faa65fef1c84971c7e45928e108fe24333c81f3bfe35d5f5/pydantic_core-2.41.5-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:112e305c3314f40c93998e567879e887a3160bb8689ef3d2c04b6cc62c33ac34", size = 1896206, upload-time = "2025-11-04T13:40:27.099Z" }, + { url = "https://files.pythonhosted.org/packages/15/df/a4c740c0943e93e6500f9eb23f4ca7ec9bf71b19e608ae5b579678c8d02f/pydantic_core-2.41.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0cbaad15cb0c90aa221d43c00e77bb33c93e8d36e0bf74760cd00e732d10a6a0", size = 1919307, upload-time = "2025-11-04T13:40:29.806Z" }, + { url = "https://files.pythonhosted.org/packages/9a/e3/6324802931ae1d123528988e0e86587c2072ac2e5394b4bc2bc34b61ff6e/pydantic_core-2.41.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:03ca43e12fab6023fc79d28ca6b39b05f794ad08ec2feccc59a339b02f2b3d33", size = 2063258, upload-time = "2025-11-04T13:40:33.544Z" }, + { url = "https://files.pythonhosted.org/packages/c9/d4/2230d7151d4957dd79c3044ea26346c148c98fbf0ee6ebd41056f2d62ab5/pydantic_core-2.41.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc799088c08fa04e43144b164feb0c13f9a0bc40503f8df3e9fde58a3c0c101e", size = 2214917, upload-time = "2025-11-04T13:40:35.479Z" }, + { url = "https://files.pythonhosted.org/packages/e6/9f/eaac5df17a3672fef0081b6c1bb0b82b33ee89aa5cec0d7b05f52fd4a1fa/pydantic_core-2.41.5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:97aeba56665b4c3235a0e52b2c2f5ae9cd071b8a8310ad27bddb3f7fb30e9aa2", size = 2332186, upload-time = "2025-11-04T13:40:37.436Z" }, + { url = "https://files.pythonhosted.org/packages/cf/4e/35a80cae583a37cf15604b44240e45c05e04e86f9cfd766623149297e971/pydantic_core-2.41.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:406bf18d345822d6c21366031003612b9c77b3e29ffdb0f612367352aab7d586", size = 2073164, upload-time = "2025-11-04T13:40:40.289Z" }, + { url = "https://files.pythonhosted.org/packages/bf/e3/f6e262673c6140dd3305d144d032f7bd5f7497d3871c1428521f19f9efa2/pydantic_core-2.41.5-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b93590ae81f7010dbe380cdeab6f515902ebcbefe0b9327cc4804d74e93ae69d", size = 2179146, upload-time = "2025-11-04T13:40:42.809Z" }, + { url = "https://files.pythonhosted.org/packages/75/c7/20bd7fc05f0c6ea2056a4565c6f36f8968c0924f19b7d97bbfea55780e73/pydantic_core-2.41.5-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:01a3d0ab748ee531f4ea6c3e48ad9dac84ddba4b0d82291f87248f2f9de8d740", size = 2137788, upload-time = "2025-11-04T13:40:44.752Z" }, + { url = "https://files.pythonhosted.org/packages/3a/8d/34318ef985c45196e004bc46c6eab2eda437e744c124ef0dbe1ff2c9d06b/pydantic_core-2.41.5-cp313-cp313-musllinux_1_1_armv7l.whl", hash = "sha256:6561e94ba9dacc9c61bce40e2d6bdc3bfaa0259d3ff36ace3b1e6901936d2e3e", size = 2340133, upload-time = "2025-11-04T13:40:46.66Z" }, + { url = "https://files.pythonhosted.org/packages/9c/59/013626bf8c78a5a5d9350d12e7697d3d4de951a75565496abd40ccd46bee/pydantic_core-2.41.5-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:915c3d10f81bec3a74fbd4faebe8391013ba61e5a1a8d48c4455b923bdda7858", size = 2324852, upload-time = "2025-11-04T13:40:48.575Z" }, + { url = "https://files.pythonhosted.org/packages/1a/d9/c248c103856f807ef70c18a4f986693a46a8ffe1602e5d361485da502d20/pydantic_core-2.41.5-cp313-cp313-win32.whl", hash = "sha256:650ae77860b45cfa6e2cdafc42618ceafab3a2d9a3811fcfbd3bbf8ac3c40d36", size = 1994679, upload-time = "2025-11-04T13:40:50.619Z" }, + { url = "https://files.pythonhosted.org/packages/9e/8b/341991b158ddab181cff136acd2552c9f35bd30380422a639c0671e99a91/pydantic_core-2.41.5-cp313-cp313-win_amd64.whl", hash = "sha256:79ec52ec461e99e13791ec6508c722742ad745571f234ea6255bed38c6480f11", size = 2019766, upload-time = "2025-11-04T13:40:52.631Z" }, + { url = "https://files.pythonhosted.org/packages/73/7d/f2f9db34af103bea3e09735bb40b021788a5e834c81eedb541991badf8f5/pydantic_core-2.41.5-cp313-cp313-win_arm64.whl", hash = "sha256:3f84d5c1b4ab906093bdc1ff10484838aca54ef08de4afa9de0f5f14d69639cd", size = 1981005, upload-time = "2025-11-04T13:40:54.734Z" }, + { url = "https://files.pythonhosted.org/packages/ea/28/46b7c5c9635ae96ea0fbb779e271a38129df2550f763937659ee6c5dbc65/pydantic_core-2.41.5-cp314-cp314-macosx_10_12_x86_64.whl", hash = "sha256:3f37a19d7ebcdd20b96485056ba9e8b304e27d9904d233d7b1015db320e51f0a", size = 2119622, upload-time = "2025-11-04T13:40:56.68Z" }, + { url = "https://files.pythonhosted.org/packages/74/1a/145646e5687e8d9a1e8d09acb278c8535ebe9e972e1f162ed338a622f193/pydantic_core-2.41.5-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:1d1d9764366c73f996edd17abb6d9d7649a7eb690006ab6adbda117717099b14", size = 1891725, upload-time = "2025-11-04T13:40:58.807Z" }, + { url = "https://files.pythonhosted.org/packages/23/04/e89c29e267b8060b40dca97bfc64a19b2a3cf99018167ea1677d96368273/pydantic_core-2.41.5-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:25e1c2af0fce638d5f1988b686f3b3ea8cd7de5f244ca147c777769e798a9cd1", size = 1915040, upload-time = "2025-11-04T13:41:00.853Z" }, + { url = "https://files.pythonhosted.org/packages/84/a3/15a82ac7bd97992a82257f777b3583d3e84bdb06ba6858f745daa2ec8a85/pydantic_core-2.41.5-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:506d766a8727beef16b7adaeb8ee6217c64fc813646b424d0804d67c16eddb66", size = 2063691, upload-time = "2025-11-04T13:41:03.504Z" }, + { url = "https://files.pythonhosted.org/packages/74/9b/0046701313c6ef08c0c1cf0e028c67c770a4e1275ca73131563c5f2a310a/pydantic_core-2.41.5-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4819fa52133c9aa3c387b3328f25c1facc356491e6135b459f1de698ff64d869", size = 2213897, upload-time = "2025-11-04T13:41:05.804Z" }, + { url = "https://files.pythonhosted.org/packages/8a/cd/6bac76ecd1b27e75a95ca3a9a559c643b3afcd2dd62086d4b7a32a18b169/pydantic_core-2.41.5-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2b761d210c9ea91feda40d25b4efe82a1707da2ef62901466a42492c028553a2", size = 2333302, upload-time = "2025-11-04T13:41:07.809Z" }, + { url = "https://files.pythonhosted.org/packages/4c/d2/ef2074dc020dd6e109611a8be4449b98cd25e1b9b8a303c2f0fca2f2bcf7/pydantic_core-2.41.5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:22f0fb8c1c583a3b6f24df2470833b40207e907b90c928cc8d3594b76f874375", size = 2064877, upload-time = "2025-11-04T13:41:09.827Z" }, + { url = "https://files.pythonhosted.org/packages/18/66/e9db17a9a763d72f03de903883c057b2592c09509ccfe468187f2a2eef29/pydantic_core-2.41.5-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:2782c870e99878c634505236d81e5443092fba820f0373997ff75f90f68cd553", size = 2180680, upload-time = "2025-11-04T13:41:12.379Z" }, + { url = "https://files.pythonhosted.org/packages/d3/9e/3ce66cebb929f3ced22be85d4c2399b8e85b622db77dad36b73c5387f8f8/pydantic_core-2.41.5-cp314-cp314-musllinux_1_1_aarch64.whl", hash = "sha256:0177272f88ab8312479336e1d777f6b124537d47f2123f89cb37e0accea97f90", size = 2138960, upload-time = "2025-11-04T13:41:14.627Z" }, + { url = "https://files.pythonhosted.org/packages/a6/62/205a998f4327d2079326b01abee48e502ea739d174f0a89295c481a2272e/pydantic_core-2.41.5-cp314-cp314-musllinux_1_1_armv7l.whl", hash = "sha256:63510af5e38f8955b8ee5687740d6ebf7c2a0886d15a6d65c32814613681bc07", size = 2339102, upload-time = "2025-11-04T13:41:16.868Z" }, + { url = "https://files.pythonhosted.org/packages/3c/0d/f05e79471e889d74d3d88f5bd20d0ed189ad94c2423d81ff8d0000aab4ff/pydantic_core-2.41.5-cp314-cp314-musllinux_1_1_x86_64.whl", hash = "sha256:e56ba91f47764cc14f1daacd723e3e82d1a89d783f0f5afe9c364b8bb491ccdb", size = 2326039, upload-time = "2025-11-04T13:41:18.934Z" }, + { url = "https://files.pythonhosted.org/packages/ec/e1/e08a6208bb100da7e0c4b288eed624a703f4d129bde2da475721a80cab32/pydantic_core-2.41.5-cp314-cp314-win32.whl", hash = "sha256:aec5cf2fd867b4ff45b9959f8b20ea3993fc93e63c7363fe6851424c8a7e7c23", size = 1995126, upload-time = "2025-11-04T13:41:21.418Z" }, + { url = "https://files.pythonhosted.org/packages/48/5d/56ba7b24e9557f99c9237e29f5c09913c81eeb2f3217e40e922353668092/pydantic_core-2.41.5-cp314-cp314-win_amd64.whl", hash = "sha256:8e7c86f27c585ef37c35e56a96363ab8de4e549a95512445b85c96d3e2f7c1bf", size = 2015489, upload-time = "2025-11-04T13:41:24.076Z" }, + { url = "https://files.pythonhosted.org/packages/4e/bb/f7a190991ec9e3e0ba22e4993d8755bbc4a32925c0b5b42775c03e8148f9/pydantic_core-2.41.5-cp314-cp314-win_arm64.whl", hash = "sha256:e672ba74fbc2dc8eea59fb6d4aed6845e6905fc2a8afe93175d94a83ba2a01a0", size = 1977288, upload-time = "2025-11-04T13:41:26.33Z" }, + { url = "https://files.pythonhosted.org/packages/92/ed/77542d0c51538e32e15afe7899d79efce4b81eee631d99850edc2f5e9349/pydantic_core-2.41.5-cp314-cp314t-macosx_10_12_x86_64.whl", hash = "sha256:8566def80554c3faa0e65ac30ab0932b9e3a5cd7f8323764303d468e5c37595a", size = 2120255, upload-time = "2025-11-04T13:41:28.569Z" }, + { url = "https://files.pythonhosted.org/packages/bb/3d/6913dde84d5be21e284439676168b28d8bbba5600d838b9dca99de0fad71/pydantic_core-2.41.5-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:b80aa5095cd3109962a298ce14110ae16b8c1aece8b72f9dafe81cf597ad80b3", size = 1863760, upload-time = "2025-11-04T13:41:31.055Z" }, + { url = "https://files.pythonhosted.org/packages/5a/f0/e5e6b99d4191da102f2b0eb9687aaa7f5bea5d9964071a84effc3e40f997/pydantic_core-2.41.5-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3006c3dd9ba34b0c094c544c6006cc79e87d8612999f1a5d43b769b89181f23c", size = 1878092, upload-time = "2025-11-04T13:41:33.21Z" }, + { url = "https://files.pythonhosted.org/packages/71/48/36fb760642d568925953bcc8116455513d6e34c4beaa37544118c36aba6d/pydantic_core-2.41.5-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:72f6c8b11857a856bcfa48c86f5368439f74453563f951e473514579d44aa612", size = 2053385, upload-time = "2025-11-04T13:41:35.508Z" }, + { url = "https://files.pythonhosted.org/packages/20/25/92dc684dd8eb75a234bc1c764b4210cf2646479d54b47bf46061657292a8/pydantic_core-2.41.5-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5cb1b2f9742240e4bb26b652a5aeb840aa4b417c7748b6f8387927bc6e45e40d", size = 2218832, upload-time = "2025-11-04T13:41:37.732Z" }, + { url = "https://files.pythonhosted.org/packages/e2/09/f53e0b05023d3e30357d82eb35835d0f6340ca344720a4599cd663dca599/pydantic_core-2.41.5-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:bd3d54f38609ff308209bd43acea66061494157703364ae40c951f83ba99a1a9", size = 2327585, upload-time = "2025-11-04T13:41:40Z" }, + { url = "https://files.pythonhosted.org/packages/aa/4e/2ae1aa85d6af35a39b236b1b1641de73f5a6ac4d5a7509f77b814885760c/pydantic_core-2.41.5-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2ff4321e56e879ee8d2a879501c8e469414d948f4aba74a2d4593184eb326660", size = 2041078, upload-time = "2025-11-04T13:41:42.323Z" }, + { url = "https://files.pythonhosted.org/packages/cd/13/2e215f17f0ef326fc72afe94776edb77525142c693767fc347ed6288728d/pydantic_core-2.41.5-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:d0d2568a8c11bf8225044aa94409e21da0cb09dcdafe9ecd10250b2baad531a9", size = 2173914, upload-time = "2025-11-04T13:41:45.221Z" }, + { url = "https://files.pythonhosted.org/packages/02/7a/f999a6dcbcd0e5660bc348a3991c8915ce6599f4f2c6ac22f01d7a10816c/pydantic_core-2.41.5-cp314-cp314t-musllinux_1_1_aarch64.whl", hash = "sha256:a39455728aabd58ceabb03c90e12f71fd30fa69615760a075b9fec596456ccc3", size = 2129560, upload-time = "2025-11-04T13:41:47.474Z" }, + { url = "https://files.pythonhosted.org/packages/3a/b1/6c990ac65e3b4c079a4fb9f5b05f5b013afa0f4ed6780a3dd236d2cbdc64/pydantic_core-2.41.5-cp314-cp314t-musllinux_1_1_armv7l.whl", hash = "sha256:239edca560d05757817c13dc17c50766136d21f7cd0fac50295499ae24f90fdf", size = 2329244, upload-time = "2025-11-04T13:41:49.992Z" }, + { url = "https://files.pythonhosted.org/packages/d9/02/3c562f3a51afd4d88fff8dffb1771b30cfdfd79befd9883ee094f5b6c0d8/pydantic_core-2.41.5-cp314-cp314t-musllinux_1_1_x86_64.whl", hash = "sha256:2a5e06546e19f24c6a96a129142a75cee553cc018ffee48a460059b1185f4470", size = 2331955, upload-time = "2025-11-04T13:41:54.079Z" }, + { url = "https://files.pythonhosted.org/packages/5c/96/5fb7d8c3c17bc8c62fdb031c47d77a1af698f1d7a406b0f79aaa1338f9ad/pydantic_core-2.41.5-cp314-cp314t-win32.whl", hash = "sha256:b4ececa40ac28afa90871c2cc2b9ffd2ff0bf749380fbdf57d165fd23da353aa", size = 1988906, upload-time = "2025-11-04T13:41:56.606Z" }, + { url = "https://files.pythonhosted.org/packages/22/ed/182129d83032702912c2e2d8bbe33c036f342cc735737064668585dac28f/pydantic_core-2.41.5-cp314-cp314t-win_amd64.whl", hash = "sha256:80aa89cad80b32a912a65332f64a4450ed00966111b6615ca6816153d3585a8c", size = 1981607, upload-time = "2025-11-04T13:41:58.889Z" }, + { url = "https://files.pythonhosted.org/packages/9f/ed/068e41660b832bb0b1aa5b58011dea2a3fe0ba7861ff38c4d4904c1c1a99/pydantic_core-2.41.5-cp314-cp314t-win_arm64.whl", hash = "sha256:35b44f37a3199f771c3eaa53051bc8a70cd7b54f333531c59e29fd4db5d15008", size = 1974769, upload-time = "2025-11-04T13:42:01.186Z" }, + { url = "https://files.pythonhosted.org/packages/11/72/90fda5ee3b97e51c494938a4a44c3a35a9c96c19bba12372fb9c634d6f57/pydantic_core-2.41.5-graalpy311-graalpy242_311_native-macosx_10_12_x86_64.whl", hash = "sha256:b96d5f26b05d03cc60f11a7761a5ded1741da411e7fe0909e27a5e6a0cb7b034", size = 2115441, upload-time = "2025-11-04T13:42:39.557Z" }, + { url = "https://files.pythonhosted.org/packages/1f/53/8942f884fa33f50794f119012dc6a1a02ac43a56407adaac20463df8e98f/pydantic_core-2.41.5-graalpy311-graalpy242_311_native-macosx_11_0_arm64.whl", hash = "sha256:634e8609e89ceecea15e2d61bc9ac3718caaaa71963717bf3c8f38bfde64242c", size = 1930291, upload-time = "2025-11-04T13:42:42.169Z" }, + { url = "https://files.pythonhosted.org/packages/79/c8/ecb9ed9cd942bce09fc888ee960b52654fbdbede4ba6c2d6e0d3b1d8b49c/pydantic_core-2.41.5-graalpy311-graalpy242_311_native-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:93e8740d7503eb008aa2df04d3b9735f845d43ae845e6dcd2be0b55a2da43cd2", size = 1948632, upload-time = "2025-11-04T13:42:44.564Z" }, + { url = "https://files.pythonhosted.org/packages/2e/1b/687711069de7efa6af934e74f601e2a4307365e8fdc404703afc453eab26/pydantic_core-2.41.5-graalpy311-graalpy242_311_native-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f15489ba13d61f670dcc96772e733aad1a6f9c429cc27574c6cdaed82d0146ad", size = 2138905, upload-time = "2025-11-04T13:42:47.156Z" }, + { url = "https://files.pythonhosted.org/packages/09/32/59b0c7e63e277fa7911c2fc70ccfb45ce4b98991e7ef37110663437005af/pydantic_core-2.41.5-graalpy312-graalpy250_312_native-macosx_10_12_x86_64.whl", hash = "sha256:7da7087d756b19037bc2c06edc6c170eeef3c3bafcb8f532ff17d64dc427adfd", size = 2110495, upload-time = "2025-11-04T13:42:49.689Z" }, + { url = "https://files.pythonhosted.org/packages/aa/81/05e400037eaf55ad400bcd318c05bb345b57e708887f07ddb2d20e3f0e98/pydantic_core-2.41.5-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl", hash = "sha256:aabf5777b5c8ca26f7824cb4a120a740c9588ed58df9b2d196ce92fba42ff8dc", size = 1915388, upload-time = "2025-11-04T13:42:52.215Z" }, + { url = "https://files.pythonhosted.org/packages/6e/0d/e3549b2399f71d56476b77dbf3cf8937cec5cd70536bdc0e374a421d0599/pydantic_core-2.41.5-graalpy312-graalpy250_312_native-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c007fe8a43d43b3969e8469004e9845944f1a80e6acd47c150856bb87f230c56", size = 1942879, upload-time = "2025-11-04T13:42:56.483Z" }, + { url = "https://files.pythonhosted.org/packages/f7/07/34573da085946b6a313d7c42f82f16e8920bfd730665de2d11c0c37a74b5/pydantic_core-2.41.5-graalpy312-graalpy250_312_native-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:76d0819de158cd855d1cbb8fcafdf6f5cf1eb8e470abe056d5d161106e38062b", size = 2139017, upload-time = "2025-11-04T13:42:59.471Z" }, + { url = "https://files.pythonhosted.org/packages/5f/9b/1b3f0e9f9305839d7e84912f9e8bfbd191ed1b1ef48083609f0dabde978c/pydantic_core-2.41.5-pp311-pypy311_pp73-macosx_10_12_x86_64.whl", hash = "sha256:b2379fa7ed44ddecb5bfe4e48577d752db9fc10be00a6b7446e9663ba143de26", size = 2101980, upload-time = "2025-11-04T13:43:25.97Z" }, + { url = "https://files.pythonhosted.org/packages/a4/ed/d71fefcb4263df0da6a85b5d8a7508360f2f2e9b3bf5814be9c8bccdccc1/pydantic_core-2.41.5-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:266fb4cbf5e3cbd0b53669a6d1b039c45e3ce651fd5442eff4d07c2cc8d66808", size = 1923865, upload-time = "2025-11-04T13:43:28.763Z" }, + { url = "https://files.pythonhosted.org/packages/ce/3a/626b38db460d675f873e4444b4bb030453bbe7b4ba55df821d026a0493c4/pydantic_core-2.41.5-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:58133647260ea01e4d0500089a8c4f07bd7aa6ce109682b1426394988d8aaacc", size = 2134256, upload-time = "2025-11-04T13:43:31.71Z" }, + { url = "https://files.pythonhosted.org/packages/83/d9/8412d7f06f616bbc053d30cb4e5f76786af3221462ad5eee1f202021eb4e/pydantic_core-2.41.5-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:287dad91cfb551c363dc62899a80e9e14da1f0e2b6ebde82c806612ca2a13ef1", size = 2174762, upload-time = "2025-11-04T13:43:34.744Z" }, + { url = "https://files.pythonhosted.org/packages/55/4c/162d906b8e3ba3a99354e20faa1b49a85206c47de97a639510a0e673f5da/pydantic_core-2.41.5-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:03b77d184b9eb40240ae9fd676ca364ce1085f203e1b1256f8ab9984dca80a84", size = 2143141, upload-time = "2025-11-04T13:43:37.701Z" }, + { url = "https://files.pythonhosted.org/packages/1f/f2/f11dd73284122713f5f89fc940f370d035fa8e1e078d446b3313955157fe/pydantic_core-2.41.5-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl", hash = "sha256:a668ce24de96165bb239160b3d854943128f4334822900534f2fe947930e5770", size = 2330317, upload-time = "2025-11-04T13:43:40.406Z" }, + { url = "https://files.pythonhosted.org/packages/88/9d/b06ca6acfe4abb296110fb1273a4d848a0bfb2ff65f3ee92127b3244e16b/pydantic_core-2.41.5-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:f14f8f046c14563f8eb3f45f499cc658ab8d10072961e07225e507adb700e93f", size = 2316992, upload-time = "2025-11-04T13:43:43.602Z" }, + { url = "https://files.pythonhosted.org/packages/36/c7/cfc8e811f061c841d7990b0201912c3556bfeb99cdcb7ed24adc8d6f8704/pydantic_core-2.41.5-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:56121965f7a4dc965bff783d70b907ddf3d57f6eba29b6d2e5dabfaf07799c51", size = 2145302, upload-time = "2025-11-04T13:43:46.64Z" }, ] [[package]] name = "pydantic-settings" -version = "2.9.1" +version = "2.12.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "pydantic" }, { name = "python-dotenv" }, { name = "typing-inspection" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/67/1d/42628a2c33e93f8e9acbde0d5d735fa0850f3e6a2f8cb1eb6c40b9a732ac/pydantic_settings-2.9.1.tar.gz", hash = "sha256:c509bf79d27563add44e8446233359004ed85066cd096d8b510f715e6ef5d268", size = 163234, upload-time = "2025-04-18T16:44:48.265Z" } +sdist = { url = "https://files.pythonhosted.org/packages/43/4b/ac7e0aae12027748076d72a8764ff1c9d82ca75a7a52622e67ed3f765c54/pydantic_settings-2.12.0.tar.gz", hash = "sha256:005538ef951e3c2a68e1c08b292b5f2e71490def8589d4221b95dab00dafcfd0", size = 194184, upload-time = "2025-11-10T14:25:47.013Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/b6/5f/d6d641b490fd3ec2c4c13b4244d68deea3a1b970a97be64f34fb5504ff72/pydantic_settings-2.9.1-py3-none-any.whl", hash = "sha256:59b4f431b1defb26fe620c71a7d3968a710d719f5f4cdbbdb7926edeb770f6ef", size = 44356, upload-time = "2025-04-18T16:44:46.617Z" }, + { url = "https://files.pythonhosted.org/packages/c1/60/5d4751ba3f4a40a6891f24eec885f51afd78d208498268c734e256fb13c4/pydantic_settings-2.12.0-py3-none-any.whl", hash = "sha256:fddb9fd99a5b18da837b29710391e945b1e30c135477f484084ee513adb93809", size = 51880, upload-time = "2025-11-10T14:25:45.546Z" }, ] [[package]] @@ -11439,66 +10299,82 @@ wheels = [ [[package]] name = "pydot" -version = "4.0.0" +version = "4.0.1" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "pyparsing" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/d1/c3/6034ed1ebf2e3ba95a0e35fa7c43104e40444c0ed2b5325702c63e824dbf/pydot-4.0.0.tar.gz", hash = "sha256:12f16493337cade2f7631b87c8ccd299ba2e251f3ee5d0732a058df2887afe97", size = 161793, upload-time = "2025-05-04T11:13:03.214Z" } +sdist = { url = "https://files.pythonhosted.org/packages/50/35/b17cb89ff865484c6a20ef46bf9d95a5f07328292578de0b295f4a6beec2/pydot-4.0.1.tar.gz", hash = "sha256:c2148f681c4a33e08bf0e26a9e5f8e4099a82e0e2a068098f32ce86577364ad5", size = 162594, upload-time = "2025-06-17T20:09:56.454Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/0a/16/984c0cf5073a23154b1f95c9d131b14c9fea83bfadae4ba8fc169daded11/pydot-4.0.0-py3-none-any.whl", hash = "sha256:cf86e13a6cfe2a96758a9702537f77e0ac1368db8ef277b4d3b34473ea425c97", size = 37535, upload-time = "2025-05-04T11:13:01.458Z" }, + { url = "https://files.pythonhosted.org/packages/7e/32/a7125fb28c4261a627f999d5fb4afff25b523800faed2c30979949d6facd/pydot-4.0.1-py3-none-any.whl", hash = "sha256:869c0efadd2708c0be1f916eb669f3d664ca684bc57ffb7ecc08e70d5e93fee6", size = 37087, upload-time = "2025-06-17T20:09:55.25Z" }, ] [[package]] name = "pygit2" -version = "1.18.0" +version = "1.19.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "cffi" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/c1/4a/72a5f3572912d93d8096f8447a20fe3aff5b5dc65aca08a2083eae54d148/pygit2-1.18.0.tar.gz", hash = "sha256:fbd01d04a4d2ce289aaa02cf858043679bf0dd1f9855c6b88ed95382c1f5011a", size = 773270, upload-time = "2025-04-24T19:07:37.273Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/40/ca/bc7081416916c1f10b4e4f1a723d39c3a468a9a3cd452e8756066624efff/pygit2-1.18.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:2c5606a90c246a90490f30fc4192cf6077391cbef0e7417f690edf964663cf52", size = 5472795, upload-time = "2025-04-24T18:39:24.326Z" }, - { url = "https://files.pythonhosted.org/packages/db/f3/f7b1430b6cb934d65b61490f364494a33e1097e4b6d990a2f362ac46731d/pygit2-1.18.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:7f9c8c8a659c5038d36b520b48a346291116506c0f2563e9e1a194680ce51969", size = 5699127, upload-time = "2025-04-24T18:39:26.209Z" }, - { url = "https://files.pythonhosted.org/packages/7d/eb/8e0ec08a89852d2cf93a148a4d71e2801c754dee6a469376ce91fd4dfb1c/pygit2-1.18.0-cp310-cp310-manylinux_2_28_ppc64le.whl", hash = "sha256:3cd2304bb1e297b07330929bfbfeb983df75852177809a111cf38dbeec37cbb7", size = 4582145, upload-time = "2025-04-24T18:39:27.621Z" }, - { url = "https://files.pythonhosted.org/packages/0a/21/16add43e95498e6fd6f724b3bbc82450210e7c35c7a7aafc2c616f2b3d88/pygit2-1.18.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:3c156b368fc390f5c0a34b5e8d7709a5dd8a373dea9cab3648df749aad28f517", size = 5436893, upload-time = "2025-04-24T18:39:29.383Z" }, - { url = "https://files.pythonhosted.org/packages/72/8f/42b5d277d1b9075b5b1d269bdc4ca97663aa4dccc1248eb12832311b4797/pygit2-1.18.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:55a5ed47475be125246a384d1125979dce5309cc03da6be6e8687c7de51cca6a", size = 5403541, upload-time = "2025-04-24T18:39:31.334Z" }, - { url = "https://files.pythonhosted.org/packages/0d/64/d697b82d5eeb05d7bd94b4832a8f7f53aa54f83df19e448bab12ae18b29f/pygit2-1.18.0-cp310-cp310-win32.whl", hash = "sha256:f148a9361607357c3679c1315a41dc7413e0ac6709d6f632af0b4a09ce556a31", size = 1220845, upload-time = "2025-04-24T18:16:58.479Z" }, - { url = "https://files.pythonhosted.org/packages/e8/bb/70e2d5f666a9648241cc5c4b7ac3822fc6823ae59e3f328bb456fba4220b/pygit2-1.18.0-cp310-cp310-win_amd64.whl", hash = "sha256:330f5fb6c167682574b59d865baee6e02c0f435ab9dc16bdc6e520c6da3f19f4", size = 1306422, upload-time = "2025-04-24T18:21:40.644Z" }, - { url = "https://files.pythonhosted.org/packages/b8/77/975eda7d22726ccdba7d662bb131f9f0a20fa8e4c2b2f2287351a0d4e64a/pygit2-1.18.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:004e52507715d1ed682b52f20b2ea1571cad5502f2ba0b546e257f4c00c94475", size = 5472783, upload-time = "2025-04-24T18:39:33.792Z" }, - { url = "https://files.pythonhosted.org/packages/6f/5f/ce8eaba091da881457bdc583f3f7a13e92969c045e9f5e6405cc5b7ed8f6/pygit2-1.18.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:502e75607ca269907ccb20582be8279f22d362f39e25a1dd710e75e934a9a095", size = 5705787, upload-time = "2025-04-24T18:39:35.343Z" }, - { url = "https://files.pythonhosted.org/packages/a6/18/1c3cffca973b1723099ffb7ef8288ff547de224c1009d7ff5223fdbd4204/pygit2-1.18.0-cp311-cp311-manylinux_2_28_ppc64le.whl", hash = "sha256:3bbf11fa63e8eaf161b89bf6e6cc20cf06b337f779a04d79a4999751b9b15adf", size = 4588495, upload-time = "2025-04-24T18:39:37.282Z" }, - { url = "https://files.pythonhosted.org/packages/a6/f8/24626c55bab0b01b45ba5975d769b1d93db165db79bda2257ff9c5c42d36/pygit2-1.18.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:1d97b89ac0a8dddf86727594448bffc78235bcfaee8e5cfd6f410fc1557412b1", size = 5443380, upload-time = "2025-04-24T18:39:39.161Z" }, - { url = "https://files.pythonhosted.org/packages/93/fd/0813becd27708dc8c822936ce27543715f70c83fbc6fc78e5fd5765b3523/pygit2-1.18.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:cadfaad3e9856f453b90dd6bc7385d32b9e4393c82e58a3946014c7e95c71913", size = 5409635, upload-time = "2025-04-24T18:39:40.652Z" }, - { url = "https://files.pythonhosted.org/packages/ee/32/e509f102c41d64aa992efcb0b6a4c219ceda7a57760ac80d1e9f3eb7e837/pygit2-1.18.0-cp311-cp311-win32.whl", hash = "sha256:b0e203ec1641140f803e23e5aba61eec9c60cddddaeea4b16f3d29e9def34c9d", size = 1220845, upload-time = "2025-04-24T18:31:31.093Z" }, - { url = "https://files.pythonhosted.org/packages/38/a4/a44bb68f87c138e9799dd02809540b53b41932dc954cbda0a707dc7e404b/pygit2-1.18.0-cp311-cp311-win_amd64.whl", hash = "sha256:c3493b128c0a90e120d82666a934c18e0a27e8485493825534832c14d07a8ed7", size = 1306605, upload-time = "2025-04-24T18:26:45.951Z" }, - { url = "https://files.pythonhosted.org/packages/c5/2a/e62f4a52f44a41f9e325d36c00abb16d28b39b9c905c5825b010c4abdfe2/pygit2-1.18.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:bba669496d8ba10de8418ba39357a31ae9e2542aa4ecaa26c5c93ee65eee800a", size = 5468163, upload-time = "2025-04-24T18:39:42.13Z" }, - { url = "https://files.pythonhosted.org/packages/85/d2/01669d6fd909c59448131ae761e1912ab04730e1af775e6d4ee2f9e2b113/pygit2-1.18.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:82a120b2ca7276ffcca971e7c4377235ba393f0a37eeda7fec50195d8381ea6b", size = 5706038, upload-time = "2025-04-24T18:39:44.217Z" }, - { url = "https://files.pythonhosted.org/packages/e6/6b/04422e8e9341d71b2d01b7f57a71ed86aed45c40050c8cf549377fd21ce2/pygit2-1.18.0-cp312-cp312-manylinux_2_28_ppc64le.whl", hash = "sha256:8f9fd97dbf30f2e102f50887aec95ab361ebf9193d5e5ae1fda50eb4f4aa80fe", size = 4587465, upload-time = "2025-04-24T18:39:45.659Z" }, - { url = "https://files.pythonhosted.org/packages/34/99/feb31da1ea52864598d57b84c419a1cddd77b46250015b553d31bc5615f7/pygit2-1.18.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:d05f5b25758699ccd773723e85ded77c5ffed7f7756d200b0ba26e83b13c58e8", size = 5447363, upload-time = "2025-04-24T18:39:47.16Z" }, - { url = "https://files.pythonhosted.org/packages/32/3f/17a6078975e5ec76514736486528ab4a40c0f3ae1da8142fff8e81d436b3/pygit2-1.18.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:a3f1a951ccfa9f7d55b3be315a8cce982f61a5df0a4874da3ea0988e1e2afad6", size = 5414398, upload-time = "2025-04-24T18:39:48.882Z" }, - { url = "https://files.pythonhosted.org/packages/39/0f/dbaf8cdbadaf161fe0bb9d3d9a7821cc5fc8e1b32281c240412725c55280/pygit2-1.18.0-cp312-cp312-win32.whl", hash = "sha256:547cdec865827f593097d4fda25c46512ad2a933230c23c9c188e9f9e633849f", size = 1221708, upload-time = "2025-04-24T18:36:20.221Z" }, - { url = "https://files.pythonhosted.org/packages/85/83/2d46e10d2297d414d03f16e0734eec813c6b5a3f97ea5b70eb1be01b687b/pygit2-1.18.0-cp312-cp312-win_amd64.whl", hash = "sha256:b5ef2813f9856d0c8d24e2c414481d29296598fa3e02494174a2d7df16ac276a", size = 1306950, upload-time = "2025-04-24T18:41:07.448Z" }, - { url = "https://files.pythonhosted.org/packages/08/9a/0d1c31847fbbb5da2e1d32a215582e063f12f65f727c48f5be554a0693fc/pygit2-1.18.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:42d7d1bccba61d2c3c4539c7f84a8754d287d2fdd55c247e700b582320b9daff", size = 5468137, upload-time = "2025-04-24T18:39:50.345Z" }, - { url = "https://files.pythonhosted.org/packages/42/7d/f0d98d31943bc551341972a4e91a3272c1503e2a9d744f88f2478197182e/pygit2-1.18.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:a8af8725a22f85bb580a500f60bd898e1cc6c58576db9400b63507a4ed4526e4", size = 5707866, upload-time = "2025-04-24T18:39:53.139Z" }, - { url = "https://files.pythonhosted.org/packages/c8/85/60b20462d829a61a5ea0822977e94ca433baa5af08a600496477377e6ce3/pygit2-1.18.0-cp313-cp313-manylinux_2_28_ppc64le.whl", hash = "sha256:ec71b158f5a4262e01bbcbfb32b0c6f2cb7bce19df84e5a4fb33f54fccb95900", size = 4589400, upload-time = "2025-04-24T18:39:55.089Z" }, - { url = "https://files.pythonhosted.org/packages/f6/b4/8256588c2866fd90dc7f210dca04509f21e6cea17f3b9be1f09d7120ddd0/pygit2-1.18.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:202f6e3e5dadb40c4355b87051bd47e1c18b64bee1b55bd90287115d4cd0eef4", size = 5449088, upload-time = "2025-04-24T18:39:56.695Z" }, - { url = "https://files.pythonhosted.org/packages/39/27/0e062308c183d2875658c7e079b6e054578fac4543849ba4fa878b7227bc/pygit2-1.18.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:0c59ca7545a6fe38a75ca333ba6b4c6eb32c489d6b2228cd7edab312b0fd7f6d", size = 5416468, upload-time = "2025-04-24T18:39:58.166Z" }, - { url = "https://files.pythonhosted.org/packages/fb/b5/55c1082bae1f42db68045ed4a81f48734846c7d075536028a9c82dec698a/pygit2-1.18.0-cp313-cp313-win32.whl", hash = "sha256:b92d94807f8c08bede11fa04fbced424b8073cc71603273f1a124b1748c3da40", size = 1221700, upload-time = "2025-04-24T18:46:08.6Z" }, - { url = "https://files.pythonhosted.org/packages/5d/bf/377a37899a46b16492fb6c1136221bf024b488af9656725de1d6344861d3/pygit2-1.18.0-cp313-cp313-win_amd64.whl", hash = "sha256:43285c57dcdad03114b88a1bc86a0ff7ee216185912c1a0d69aa20c78584fb44", size = 1306953, upload-time = "2025-04-24T18:50:42.731Z" }, - { url = "https://files.pythonhosted.org/packages/08/73/e2186a958fb9dae9baa3b80fa2efe17d65cce8b5dcd00b6c10d305301134/pygit2-1.18.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:081841b01cec4db40ccb0b1ad283aed308e5f663b24995af2b8118c83032539a", size = 5254523, upload-time = "2025-04-24T18:39:59.839Z" }, - { url = "https://files.pythonhosted.org/packages/bd/e6/716cb4188339eca5951bfd9febf5bf8363e460e8b01772b479ed15268ef1/pygit2-1.18.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:2acda38a46eb9fa3807ba7790d6f94871b14b43483377fb4db957b58f7ce4732", size = 4985392, upload-time = "2025-04-24T18:40:01.723Z" }, - { url = "https://files.pythonhosted.org/packages/e2/0a/6dda18ff8409efbaedeb1951acf322f6dedcce0fbacc1f7e8776880208c9/pygit2-1.18.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:53c897a8f1093961df44cd91208a2b4c33727a1aaf6b5ca22261e75062f678ff", size = 5253372, upload-time = "2025-04-24T18:40:04.748Z" }, - { url = "https://files.pythonhosted.org/packages/c4/30/6d919f673aa0f4220e401b6f22593f4bec73a1a2bde5b3be14d648a6e332/pygit2-1.18.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:b07bdd779c892cf4b1212ae9199a64c4416be1a478765f5269c9ba3835540569", size = 4984343, upload-time = "2025-04-24T18:40:06.377Z" }, +sdist = { url = "https://files.pythonhosted.org/packages/6c/4b/da6f1a1a48a4095e3c12c5fa1f2784f4423db3e16159e08740cc5c6ee639/pygit2-1.19.0.tar.gz", hash = "sha256:ca5db6f395a74166a019d777895f96bcb211ee60ce0be4132b139603e0066d83", size = 799757, upload-time = "2025-10-23T12:34:35.783Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ce/c6/302e84b2326050e19ec1617363d4d40d8bba784d28875ee800104b4ab82a/pygit2-1.19.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:12ee8dc6d14573811ba52a18b37d4f6f42e66e0fcef7ed7d4b5e799bc66455f5", size = 5516323, upload-time = "2025-10-23T12:33:23.458Z" }, + { url = "https://files.pythonhosted.org/packages/c8/0a/381ff360e4e65c6227a673ae34067c2a6f347a68b991e3cb9ab7b6d499f5/pygit2-1.19.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ae8fe208d11bbfb2dd2716ac8871764c847d1db29f40a1bb20b469df652ca0e3", size = 5782847, upload-time = "2025-10-23T12:33:26.027Z" }, + { url = "https://files.pythonhosted.org/packages/a4/19/94584f45b1f6e73549270ee8693725f379945eb1b6b0b9bde7572392ef50/pygit2-1.19.0-cp311-cp311-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:18c13b8c49402d007b58744379c455d56526eae16bb9059b2a578d43dd8dfc40", size = 4621296, upload-time = "2025-10-23T12:33:27.751Z" }, + { url = "https://files.pythonhosted.org/packages/70/07/b6f56301aae5418ec284dac523b9126f6f619e999b5fb09b75a1b838a663/pygit2-1.19.0-cp311-cp311-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:f23387f555f6a7224657c7cec618b374c7b01fc617b38ca551859bb69548ed53", size = 5513796, upload-time = "2025-10-23T12:33:28.948Z" }, + { url = "https://files.pythonhosted.org/packages/03/bb/8609d2135652955521ef3a4f30462b247c88c6299e7d9169d0b37dd85b55/pygit2-1.19.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:a29bd5db67631ac526dbab327f6e254e33e44aa14169055621da6c94636e7e2c", size = 5781787, upload-time = "2025-10-23T12:33:30.623Z" }, + { url = "https://files.pythonhosted.org/packages/64/54/55de062e2402e15480f042e8283f437a996b4b6c22afcdbec1f7e2ca0866/pygit2-1.19.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:6d7a90a3cfa55b828c912c1817a1c8c4d5a0988df0958371c122774e997a6c3e", size = 5480456, upload-time = "2025-10-23T12:33:32.616Z" }, + { url = "https://files.pythonhosted.org/packages/00/6b/677c6aaf6d569e2151a631a0202ac9f0853c208fb5e23b0a8b01eed9ea3b/pygit2-1.19.0-cp311-cp311-win32.whl", hash = "sha256:30266cf1e679a24f689d753931d465bedc7e1270a8aa10abe9065a78439a5558", size = 941540, upload-time = "2025-10-23T12:33:33.802Z" }, + { url = "https://files.pythonhosted.org/packages/84/c2/d9f6cb6c3b516cb59f10237768d62487734d6ab429cf53165f77ca90230f/pygit2-1.19.0-cp311-cp311-win_amd64.whl", hash = "sha256:c6f519790957936dcc54849b901af0cc1cec7aef3be1eb336184b1790a41ebf2", size = 1159185, upload-time = "2025-10-23T12:33:35.182Z" }, + { url = "https://files.pythonhosted.org/packages/31/ee/7cd716be9d698cbb3fb645164454126df02670935eb63466673f1e45c9ef/pygit2-1.19.0-cp311-cp311-win_arm64.whl", hash = "sha256:8a7e7ef28a457643bc6a4d17ca4b437db5f5e400926efda4d269a597a6350e4e", size = 966767, upload-time = "2025-10-23T12:33:36.553Z" }, + { url = "https://files.pythonhosted.org/packages/88/d1/e50790d985932f31d329ab177bc714703a10fe9779dc3f76c101ff1a18ba/pygit2-1.19.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:770e1d506ceb08cc65ac0de4e8a9911a169603361c23c3386556a8aab7ee1f7e", size = 5510740, upload-time = "2025-10-23T12:33:38.12Z" }, + { url = "https://files.pythonhosted.org/packages/89/e2/56eb9de348221aa7b76d4fd07a663a1be2ccaad1571f68cc9bd83fc7a4ef/pygit2-1.19.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:db2a75f4a2e896a8b09bcfdeb1d52c0fc72b403e0e9910c03307d5e577e3fb40", size = 5783741, upload-time = "2025-10-23T12:33:40.253Z" }, + { url = "https://files.pythonhosted.org/packages/c6/91/274f7ea354d9029a27133f3c1a222a0fb468b4bc40f535e389cda25a17c7/pygit2-1.19.0-cp312-cp312-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:2600ed9acc3b6f52e49a65c2200e5eadd70ef6d022fd8e029adbfa6e6d9cbf50", size = 4620504, upload-time = "2025-10-23T12:33:41.48Z" }, + { url = "https://files.pythonhosted.org/packages/bf/8b/e1a4728ef6f7c1522394a16b614f52a91295602126b81150acc944d2b858/pygit2-1.19.0-cp312-cp312-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:795dce83170f4b82fa275a6233ee3f70673a06a3e22a1c57221e16b9a140ef98", size = 5518086, upload-time = "2025-10-23T12:33:42.926Z" }, + { url = "https://files.pythonhosted.org/packages/63/ff/04d91f40caae04bf03394b181ed5e614e82928a99ea3659d38d12a124604/pygit2-1.19.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:b26875600a8720196d0cdaacdb485761ac07334512a44da79d7b2398672549f7", size = 5782825, upload-time = "2025-10-23T12:33:44.135Z" }, + { url = "https://files.pythonhosted.org/packages/73/c7/2dea8ce2d0c6185911334f5f84eeb9e941a030e13596b43ee5fab00f550c/pygit2-1.19.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:b5dd263e0d3820892e0751b344eab30f5fb068f20a456e2b2fc2082160d263fe", size = 5484890, upload-time = "2025-10-23T12:33:48.171Z" }, + { url = "https://files.pythonhosted.org/packages/97/bc/2df6780be170187baeb2de4e4743c66cca8c35e838a8e66a9e53c0d53282/pygit2-1.19.0-cp312-cp312-win32.whl", hash = "sha256:1314c81d3608201be032ff1631392f92c767b65d3c81f7efb4e83a551b65290d", size = 942311, upload-time = "2025-10-23T12:33:49.257Z" }, + { url = "https://files.pythonhosted.org/packages/48/bd/aba9902ee25e7a6aaf43c10b979dbbabe64f920217e8817f4df942fb0b68/pygit2-1.19.0-cp312-cp312-win_amd64.whl", hash = "sha256:f7efa3fe6d818b48561bc5b72bd991eb57c0baaafc864b64b27f9d064761e557", size = 1159573, upload-time = "2025-10-23T12:33:50.397Z" }, + { url = "https://files.pythonhosted.org/packages/2c/de/0063114b8140f0aa52bdc63d49405bc4a81268968319ce922ce374264554/pygit2-1.19.0-cp312-cp312-win_arm64.whl", hash = "sha256:c433b9d448912ba7237cb26149b43252b6187acebfa205edf53cfde9e0e441bb", size = 966822, upload-time = "2025-10-23T12:33:51.764Z" }, + { url = "https://files.pythonhosted.org/packages/3b/f7/c0f72a5a87537b5622931a59be33654fa6e7cce25497c42f54de45a54622/pygit2-1.19.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e84d4a1c8bcd462524bf9d0c5778c2219042c8aeeea82735e8f415d8f8519797", size = 5510727, upload-time = "2025-10-23T12:33:53.223Z" }, + { url = "https://files.pythonhosted.org/packages/ba/40/3df9f3cc9397aae3c6befcea9f815393c8d0a53e9717b6ab4ca51f62ff72/pygit2-1.19.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5998943514b89fd4bf8ab11320872bc4c0b6d3517b27beaf79ff9591d3142f1c", size = 5784559, upload-time = "2025-10-23T12:33:54.531Z" }, + { url = "https://files.pythonhosted.org/packages/64/71/bcbf4e144e843329f4167df2c54ec67dfffa8b71ee736508cada602f1894/pygit2-1.19.0-cp313-cp313-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:38ea299bd02584df017f44a0673157bb7b28a2ae69826cfbb456f7429e781d58", size = 4621054, upload-time = "2025-10-23T12:33:55.783Z" }, + { url = "https://files.pythonhosted.org/packages/dc/b3/f0c69382492f1f19030ee580fb85bd4cbae157ecf3b24ac89362a315539c/pygit2-1.19.0-cp313-cp313-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:46f5f287f19053eb1ba36d72a7458712bc5dcdb1b667ecf162a6cae7e643afe2", size = 5519203, upload-time = "2025-10-23T12:33:57.099Z" }, + { url = "https://files.pythonhosted.org/packages/06/0b/919be1b5a679391125e96acfa6f9930f07aa143854faf5d37e67950a150a/pygit2-1.19.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:41d9effdc1e54e7bcd14013ea5a86c9dbf9bbc16b7c932d6e0ed96773e0baa68", size = 5784159, upload-time = "2025-10-23T12:33:58.343Z" }, + { url = "https://files.pythonhosted.org/packages/13/8a/19944d4697e0cf52abe6721bfefa4a826c7ec33144cdeab263180ee1311f/pygit2-1.19.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:e74312467a45de208dc157d1053b851b4181c2fabcacc5d9c578a8ef1b367e13", size = 5486342, upload-time = "2025-10-23T12:33:59.515Z" }, + { url = "https://files.pythonhosted.org/packages/ec/67/3e2d8d68b857466bea178236dafbcac09476907ee5dc7e9fc6e178407890/pygit2-1.19.0-cp313-cp313-win32.whl", hash = "sha256:eb55020bf0bd36e9a4c167c88139a9e20e787b2c66b5c2f60a8a12f3e0334a82", size = 942284, upload-time = "2025-10-23T12:34:01.438Z" }, + { url = "https://files.pythonhosted.org/packages/6e/ae/58ff127fa1177f63c6b56bf77882a357779090a70aaaadbdfe71bbd98a27/pygit2-1.19.0-cp313-cp313-win_amd64.whl", hash = "sha256:37ba33c59b8b941f7a2fa1014c11bc847c315ebbaeb92341f7f39efeab75edb2", size = 1159559, upload-time = "2025-10-23T12:34:03.2Z" }, + { url = "https://files.pythonhosted.org/packages/cc/02/dabfd6880d948dd91f68a757f5a8c1280fe8e8e0f2786e9b85695c5627f7/pygit2-1.19.0-cp313-cp313-win_arm64.whl", hash = "sha256:f59b39b7f9583fd0e5dbd63b6f156b735293b3b4a1688534a5eb2c695975eb39", size = 966823, upload-time = "2025-10-23T12:34:04.432Z" }, + { url = "https://files.pythonhosted.org/packages/84/ee/6248d08f5a2b6a19e8cb706c64241158992996ddcfe93cd1bea7f87d258b/pygit2-1.19.0-cp314-cp314-macosx_10_13_universal2.whl", hash = "sha256:db136a24a9b46327f334a960604f5ed5ca138cab57cf54906c82bae147b2f600", size = 5510739, upload-time = "2025-10-23T12:34:05.565Z" }, + { url = "https://files.pythonhosted.org/packages/de/b1/612a653abe3310efcb17a3efa9881c793dba8a563e781540b1a223c04e88/pygit2-1.19.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1487023a52d25d169fd3d5c146475dec0f39dd54586bd55aac810ae0d7809154", size = 5786665, upload-time = "2025-10-23T12:34:07.036Z" }, + { url = "https://files.pythonhosted.org/packages/66/7c/720c12f14ca0947c3d1d10832f6094c765bfed640b7ca160e45f4ec21e58/pygit2-1.19.0-cp314-cp314-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:14bd00877c5b2571d1e8e2e203df35291198a3a9a90602121a8419b540174b8a", size = 4624940, upload-time = "2025-10-23T12:34:08.229Z" }, + { url = "https://files.pythonhosted.org/packages/e4/72/ad3061fccddc9eb06ef56b6a80ab506b61b2606732a4176c84222958705e/pygit2-1.19.0-cp314-cp314-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:cb47afb011ef6133e1b938018afa7d6435040d1ae1e84242bf0699dc6960a4cf", size = 5521370, upload-time = "2025-10-23T12:34:09.446Z" }, + { url = "https://files.pythonhosted.org/packages/85/d2/20c3436114325286f67e9fa4ae9a7eb44335a5fa6f9c72f8ea95f84a19ee/pygit2-1.19.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:4d81f578aef1c04cd5169b96aa38f864c0ed1a37249e13bff69b49f12f6ae761", size = 5784686, upload-time = "2025-10-23T12:34:11.67Z" }, + { url = "https://files.pythonhosted.org/packages/a6/f7/5302831d9e8bdbe6643321e3a3499c1df12bb8d519ca0250bc4fddc10b8f/pygit2-1.19.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:8c97c281d4e24d45b1d93ea844b52ea157a7c1c408e31e53bbb7b969c3168a96", size = 5487011, upload-time = "2025-10-23T12:34:13.314Z" }, + { url = "https://files.pythonhosted.org/packages/09/e4/d64ca0240e5eecfa541b31869b4d67f1237b16469ce99d0f67734aa71f6f/pygit2-1.19.0-cp314-cp314-win32.whl", hash = "sha256:e69576401664911633351ebbe2a896861a8c1ff531d0375796e61483db39ebd7", size = 963580, upload-time = "2025-10-23T12:34:14.823Z" }, + { url = "https://files.pythonhosted.org/packages/dc/1a/4fd4b60ac6b17581e8c63565a6ae8d529a1c699e021297c3e1ce9f510ed2/pygit2-1.19.0-cp314-cp314-win_amd64.whl", hash = "sha256:e56a14fcbfb8e07e30d18f21cfb790a74506957fa3ce03c54c02745b5d0152e2", size = 1190416, upload-time = "2025-10-23T12:34:16.054Z" }, + { url = "https://files.pythonhosted.org/packages/9b/7b/814b5b86cb9735068d93ebc15d055445a82c0b3d9689d4095fdc2810890b/pygit2-1.19.0-cp314-cp314-win_arm64.whl", hash = "sha256:2e84ab99802d8de643c6f8aa5b689b033ee5d5dee70ae04432005299dec33ee4", size = 994715, upload-time = "2025-10-23T12:34:17.178Z" }, + { url = "https://files.pythonhosted.org/packages/a5/45/78b1928f2b7517ee792d72a7a5527862066e53aeac586cea9fa5bd0d21cb/pygit2-1.19.0-cp314-cp314t-macosx_10_13_universal2.whl", hash = "sha256:12c8f8672fb319ee4276fc028019de4d3e6b9cd94bffc74a1aaa81ffc6445dc7", size = 5517120, upload-time = "2025-10-23T12:34:18.442Z" }, + { url = "https://files.pythonhosted.org/packages/c1/92/df0f760b80b57bf878df11ce3212beaa1e18ec9ce622088776435a4d3ec1/pygit2-1.19.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ccddde0826101035ca31f9df42c6a57704285e2387ab15cd314afa18f0521d95", size = 5846886, upload-time = "2025-10-23T12:34:19.906Z" }, + { url = "https://files.pythonhosted.org/packages/77/d1/b3af6681c698210fd9f80e8c0b8b05b3a4d7e9dfb9bd95741867adbd14c1/pygit2-1.19.0-cp314-cp314t-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:de1fe1a2dfd10a58d17e88c14b363aa809a480c181b56c47cbc4fa83b0b68918", size = 4682365, upload-time = "2025-10-23T12:34:21.606Z" }, + { url = "https://files.pythonhosted.org/packages/4d/92/aff356800b7189fb085fba9e82102666bbec207dbd48acbf869947f41200/pygit2-1.19.0-cp314-cp314t-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9b775d93b7ea9b8ff676002a857eabbe07fbc838802fd76b9b1e17109f571557", size = 5574375, upload-time = "2025-10-23T12:34:23.003Z" }, + { url = "https://files.pythonhosted.org/packages/4d/a2/6beb46b3a04567182374273d0845f8460572b562ba28ea908b363f1eaf05/pygit2-1.19.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:21a9bf74720360fcb21a0e6ad750013ba3e0625cd484f1bb7ddfefdcd207c0f5", size = 5842375, upload-time = "2025-10-23T12:34:24.408Z" }, + { url = "https://files.pythonhosted.org/packages/1d/eb/3fffdb3e1aecba1c4124f5e73008bd63a2fd8d2b44f420d4612e6dcf5065/pygit2-1.19.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:ba17b947b2166000aeb9b19135160bb32aec38a7da9892d9fb476cdb3f518aba", size = 5539028, upload-time = "2025-10-23T12:34:26.307Z" }, + { url = "https://files.pythonhosted.org/packages/be/6e/dfc7693474e908ce4be5833b4b3a73868d1f8b58540af68b8361589c3168/pygit2-1.19.0-cp314-cp314t-win32.whl", hash = "sha256:772bf01936eb306c6dfb3cc3b955e2f8d3271d0eef2c23e24203352519421b20", size = 968740, upload-time = "2025-10-23T12:34:27.606Z" }, + { url = "https://files.pythonhosted.org/packages/d0/a8/5e926b7756efb97db3c52a7ad45b7c3eec135cc5bc19e1647313bb95abf4/pygit2-1.19.0-cp314-cp314t-win_amd64.whl", hash = "sha256:4516e87d35df9b2867b5f859a0d09cd86857f1e3ef4215d6c87850ce4869a793", size = 1196880, upload-time = "2025-10-23T12:34:28.875Z" }, + { url = "https://files.pythonhosted.org/packages/e3/56/28654e46e78743740252419a713edce22323dbcab8cc38e72e14490e5b27/pygit2-1.19.0-cp314-cp314t-win_arm64.whl", hash = "sha256:fceba6e279ab2be9ec762f2b3ff1b315cd922de879800d1f57a25eba4a90bc60", size = 995620, upload-time = "2025-10-23T12:34:30.635Z" }, + { url = "https://files.pythonhosted.org/packages/23/27/a240394fdfba09a4c25ef6838e525167229056a8c7910bd5451cc4b6ecfb/pygit2-1.19.0-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c6163a94e60ccd574c76018fdd19316c3c0671858a83000ea7978c28f55c78fc", size = 5321434, upload-time = "2025-10-23T12:34:31.957Z" }, + { url = "https://files.pythonhosted.org/packages/46/cd/749ea7ee588ceedb27dac65833329c511458e428b5dbcc30fc3ce1cbb0fa/pygit2-1.19.0-pp311-pypy311_pp73-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b9ebbd394ce40024499d0e5905d1d26cd2bbc4429a30c2ac13a98f990e84ab88", size = 5045524, upload-time = "2025-10-23T12:34:33.35Z" }, + { url = "https://files.pythonhosted.org/packages/c1/65/48a1f131bc69a87aa80a92a9ffc8d87515bb4acb95f9a49063087ae62ca6/pygit2-1.19.0-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:33a509b4df90e23e87b4118020cabecd1910ede436d90a43c31eec27e33f52ce", size = 1129759, upload-time = "2025-10-23T12:34:34.608Z" }, ] [[package]] name = "pygments" -version = "2.19.1" +version = "2.19.2" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/7c/2d/c3338d48ea6cc0feb8446d8e6937e1408088a72a39937982cc6111d17f84/pygments-2.19.1.tar.gz", hash = "sha256:61c16d2a8576dc0649d9f39e089b5f02bcd27fba10d8fb4dcc28173f7a45151f", size = 4968581, upload-time = "2025-01-06T17:26:30.443Z" } +sdist = { url = "https://files.pythonhosted.org/packages/b0/77/a5b8c569bf593b0140bde72ea885a803b82086995367bf2037de0159d924/pygments-2.19.2.tar.gz", hash = "sha256:636cb2477cec7f8952536970bc533bc43743542f70392ae026374600add5b887", size = 4968631, upload-time = "2025-06-21T13:39:12.283Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/8a/0b/9fcc47d19c48b59121088dd6da2488a49d5f72dacf8262e2790a1d2c7d15/pygments-2.19.1-py3-none-any.whl", hash = "sha256:9ea1544ad55cecf4b8242fab6dd35a93bbce657034b0611ee383099054ab6d8c", size = 1225293, upload-time = "2025-01-06T17:26:25.553Z" }, + { url = "https://files.pythonhosted.org/packages/c7/21/705964c7812476f378728bdf590ca4b771ec72385c533964653c68e86bdc/pygments-2.19.2-py3-none-any.whl", hash = "sha256:86540386c03d588bb81d44bc3928634ff26449851e99741617ecb9037ee5ec0b", size = 1225217, upload-time = "2025-06-21T13:39:07.939Z" }, ] [[package]] @@ -11538,20 +10414,20 @@ crypto = [ [[package]] name = "pymatgen" -version = "2025.1.9" +version = "2025.10.7" source = { registry = "https://pypi.org/simple" } dependencies = [ + { name = "bibtexparser" }, { name = "joblib" }, { name = "matplotlib" }, { name = "monty" }, - { name = "networkx", version = "3.4.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, - { name = "networkx", version = "3.5", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, - { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-5-mlipx-grace' or extra == 'extra-5-mlipx-matpes' or extra == 'extra-5-mlipx-mattersim' or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-5-mlipx-fairchem' or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, + { name = "networkx" }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'extra-5-mlipx-grace') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "numpy", version = "2.1.3", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform != 'linux' or extra == 'extra-5-mlipx-fairchem' or extra != 'extra-5-mlipx-grace' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "orjson" }, { name = "palettable" }, { name = "pandas" }, { name = "plotly" }, - { name = "pybtex" }, { name = "requests" }, { name = "ruamel-yaml" }, { name = "scipy" }, @@ -11562,114 +10438,159 @@ dependencies = [ { name = "tqdm" }, { name = "uncertainties" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/0e/8b/6a63dc5f2d7574ef20524efeb66f5562a9d533265cc8a3274ad55cde05c7/pymatgen-2025.1.9.tar.gz", hash = "sha256:1c9d5d3bed32645418bf4d53dbbad75c40b0ed47f5907c00e00bffcf1883c928", size = 3101004, upload-time = "2025-01-09T21:14:41.025Z" } +sdist = { url = "https://files.pythonhosted.org/packages/c0/6c/3e7f3f6884d3797a847a8d2441b165bb3a09979a0e40e328d2aca4fa933e/pymatgen-2025.10.7.tar.gz", hash = "sha256:11b4b4dcc847c377088984e58802d155b79237a53d586eb75f32370ed8fafda2", size = 3147848, upload-time = "2025-10-07T13:44:33.704Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f1/e5/11d97c51261461b2134816de23d5cf407fe361a9442999c0beab03e36076/pymatgen-2025.10.7-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:370aa89324548742ee674f1255a4daf0a4e98769f90dfdfabf97fa7c79e11f2d", size = 3588589, upload-time = "2025-10-07T13:43:55.855Z" }, + { url = "https://files.pythonhosted.org/packages/ce/09/b66966cd1db9fd13589221c1dbadfeabe40b88658f1f24c7be6b8907913a/pymatgen-2025.10.7-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:da25604f474f7b6725dfd54ad3aec826c5b7ae16edf794b6b66b3dc86a9931ad", size = 3591165, upload-time = "2025-10-07T13:43:57.587Z" }, + { url = "https://files.pythonhosted.org/packages/69/eb/0157a27486f3de31fcfcade34f08a5c47d470176db785caf730561592424/pymatgen-2025.10.7-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c83cc623a46121ce4482f9bec2c8deefbb8a578fb8569cccb645b732410d903d", size = 4631661, upload-time = "2025-10-07T13:43:59.76Z" }, + { url = "https://files.pythonhosted.org/packages/d1/7e/89033901e5ba97a317cf1d2646bf05ba46a31f133280d8701ea431c342f1/pymatgen-2025.10.7-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:18c3b66358c8a607d0cfcc57551a0640100024812d16217548dcdb17b42dfa3c", size = 4661416, upload-time = "2025-10-07T13:44:02.146Z" }, + { url = "https://files.pythonhosted.org/packages/1e/d1/b874b8e8700382b57846267ff39eb8e5ea827931b78e05a725cc5833dd4e/pymatgen-2025.10.7-cp311-cp311-win32.whl", hash = "sha256:45cfc87d3bf29da141e589aef150a6017262a1efbded907889ac4bf3ab3306ae", size = 3541914, upload-time = "2025-10-07T13:44:04.369Z" }, + { url = "https://files.pythonhosted.org/packages/63/e9/59c8eced18ab89a96e1f0c2396838d7522b778a5c4e0b9185b21f2c5286d/pymatgen-2025.10.7-cp311-cp311-win_amd64.whl", hash = "sha256:13103be858c333f9b23fe190d385c7b4dc0e3824e21abca85d8d274722de7bed", size = 3571879, upload-time = "2025-10-07T13:44:06.117Z" }, + { url = "https://files.pythonhosted.org/packages/c2/27/05d85f2f0ff743d9a4002a31f978a0e8f8f8e75970934d293cfb87063366/pymatgen-2025.10.7-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:ff89c4b16271fba2f15cf3984f3b27daefca99fe40e222cc8dbbd8bf35c9a47b", size = 3589019, upload-time = "2025-10-07T13:44:07.84Z" }, + { url = "https://files.pythonhosted.org/packages/59/90/f3bcfb9b801360509469338095e267c85d0e23c3ea9feb2f70c015544d94/pymatgen-2025.10.7-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:69d5865fad4d52f0bbe00df30311d5245bcf4f0e5ed5f6e7e4e6a42b54612e4f", size = 3592345, upload-time = "2025-10-07T13:44:10.217Z" }, + { url = "https://files.pythonhosted.org/packages/8f/11/256db54fec7d0f1409f9fc972cff779d0e11d436a41ed507ffa1bca4200b/pymatgen-2025.10.7-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:a3127e4e3a96e668d66ce16ef65cbb4b641950197ee3f3ab38d4b79f4fc09017", size = 4628206, upload-time = "2025-10-07T13:44:12.307Z" }, + { url = "https://files.pythonhosted.org/packages/35/cd/305378f0b0b53083fd738f0e7ad449970ad4645ef838364351ca7ef8c981/pymatgen-2025.10.7-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:6e9e88e11509f48dc75090a874122cda19ebe59d3ed9ee2614fb712bb88943fd", size = 4663440, upload-time = "2025-10-07T13:44:14.562Z" }, + { url = "https://files.pythonhosted.org/packages/f1/78/aa88ff410fc6da6a94e8a43d91c5b26273319d68982fab9e7dda0fbfc014/pymatgen-2025.10.7-cp312-cp312-win32.whl", hash = "sha256:09e47e0899d820fccba673e6911bda850dce20ee1bcd8ffee4849082bb8b4d87", size = 3540066, upload-time = "2025-10-07T13:44:16.242Z" }, + { url = "https://files.pythonhosted.org/packages/b3/c9/def0dd1d760fdff1afa2bed833a30fc41889c01e09c99e7ce7a76a7395fc/pymatgen-2025.10.7-cp312-cp312-win_amd64.whl", hash = "sha256:b159f9abd6755be106359d77c677be8a71ce882a0ba68a063212c7c168420431", size = 3571319, upload-time = "2025-10-07T13:44:18.43Z" }, + { url = "https://files.pythonhosted.org/packages/bc/31/b3f2bd096aa44791e0c85abd76947355191be7a994830124d78471e982f1/pymatgen-2025.10.7-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:8df389e96d42da0fce68b8f55d6b0a87dcb0596ee0196017e6f2edd9d0f72397", size = 3586783, upload-time = "2025-10-07T13:44:20.588Z" }, + { url = "https://files.pythonhosted.org/packages/44/1b/2010fa932fccd3aac0dffaa4525dfb5363069d73d61ac3ac15889bc4c0f5/pymatgen-2025.10.7-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:35da3f13a4bd686e2ff01c11995441fd2050c0efa58bcf2538430045ddcf85a5", size = 3590414, upload-time = "2025-10-07T13:44:22.983Z" }, + { url = "https://files.pythonhosted.org/packages/88/88/9ad16868b578873874e36829f6ce1403676f7439f0c824cddf3333156520/pymatgen-2025.10.7-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:9ff0db7c9614db9c687825d1ac5e8db3655ec663578faa79ebd9091000f831a0", size = 4620258, upload-time = "2025-10-07T13:44:25.259Z" }, + { url = "https://files.pythonhosted.org/packages/ec/1e/d15005bc57bc0c307cd07dc52b1d7a94f3f18034cfcc90cfca015024633d/pymatgen-2025.10.7-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:206201d8ebc6c8a2af9748a3dfa3e1975356eb9bf18f96db7021c2e3060cc3dd", size = 4658272, upload-time = "2025-10-07T13:44:27.481Z" }, + { url = "https://files.pythonhosted.org/packages/bc/04/faf2e226f3f1e859503974d4eb7d468041b8e931c9a66a2598c82285c965/pymatgen-2025.10.7-cp313-cp313-win32.whl", hash = "sha256:f4d0c605a0b8d0573973b2eb5491e80110438fe053d16fc6d7365df951123f58", size = 3539807, upload-time = "2025-10-07T13:44:29.887Z" }, + { url = "https://files.pythonhosted.org/packages/0a/4b/52fd2c203a4e9abc610d19f4e3655995748375c1c92215f3f508386b826c/pymatgen-2025.10.7-cp313-cp313-win_amd64.whl", hash = "sha256:d03be1675d2415422fdc1dc26ac30d9e0d6badcdb6fafe0177094c45676415fb", size = 3570933, upload-time = "2025-10-07T13:44:31.939Z" }, +] + +[[package]] +name = "pymatgen-io-validation" +version = "0.1.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'extra-5-mlipx-grace') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "numpy", version = "2.1.3", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform != 'linux' or extra == 'extra-5-mlipx-fairchem' or extra != 'extra-5-mlipx-grace' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "pydantic" }, + { name = "pydantic-settings" }, + { name = "pymatgen" }, + { name = "requests" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/bd/20/9a5b96d413f7678ef4fd0b689ae20aa406b512013531eec7c7fa7128f544/pymatgen_io_validation-0.1.2.tar.gz", hash = "sha256:76632878ab2269356092dab5bae08c8f42418c3e15d4610f4eb304f0102e7f24", size = 51515, upload-time = "2025-09-16T16:52:43.66Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/76/ed/29e18985b2cdd5b8032fdd7d737f8b438818034000d9f851c9cd5848a3b1/pymatgen-2025.1.9-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d2a896d70705a10d5ce474edc17a4492a2ef196b44373389df8fb0027f69c521", size = 3634719, upload-time = "2025-01-09T21:30:58.308Z" }, - { url = "https://files.pythonhosted.org/packages/ce/26/4b0c8b317485b2ce95480cb58680bbaf5a531648127fdd6e78e32f738dd2/pymatgen-2025.1.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8a825de801f147775be317aee39e5e56dbcbf1a16cf6eb86ffdfc8d028a7ea3c", size = 4942522, upload-time = "2025-01-09T21:31:02.478Z" }, - { url = "https://files.pythonhosted.org/packages/8c/b3/3fc2cf451e7d7b7e88005e859e3530ffeef3f2560971356d7e433ed53e41/pymatgen-2025.1.9-cp310-cp310-win32.whl", hash = "sha256:a00ff61f1978fbd4d4e5e2c876ef764cd4a545282aa90edf954a31acf4288cd6", size = 3589486, upload-time = "2025-01-09T21:31:05.581Z" }, - { url = "https://files.pythonhosted.org/packages/ea/bc/ae6236ac79e40cf26cf2bf64da376c3d753fadb4338b08fb45d1e76bf26c/pymatgen-2025.1.9-cp310-cp310-win_amd64.whl", hash = "sha256:e4adb150441738792705c826fc4e528238f7f6d436184b52a018a97222990745", size = 3630105, upload-time = "2025-01-09T21:31:07.887Z" }, - { url = "https://files.pythonhosted.org/packages/3d/4a/2d5e07dd0a8563cbaf57dcf82d746641567aca776016931656735abe442e/pymatgen-2025.1.9-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b78a8c32bcb44d35f6dcfa18b0082461b22280ee8fd61bc9b930a4e4221ff71d", size = 3609255, upload-time = "2025-01-09T21:14:35.773Z" }, - { url = "https://files.pythonhosted.org/packages/18/44/a09b342ab99de37388c4d0999beb8f55d41cf7157492dc1d15e45318815f/pymatgen-2025.1.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:140afd553e69bc08b389ea85e955a1e0f5d0539a981652d83b9af001a80517a2", size = 5063794, upload-time = "2025-01-09T21:31:11.079Z" }, - { url = "https://files.pythonhosted.org/packages/89/97/1f3b8afc641d7176ddafac801b8d32ec709986177c91cc5c97834f098dd8/pymatgen-2025.1.9-cp311-cp311-win32.whl", hash = "sha256:a12cb5759bee3e2ac9c5ea480a79ee0b871dad356c0773fef4e8349368ccbd7f", size = 3588633, upload-time = "2025-01-09T21:31:14.181Z" }, - { url = "https://files.pythonhosted.org/packages/37/65/1a55e2741c7ea5656839bfc6deadcc1bfef897295c1cdf0a6a1e497c9c97/pymatgen-2025.1.9-cp311-cp311-win_amd64.whl", hash = "sha256:1c7f1fd3e583126d8770829652129130237b5b6ecd1605ea0044c27e18c17ef5", size = 3630690, upload-time = "2025-01-09T21:31:17.352Z" }, - { url = "https://files.pythonhosted.org/packages/cb/68/689e46b7533829bd642b54158db638b0f3c899af89557df46004f476c28a/pymatgen-2025.1.9-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:3160d7e863fca38423d9cf8083ae166a3da5048798e728c1c4a3fd4d8c298e5f", size = 3635971, upload-time = "2025-01-09T21:31:21.014Z" }, - { url = "https://files.pythonhosted.org/packages/09/2f/5e37f0a0735825fec8b9cc8745d4feadf44e184fda9955fc7ffdc9ab9bb4/pymatgen-2025.1.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:13e2ea561fd4a8fe5ef000ef115e816a8a02859ed07310c6c1579df586dada4d", size = 5052110, upload-time = "2025-01-09T21:31:23.196Z" }, - { url = "https://files.pythonhosted.org/packages/c4/43/f3bd39dcb7bff489ed4bd3c8ab4ab6c828146e42e4832c96e12be06fd7ee/pymatgen-2025.1.9-cp312-cp312-win32.whl", hash = "sha256:d97e394f905602760eb51f57565dca2775639a1d852128a3db26f47c776dbaa1", size = 3588805, upload-time = "2025-01-09T21:31:27.067Z" }, - { url = "https://files.pythonhosted.org/packages/bf/d1/209b79fdf6554e13796de839e4e7e9958afb634608fed4a1fc6738254ff4/pymatgen-2025.1.9-cp312-cp312-win_amd64.whl", hash = "sha256:78ccda47af288cb4d504ef66b0976c17b0a5d34b9afd098a55e537ba87c220a9", size = 3630340, upload-time = "2025-01-09T21:31:32.686Z" }, + { url = "https://files.pythonhosted.org/packages/3c/fa/30b0dc764abc321693d16621482d02aa13ef569ba193c443c9411ac818a8/pymatgen_io_validation-0.1.2-py3-none-any.whl", hash = "sha256:765cb7f5f98422193d46518792be76ea5683c7093b444088f21dd6d5d217dc65", size = 46381, upload-time = "2025-09-16T16:52:42.391Z" }, ] [[package]] name = "pymongo" -version = "4.13.0" +version = "4.15.5" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "dnspython" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/74/0c/1fb60383ab4b20566407b87f1a95b7f5cda83e8d5594da6fc84e2a543405/pymongo-4.13.0.tar.gz", hash = "sha256:92a06e3709e3c7e50820d352d3d4e60015406bcba69808937dac2a6d22226fde", size = 2166443, upload-time = "2025-05-14T19:11:08.649Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/4f/82/b19f8f3d1b78e432e1e2a6a2da4dd7bbf5535bce704c69ab14ea598e1af5/pymongo-4.13.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:fe497c885b08600a022646f00f4d3303697c5289990acec250e2be2e1699ca23", size = 802525, upload-time = "2025-05-14T19:09:19.767Z" }, - { url = "https://files.pythonhosted.org/packages/f7/d6/1a95ce6af3eb8398d8cadaf9b1429acb1c51ad62c7ec1be77606649f7543/pymongo-4.13.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2d377bb0811e0a9676bacb21a4f87ef307f2e9a40a625660c113a9c0ae897e8c", size = 802817, upload-time = "2025-05-14T19:09:21.573Z" }, - { url = "https://files.pythonhosted.org/packages/d0/bb/4b2f2013127ff36b6f7f567f714f3d4452dce4559abe236ea98d0626e9e6/pymongo-4.13.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1bac84ee40032bec4c089e92970893157fcd0ef40b81157404ceb4c1dac8ba72", size = 1180183, upload-time = "2025-05-14T19:09:23.63Z" }, - { url = "https://files.pythonhosted.org/packages/b9/32/f15f0b509797307905deadc7227aa83d824f4a2b419461534e8c25ef0149/pymongo-4.13.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ea47a64ed9918be0fa8a4a11146a80f546c09e0d65fd08e90a5c00366a59bdb0", size = 1214410, upload-time = "2025-05-14T19:09:25.63Z" }, - { url = "https://files.pythonhosted.org/packages/7e/07/45a34e640cb863ddc514ee06845ea2c33312750eba6bbd6e5ab763eabf46/pymongo-4.13.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8e90195cb5aee24a67a29adde54c1dae4d9744e17e4585bea3a83bfff96db46c", size = 1197340, upload-time = "2025-05-14T19:09:27.667Z" }, - { url = "https://files.pythonhosted.org/packages/70/59/ccab966891d536ff3efa36a111d424850efc96364412a117fda2acca9d17/pymongo-4.13.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e4a7855933011026898ea0d4532fbd83cef63a76205c823a4ef5557d970df1f1", size = 1183356, upload-time = "2025-05-14T19:09:29.218Z" }, - { url = "https://files.pythonhosted.org/packages/3c/c7/fe84905f49cca6500dab25554f914dfb0ef95e77faa0cd87e4c5e1a81cbb/pymongo-4.13.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f39791a88cd5ec1760f65e878af419747c6f94ce74f9293735cbba6025ff4d0d", size = 1162513, upload-time = "2025-05-14T19:09:31.738Z" }, - { url = "https://files.pythonhosted.org/packages/87/aa/2752c1cdf67812703812199d4bbad2632ed801aa4736ebada43947dbf3ae/pymongo-4.13.0-cp310-cp310-win32.whl", hash = "sha256:209efd3b62cdbebd3cc7a76d5e37414ad08c9bfe8b28ae73695ade065d5b1277", size = 788539, upload-time = "2025-05-14T19:09:33.823Z" }, - { url = "https://files.pythonhosted.org/packages/6b/ab/cc9ff174b4e60c02482685cdf7b76cfbe47640a46e2c026b987d8baded4f/pymongo-4.13.0-cp310-cp310-win_amd64.whl", hash = "sha256:51081910a91e3451db74b7265ee290c72220412aa8897d6dfe28f6e5d80b685b", size = 797871, upload-time = "2025-05-14T19:09:35.3Z" }, - { url = "https://files.pythonhosted.org/packages/27/21/422381c97454a56021c50f776847c1db6082f84a0944dda3823ef76b4860/pymongo-4.13.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:46c8bce9af98556110a950939f3eaa3f7648308d60df65feb783c780f8b9bfa9", size = 856909, upload-time = "2025-05-14T19:09:37.257Z" }, - { url = "https://files.pythonhosted.org/packages/c3/e6/b34ab65ad524bc34dc3aa634d3dc411f65c495842ebb25b2d8593fc4bbed/pymongo-4.13.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:dc9e412911f210d9b0eca42d25c22d3725809dda03dedbaf6f9ffa192d461905", size = 857202, upload-time = "2025-05-14T19:09:38.862Z" }, - { url = "https://files.pythonhosted.org/packages/ff/62/17d3f8ff1d2ff67d3ed2985fdf616520362cfe4ae3802df0e9601d5686c9/pymongo-4.13.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b9288188101506a9d1aa3f70f65b7f5f499f8f7d5c23ec86a47551d756e32059", size = 1426272, upload-time = "2025-05-14T19:09:41.103Z" }, - { url = "https://files.pythonhosted.org/packages/51/e2/22582d886d5a382fb605b3025047d75ec38f497cddefe86e29fca39c4363/pymongo-4.13.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5303e2074b85234e337ebe622d353ce38a35696cd47a7d970f84b545288aee01", size = 1477235, upload-time = "2025-05-14T19:09:43.099Z" }, - { url = "https://files.pythonhosted.org/packages/bd/e3/10bce21b8c0bf954c144638619099012a3e247c7d009df044f450fbaf340/pymongo-4.13.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d842e11eb94f7074314ff1d97a05790539a1d74c3048ce50ea9f0da1f4f96b0a", size = 1451677, upload-time = "2025-05-14T19:09:45.417Z" }, - { url = "https://files.pythonhosted.org/packages/30/10/4c54a4adf90a04e6147260e16f9cfeab11cb661d71ddd12a98449a279977/pymongo-4.13.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b63d9d8be87f4be11972c5a63d815974c298ada59a2e1d56ef5b6984d81c544a", size = 1430799, upload-time = "2025-05-14T19:09:47.516Z" }, - { url = "https://files.pythonhosted.org/packages/86/52/99620c5e106663a3679541b2316e0631b39cb49a6be14291597b28a8b428/pymongo-4.13.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c7d740560710be0c514bc9d26f5dcbb3c85dbb6b450c4c3246d8136ca84055bd", size = 1399450, upload-time = "2025-05-14T19:09:49.095Z" }, - { url = "https://files.pythonhosted.org/packages/f1/23/73d0379e46f98eed5339b6d44527e366b553c39327c69ba543f7beafb237/pymongo-4.13.0-cp311-cp311-win32.whl", hash = "sha256:936f7be9ed6919e3be7369b858d1c58ebaa4f3ef231cf4860779b8ba3b4fcd11", size = 834134, upload-time = "2025-05-14T19:09:50.682Z" }, - { url = "https://files.pythonhosted.org/packages/45/bd/d6286b923e852dc080330182a8b57023555870d875b7523454ad1bdd1579/pymongo-4.13.0-cp311-cp311-win_amd64.whl", hash = "sha256:6a8f060f8ad139d1d45f75ef7aa0084bd7f714fc666f98ef00009efc7db34acd", size = 848068, upload-time = "2025-05-14T19:09:52.778Z" }, - { url = "https://files.pythonhosted.org/packages/42/5e/db6871892ec41860339e94e20fabce664b64c193636dc69b572503382f12/pymongo-4.13.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:007450b8c8d17b4e5b779ab6e1938983309eac26b5b8f0863c48effa4b151b07", size = 911769, upload-time = "2025-05-14T19:09:54.483Z" }, - { url = "https://files.pythonhosted.org/packages/86/8b/6960dc8baf2b6e1b809513160913e90234160c5df2dc1f2baf1cf1d25ac9/pymongo-4.13.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:899a5ea9cd32b1b0880015fdceaa36a41140a8c2ce8621626c52f7023724aed6", size = 911464, upload-time = "2025-05-14T19:09:56.253Z" }, - { url = "https://files.pythonhosted.org/packages/41/fb/d682bf1c4cb656f47616796f707a1316862f71b3c1899cb6b6806803dff6/pymongo-4.13.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f0b26cd4e090161927b7a81741a3627a41b74265dfb41c6957bfb474504b4b42", size = 1690111, upload-time = "2025-05-14T19:09:58.331Z" }, - { url = "https://files.pythonhosted.org/packages/03/d4/0047767ee5b6c66e4b5b67a5d85de14da9910ee8f7d8159e7c1d5d627358/pymongo-4.13.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b54e19e0f6c8a7ad0c5074a8cbefb29c12267c784ceb9a1577a62bbc43150161", size = 1754348, upload-time = "2025-05-14T19:10:00.088Z" }, - { url = "https://files.pythonhosted.org/packages/7c/ea/e64f2501eaca552b0f303c2eb828c69963c8bf1a663111686a900502792d/pymongo-4.13.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6208b83e7d566935218c0837f3b74c7d2dda83804d5d843ce21a55f22255ab74", size = 1723390, upload-time = "2025-05-14T19:10:02.28Z" }, - { url = "https://files.pythonhosted.org/packages/d1/5c/fad80bc263281c8b819ce29ed1d88c2023c5576ecc608d15ca1628078e29/pymongo-4.13.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3f33b8c1405d05517dce06756f2800b37dd098216cae5903cd80ad4f0a9dad08", size = 1693367, upload-time = "2025-05-14T19:10:04.405Z" }, - { url = "https://files.pythonhosted.org/packages/c1/3d/4ff09614c996f8574d36008763b9fc01532ec7e954b5edde9254455b279b/pymongo-4.13.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:02f0e1af87280697a1a8304238b863d4eee98c8b97f554ee456c3041c0f3a021", size = 1652496, upload-time = "2025-05-14T19:10:06.528Z" }, - { url = "https://files.pythonhosted.org/packages/f2/2f/c4e54ac337e0ad3d91aae7de59849aaed28de6340112da2e2427f5e0c689/pymongo-4.13.0-cp312-cp312-win32.whl", hash = "sha256:5dea2f6b44697eda38a11ef754d2adfff5373c51b1ffda00b9fedc5facbd605f", size = 880497, upload-time = "2025-05-14T19:10:08.626Z" }, - { url = "https://files.pythonhosted.org/packages/6a/43/6595a52fe144bb0dae4d592e49c6c909f98033c4fa2eaa544b13e22ac6e8/pymongo-4.13.0-cp312-cp312-win_amd64.whl", hash = "sha256:c03e02129ad202d8e146480b398c4a3ea18266ee0754b6a4805de6baf4a6a8c7", size = 898742, upload-time = "2025-05-14T19:10:10.214Z" }, - { url = "https://files.pythonhosted.org/packages/5a/dc/9afa6091bce4adad7cad736dcdc35c139a9b551fc61032ef20c7ba17eae5/pymongo-4.13.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:92f5e75ae265e798be1a8a40a29e2ab934e156f3827ca0e1c47e69d43f4dcb31", size = 965996, upload-time = "2025-05-14T19:10:12.319Z" }, - { url = "https://files.pythonhosted.org/packages/36/69/e4242abffc0ee1501bb426d8a540e712e4f917491735f18622838b17f5a1/pymongo-4.13.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:3d631d879e934b46222f5092d8951cbb9fe83542649697c8d342ea7b5479f118", size = 965702, upload-time = "2025-05-14T19:10:14.051Z" }, - { url = "https://files.pythonhosted.org/packages/fc/3e/0732876b48b1285bada803f4b0d7da5b720cf8f778d2117bbed9e04473a3/pymongo-4.13.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:be048fb78e165243272a8cdbeb40d53eace82424b95417ab3ab6ec8e9b00c59b", size = 1953825, upload-time = "2025-05-14T19:10:16.214Z" }, - { url = "https://files.pythonhosted.org/packages/dc/3b/6713fed92cab64508a1fb8359397c0720202e5f36d7faf4ed71b05875180/pymongo-4.13.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d81d159bd23d8ac53a6e819cccee991cb9350ab2541dfaa25aeb2f712d23b0a5", size = 2031179, upload-time = "2025-05-14T19:10:18.307Z" }, - { url = "https://files.pythonhosted.org/packages/89/2b/1aad904563c312a0dc2ff752acf0f11194f836304d6e15d05dff3a33df08/pymongo-4.13.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8af08ba2886f08d334bc7e5d5c662c60ea2f16e813a2c35106f399463fa11087", size = 1995093, upload-time = "2025-05-14T19:10:20.089Z" }, - { url = "https://files.pythonhosted.org/packages/4c/cc/33786f4ce9a46c776f0d32601b353f8c42b552ea9ff8060c290c912b661e/pymongo-4.13.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6b91f59137e46cd3ff17d5684a18e8006d65d0ee62eb1068b512262d1c2c5ae8", size = 1955820, upload-time = "2025-05-14T19:10:21.788Z" }, - { url = "https://files.pythonhosted.org/packages/2d/dd/9a2a87bd4aab12a2281ac20d179912eed824cc6f67df49edd87fa4879b3e/pymongo-4.13.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:61733c8f1ded90ab671a08033ee99b837073c73e505b3b3b633a55a0326e77f4", size = 1905394, upload-time = "2025-05-14T19:10:23.684Z" }, - { url = "https://files.pythonhosted.org/packages/04/be/0a70db5e4c4e1c162207e31eaa3debf98476e0265b154f6d2252f85969b0/pymongo-4.13.0-cp313-cp313-win32.whl", hash = "sha256:d10d3967e87c21869f084af5716d02626a17f6f9ccc9379fcbece5821c2a9fb4", size = 926840, upload-time = "2025-05-14T19:10:25.505Z" }, - { url = "https://files.pythonhosted.org/packages/dd/a6/fb104175a7f15dd69691c8c32bd4b99c4338ec89fe094b6895c940cf2afb/pymongo-4.13.0-cp313-cp313-win_amd64.whl", hash = "sha256:a9fe172e93551ddfdb94b9ad34dccebc4b7b680dc1d131bc6bd661c4a5b2945c", size = 949383, upload-time = "2025-05-14T19:10:27.234Z" }, - { url = "https://files.pythonhosted.org/packages/62/3f/c89a6121b0143fde431f04c267a0d49159b499f518630a43aa6288709749/pymongo-4.13.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:5adc1349fd5c94d5dfbcbd1ad9858d1df61945a07f5905dcf17bb62eb4c81f93", size = 1022500, upload-time = "2025-05-14T19:10:29.002Z" }, - { url = "https://files.pythonhosted.org/packages/4b/89/8fc36b83768b44805dd3a1caf755f019b110d2111671950b39c8c7781cd9/pymongo-4.13.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:8e11ea726ff8ddc8c8393895cd7e93a57e2558c27273d3712797895c53d25692", size = 1022503, upload-time = "2025-05-14T19:10:30.757Z" }, - { url = "https://files.pythonhosted.org/packages/67/dc/f216cf6218f8ceb4025fd10e3de486553bd5373c3b71a45fef3483b745bb/pymongo-4.13.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c02160ab3a67eca393a2a2bb83dccddf4db2196d0d7c6a980a55157e4bdadc06", size = 2282184, upload-time = "2025-05-14T19:10:32.699Z" }, - { url = "https://files.pythonhosted.org/packages/56/32/08a9045dbcd76a25d36a0bd42c635b56d9aed47126bcca0e630a63e08444/pymongo-4.13.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:fca24e4df05501420b2ce2207c03f21fcbdfac1e3f41e312e61b8f416c5b4963", size = 2369224, upload-time = "2025-05-14T19:10:34.942Z" }, - { url = "https://files.pythonhosted.org/packages/16/63/7991853fa6cf5e52222f8f480081840fb452d78c1dcd6803cabe2d3557a6/pymongo-4.13.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:50c503b7e809e54740704ec4c87a0f2ccdb910c3b1d36c07dbd2029b6eaa6a50", size = 2328611, upload-time = "2025-05-14T19:10:36.791Z" }, - { url = "https://files.pythonhosted.org/packages/e9/0f/11beecc8d48c7549db3f13f2101fd1c06ccb668697d33a6a5a05bb955574/pymongo-4.13.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:66800de4f4487e7c437991b44bc1e717aadaf06e67451a760efe5cd81ce86575", size = 2279806, upload-time = "2025-05-14T19:10:38.652Z" }, - { url = "https://files.pythonhosted.org/packages/17/a7/0358efc8dba796545e9bd4642d1337a9b67b60928c583799fb0726594855/pymongo-4.13.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:82c36928c1c26580ce4f2497a6875968636e87c77108ff253d76b1355181a405", size = 2219131, upload-time = "2025-05-14T19:10:40.444Z" }, - { url = "https://files.pythonhosted.org/packages/58/d5/373cd1cd21eff769e22e4e0924dcbfd770dfa1298566d51a7097857267fc/pymongo-4.13.0-cp313-cp313t-win32.whl", hash = "sha256:1397eac713b84946210ab556666cfdd787eee824e910fbbe661d147e110ec516", size = 975711, upload-time = "2025-05-14T19:10:42.213Z" }, - { url = "https://files.pythonhosted.org/packages/b0/39/1e204091bdf264a0d9eccc21f7da099903a7a30045f055a91178686c0259/pymongo-4.13.0-cp313-cp313t-win_amd64.whl", hash = "sha256:99a52cfbf31579cc63c926048cd0ada6f96c98c1c4c211356193e07418e6207c", size = 1004287, upload-time = "2025-05-14T19:10:45.468Z" }, +sdist = { url = "https://files.pythonhosted.org/packages/24/a0/5c324fe6735b2bc189779ff46e981a59d495a74594f45542159125d77256/pymongo-4.15.5.tar.gz", hash = "sha256:3a8d6bf2610abe0c97c567cf98bf5bba3e90ccc93cc03c9dde75fa11e4267b42", size = 2471889, upload-time = "2025-12-02T18:44:30.992Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0c/ea/e43387c2ed78a60ad917c45f4d4de4f6992929d63fe15af4c2e624f093a9/pymongo-4.15.5-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:57157a4b936e28e2fbe7017b2f6a751da5e284675cab371f2c596d4e0e4f58f3", size = 865894, upload-time = "2025-12-02T18:42:30.496Z" }, + { url = "https://files.pythonhosted.org/packages/5e/8c/f2c9c55adb9709a4b2244d8d8d9ec05e4abb274e03fe8388b58a34ae08b0/pymongo-4.15.5-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:e2a34a7391f4cc54fc584e49db6f7c3929221a9da08b3af2d2689884a5943843", size = 866235, upload-time = "2025-12-02T18:42:31.862Z" }, + { url = "https://files.pythonhosted.org/packages/5e/aa/bdf3553d7309b0ebc0c6edc23f43829b1758431f2f2f7385d2427b20563b/pymongo-4.15.5-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:be040c8cdaf9c2d5ae9ab60a67ecab453ec19d9ccd457a678053fdceab5ee4c8", size = 1429787, upload-time = "2025-12-02T18:42:33.829Z" }, + { url = "https://files.pythonhosted.org/packages/b3/55/80a8eefc88f578fde56489e5278ba5caa5ee9b6f285959ed2b98b44e2133/pymongo-4.15.5-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:defe93944526b1774265c16acf014689cb1b0b18eb84a7b370083b214f9e18cd", size = 1456747, upload-time = "2025-12-02T18:42:35.805Z" }, + { url = "https://files.pythonhosted.org/packages/1d/54/6a7ec290c7ab22aab117ab60e7375882ec5af7433eaf077f86e187a3a9e8/pymongo-4.15.5-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:816e66116f0ef868eff0463a8b28774af8b547466dbad30c8e82bf0325041848", size = 1514670, upload-time = "2025-12-02T18:42:37.737Z" }, + { url = "https://files.pythonhosted.org/packages/65/8a/5822aa20b274ee8a8821bf0284f131e7fc555b0758c3f2a82c51ae73a3c6/pymongo-4.15.5-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:66c7b332532e0f021d784d04488dbf7ed39b7e7d6d5505e282ec8e9cf1025791", size = 1500711, upload-time = "2025-12-02T18:42:39.61Z" }, + { url = "https://files.pythonhosted.org/packages/32/ca/63984e32b4d745a25445c9da1159dfe4568a03375f32bb1a9e009dccb023/pymongo-4.15.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:acc46a9e47efad8c5229e644a3774169013a46ee28ac72d1fa4edd67c0b7ee9b", size = 1452021, upload-time = "2025-12-02T18:42:41.323Z" }, + { url = "https://files.pythonhosted.org/packages/f1/23/0d6988f3fdfcacae2ac8d7b76eb24f80ebee9eb607c53bcebfad75b7fd85/pymongo-4.15.5-cp311-cp311-win32.whl", hash = "sha256:b9836c28ba350d8182a51f32ef9bb29f0c40e82ba1dfb9e4371cd4d94338a55d", size = 844483, upload-time = "2025-12-02T18:42:42.814Z" }, + { url = "https://files.pythonhosted.org/packages/8e/04/dedff8a5a9539e5b6128d8d2458b9c0c83ebd38b43389620a0d97223f114/pymongo-4.15.5-cp311-cp311-win_amd64.whl", hash = "sha256:3a45876c5c2ab44e2a249fb542eba2a026f60d6ab04c7ef3924eae338d9de790", size = 859194, upload-time = "2025-12-02T18:42:45.025Z" }, + { url = "https://files.pythonhosted.org/packages/67/e5/fb6f49bceffe183e66831c2eebd2ea14bd65e2816aeaf8e2fc018fd8c344/pymongo-4.15.5-cp311-cp311-win_arm64.whl", hash = "sha256:e4a48fc5c712b3db85c9987cfa7fde0366b7930018de262919afd9e52cfbc375", size = 848377, upload-time = "2025-12-02T18:42:47.19Z" }, + { url = "https://files.pythonhosted.org/packages/3c/4e/8f9fcb2dc9eab1fb0ed02da31e7f4847831d9c0ef08854a296588b97e8ed/pymongo-4.15.5-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:c33477af1a50d1b4d86555e098fc2cf5992d839ad538dea0c00a8682162b7a75", size = 920955, upload-time = "2025-12-02T18:42:48.812Z" }, + { url = "https://files.pythonhosted.org/packages/d2/b4/c0808bed1f82b3008909b9562615461e59c3b66f8977e502ea87c88b08a4/pymongo-4.15.5-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:e6b30defa4a52d3698cd84d608963a8932f7e9b6ec5130087e7082552ac685e5", size = 920690, upload-time = "2025-12-02T18:42:50.832Z" }, + { url = "https://files.pythonhosted.org/packages/12/f3/feea83150c6a0cd3b44d5f705b1c74bff298a36f82d665f597bf89d42b3f/pymongo-4.15.5-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:45fec063f5672e6173bcb09b492431e3641cc74399c2b996fcb995881c2cac61", size = 1690351, upload-time = "2025-12-02T18:42:53.402Z" }, + { url = "https://files.pythonhosted.org/packages/d7/4e/15924d33d8d429e4c41666090017c6ac5e7ccc4ce5e435a2df09e45220a8/pymongo-4.15.5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b8c6813110c0d9fde18674b7262f47a2270ae46c0ddd05711e6770caa3c9a3fb", size = 1726089, upload-time = "2025-12-02T18:42:56.187Z" }, + { url = "https://files.pythonhosted.org/packages/a5/49/650ff29dc5f9cf090dfbd6fb248c56d8a10d268b6f46b10fb02fbda3c762/pymongo-4.15.5-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:e8ec48d1db9f44c737b13be4299a1782d5fde3e75423acbbbe927cb37ebbe87d", size = 1800637, upload-time = "2025-12-02T18:42:57.913Z" }, + { url = "https://files.pythonhosted.org/packages/7d/18/f34661ade670ee42331543f4aa229569ac7ef45907ecda41b777137b9f40/pymongo-4.15.5-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:1f410694fdd76631ead7df6544cdeadaf2407179196c3642fced8e48bb21d0a6", size = 1785480, upload-time = "2025-12-02T18:43:00.626Z" }, + { url = "https://files.pythonhosted.org/packages/10/b6/378bb26937f6b366754484145826aca2d2361ac05b0bacd45a35876abcef/pymongo-4.15.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b8c46765d6ac5727a899190aacdeec7a57f8c93346124ddd7e12633b573e2e65", size = 1718548, upload-time = "2025-12-02T18:43:02.32Z" }, + { url = "https://files.pythonhosted.org/packages/58/79/31b8afba36f794a049633e105e45c30afaa0e1c0bab48332d999e87d4860/pymongo-4.15.5-cp312-cp312-win32.whl", hash = "sha256:647118a58dca7d3547714fc0b383aebf81f5852f4173dfd77dd34e80eea9d29b", size = 891319, upload-time = "2025-12-02T18:43:04.699Z" }, + { url = "https://files.pythonhosted.org/packages/c8/31/a7e6d8c5657d922872ac75ab1c0a1335bfb533d2b4dad082d5d04089abbb/pymongo-4.15.5-cp312-cp312-win_amd64.whl", hash = "sha256:099d3e2dddfc75760c6a8fadfb99c1e88824a99c2c204a829601241dff9da049", size = 910919, upload-time = "2025-12-02T18:43:06.555Z" }, + { url = "https://files.pythonhosted.org/packages/1c/b4/286c12fa955ae0597cd4c763d87c986e7ade681d4b11a81766f62f079c79/pymongo-4.15.5-cp312-cp312-win_arm64.whl", hash = "sha256:649cb906882c4058f467f334fb277083998ba5672ffec6a95d6700db577fd31a", size = 896357, upload-time = "2025-12-02T18:43:08.801Z" }, + { url = "https://files.pythonhosted.org/packages/9b/92/e70db1a53bc0bb5defe755dee66b5dfbe5e514882183ffb696d6e1d38aa2/pymongo-4.15.5-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:2b736226f9001bbbd02f822acb9b9b6d28319f362f057672dfae2851f7da6125", size = 975324, upload-time = "2025-12-02T18:43:11.074Z" }, + { url = "https://files.pythonhosted.org/packages/a4/90/dd78c059a031b942fa36d71796e94a0739ea9fb4251fcd971e9579192611/pymongo-4.15.5-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:60ea9f07fbbcc7c88f922082eb27436dce6756730fdef76a3a9b4c972d0a57a3", size = 975129, upload-time = "2025-12-02T18:43:13.345Z" }, + { url = "https://files.pythonhosted.org/packages/40/72/87cf1bb75ef296456912eb7c6d51ebe7a36dbbe9bee0b8a9cd02a62a8a6e/pymongo-4.15.5-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:20af63218ae42870eaee31fb8cc4ce9e3af7f04ea02fc98ad751fb7a9c8d7be3", size = 1950973, upload-time = "2025-12-02T18:43:15.225Z" }, + { url = "https://files.pythonhosted.org/packages/8c/68/dfa507c8e5cebee4e305825b436c34f5b9ba34488a224b7e112a03dbc01e/pymongo-4.15.5-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:20d9c11625392f1f8dec7688de5ce344e110ca695344efa313ae4839f13bd017", size = 1995259, upload-time = "2025-12-02T18:43:16.869Z" }, + { url = "https://files.pythonhosted.org/packages/85/9d/832578e5ed7f682a09441bbc0881ffd506b843396ef4b34ec53bd38b2fb2/pymongo-4.15.5-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:1202b3e5357b161acb7b7cc98e730288a5c15544e5ef7254b33931cb9a27c36e", size = 2086591, upload-time = "2025-12-02T18:43:19.559Z" }, + { url = "https://files.pythonhosted.org/packages/0a/99/ca8342a0cefd2bb1392187ef8fe01432855e3b5cd1e640495246bcd65542/pymongo-4.15.5-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:63af710e9700dbf91abccf119c5f5533b9830286d29edb073803d3b252862c0d", size = 2070200, upload-time = "2025-12-02T18:43:21.214Z" }, + { url = "https://files.pythonhosted.org/packages/3f/7d/f4a9c1fceaaf71524ff9ff964cece0315dcc93df4999a49f064564875bff/pymongo-4.15.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:f22eeb86861cf7b8ee6886361d52abb88e3cd96c6f6d102e45e2604fc6e9e316", size = 1985263, upload-time = "2025-12-02T18:43:23.415Z" }, + { url = "https://files.pythonhosted.org/packages/d8/15/f942535bcc6e22d3c26c7e730daf296ffe69d8ce474c430ea7e551f8cf33/pymongo-4.15.5-cp313-cp313-win32.whl", hash = "sha256:aad6efe82b085bf77cec2a047ded2c810e93eced3ccf1a8e3faec3317df3cd52", size = 938143, upload-time = "2025-12-02T18:43:26.081Z" }, + { url = "https://files.pythonhosted.org/packages/02/2a/c92a6927d676dd376d1ae05c680139c5cad068b22e5f0c8cb61014448894/pymongo-4.15.5-cp313-cp313-win_amd64.whl", hash = "sha256:ccc801f6d71ebee2ec2fb3acc64b218fa7cdb7f57933b2f8eee15396b662a0a0", size = 962603, upload-time = "2025-12-02T18:43:27.816Z" }, + { url = "https://files.pythonhosted.org/packages/3a/f0/cdf78e9ed9c26fb36b8d75561ebf3c7fe206ff1c3de2e1b609fccdf3a55b/pymongo-4.15.5-cp313-cp313-win_arm64.whl", hash = "sha256:f043abdf20845bf29a554e95e4fe18d7d7a463095d6a1547699a12f80da91e02", size = 944308, upload-time = "2025-12-02T18:43:29.371Z" }, + { url = "https://files.pythonhosted.org/packages/03/0c/49713e0f8f41110e8b2bcce7c88570b158cf43dd53a0d01d4e1c772c7ede/pymongo-4.15.5-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:ba0e75a390334221744e2666fd2d4c82419b580c9bc8d6e0d2d61459d263f3af", size = 1029996, upload-time = "2025-12-02T18:43:31.58Z" }, + { url = "https://files.pythonhosted.org/packages/23/de/1df5d7b49647e9e4511054f750c1109cb8e160763b286b96879917170618/pymongo-4.15.5-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:853ec7da97642eabaf94d3de4453a86365729327d920af167bf14b2e87b24dce", size = 1029612, upload-time = "2025-12-02T18:43:33.69Z" }, + { url = "https://files.pythonhosted.org/packages/8b/19/3a051228e5beb0b421d725bb2ab5207a260c718d9b5be5b85cfe963733e3/pymongo-4.15.5-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:7631304106487480ebbd8acbe44ff1e69d1fdc27e83d9753dc1fd227cea10761", size = 2211814, upload-time = "2025-12-02T18:43:35.769Z" }, + { url = "https://files.pythonhosted.org/packages/bf/b3/989531a056c4388ef18245d1a6d6b3ec5c538666b000764286119efbf194/pymongo-4.15.5-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:50505181365eba5d4d35c462870b3614c8eddd0b2407c89377c1a59380640dd9", size = 2264629, upload-time = "2025-12-02T18:43:37.479Z" }, + { url = "https://files.pythonhosted.org/packages/ea/5f/8b3339fec44d0ba6d9388a19340fb1534c85ab6aa9fd8fb9c1af146bb72a/pymongo-4.15.5-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:3b75ec7006471299a571d6db1c5609ea4aa9c847a701e9b2953a8ede705d82db", size = 2371823, upload-time = "2025-12-02T18:43:39.866Z" }, + { url = "https://files.pythonhosted.org/packages/d4/7f/706bf45cf12990b6cb73e6290b048944a51592de7a597052a761eea90b8d/pymongo-4.15.5-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:c3fc24cb1f4ec60ed83162d4bba0c26abc6c9ae78c928805583673f3b3ea6984", size = 2351860, upload-time = "2025-12-02T18:43:42.002Z" }, + { url = "https://files.pythonhosted.org/packages/f3/c5/fdcc81c20c67a61ba1073122c9ab42c937dd6f914004747e9ceefa4cead3/pymongo-4.15.5-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:21d17bb2934b0640863361c08dd06991f128a97f9bee19425a499227be9ae6b4", size = 2251349, upload-time = "2025-12-02T18:43:43.924Z" }, + { url = "https://files.pythonhosted.org/packages/0c/1c/e540ccac0685b234a23574dce3c8e077cd59bcb73ab19bcab1915894d3a6/pymongo-4.15.5-cp314-cp314-win32.whl", hash = "sha256:5a3974236cb842b4ef50a5a6bfad9c7d83a713af68ea3592ba240bbcb863305a", size = 992901, upload-time = "2025-12-02T18:43:45.732Z" }, + { url = "https://files.pythonhosted.org/packages/89/31/eb72c53bc897cb50b57000d71ce9bdcfc9c84ba4c7f6d55348df47b241d8/pymongo-4.15.5-cp314-cp314-win_amd64.whl", hash = "sha256:73fa8a7eee44fd95ba7d5cf537340ff3ff34efeb1f7d6790532d0a6ed4dee575", size = 1021205, upload-time = "2025-12-02T18:43:47.756Z" }, + { url = "https://files.pythonhosted.org/packages/ea/4a/74a7cc350d60953d27b5636906b43b232b501cee07f70f6513ac603097e8/pymongo-4.15.5-cp314-cp314-win_arm64.whl", hash = "sha256:d41288ca2a3eb9ac7c8cad4ea86ef8d63b69dc46c9b65c2bbd35331ec2a0fc57", size = 1000616, upload-time = "2025-12-02T18:43:49.677Z" }, + { url = "https://files.pythonhosted.org/packages/1a/22/1e557868b9b207d7dbf7706412251b28a82d4b958e007b6f2569d59ada3d/pymongo-4.15.5-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:552670f0c8bff103656d4e4b1f2c018f789c9de03f7615ed5e547d5b1b83cda0", size = 1086723, upload-time = "2025-12-02T18:43:51.432Z" }, + { url = "https://files.pythonhosted.org/packages/aa/9c/2e24c2da289e1d3b9bc4e0850136a364473bddfbe8b19b33d2bb5d30ee0d/pymongo-4.15.5-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:41891b45f6ff1e23cfd1b7fbe40286664ad4507e2d2aa61c6d8c40eb6e11dded", size = 1086653, upload-time = "2025-12-02T18:43:53.131Z" }, + { url = "https://files.pythonhosted.org/packages/c6/be/4c2460c9ec91a891c754b91914ce700cc46009dae40183a85e26793dfae9/pymongo-4.15.5-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:524a8a593ae2eb1ec6db761daf0c03f98824e9882ab7df3d458d0c76c7ade255", size = 2531627, upload-time = "2025-12-02T18:43:55.141Z" }, + { url = "https://files.pythonhosted.org/packages/a0/48/cea56d04eb6bbd8b8943ff73d7cf26b94f715fccb23cf7ef9a4f853725a0/pymongo-4.15.5-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e7ceb35c41b86711a1b284c604e2b944a2d46cb1b8dd3f8b430a9155491378f2", size = 2603767, upload-time = "2025-12-02T18:43:57.188Z" }, + { url = "https://files.pythonhosted.org/packages/d9/ff/6743e351f8e0d5c3f388deb15f0cdbb77d2439eb3fba7ebcdf7878719517/pymongo-4.15.5-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:3be2336715924be3a861b5e40c634376fd6bfe6dd1892d391566aa5a88a31307", size = 2725216, upload-time = "2025-12-02T18:43:59.463Z" }, + { url = "https://files.pythonhosted.org/packages/d4/90/fa532b6320b3ba61872110ff6f674bd54b54a592c0c64719e4f46852d0b6/pymongo-4.15.5-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:d65df9c015e33f74ea9d1abf474971abca21e347a660384f8227dbdab75a33ca", size = 2704804, upload-time = "2025-12-02T18:44:01.415Z" }, + { url = "https://files.pythonhosted.org/packages/e1/84/1905c269aced043973b9528d94678e62e2eba249e70490c3c32dc70e2501/pymongo-4.15.5-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:83c05bea05e151754357f8e6bbb80d5accead5110dc58f64e283173c71ec9de2", size = 2582274, upload-time = "2025-12-02T18:44:03.427Z" }, + { url = "https://files.pythonhosted.org/packages/7e/af/78c13179961e418396ec6ef53c0f1c855f1e9f1176d10909e8345d65366a/pymongo-4.15.5-cp314-cp314t-win32.whl", hash = "sha256:7c285614a3e8570b03174a25db642e449b0e7f77a6c9e487b73b05c9bf228ee6", size = 1044015, upload-time = "2025-12-02T18:44:05.318Z" }, + { url = "https://files.pythonhosted.org/packages/b0/d5/49012f03418dce976124da339f3a6afbe6959cb0468ca6302596fe272926/pymongo-4.15.5-cp314-cp314t-win_amd64.whl", hash = "sha256:aae7d96f7b2b1a2753349130797543e61e93ee2ace8faa7fbe0565e2eb5d815f", size = 1078481, upload-time = "2025-12-02T18:44:07.215Z" }, + { url = "https://files.pythonhosted.org/packages/5e/fc/f352a070d8ff6f388ce344c5ddb82348a38e0d1c99346fa6bfdef07134fe/pymongo-4.15.5-cp314-cp314t-win_arm64.whl", hash = "sha256:576a7d4b99465d38112c72f7f3d345f9d16aeeff0f923a3b298c13e15ab4f0ad", size = 1051166, upload-time = "2025-12-02T18:44:09.048Z" }, ] [[package]] name = "pymysql" -version = "1.1.1" +version = "1.1.2" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/b3/8f/ce59b5e5ed4ce8512f879ff1fa5ab699d211ae2495f1adaa5fbba2a1eada/pymysql-1.1.1.tar.gz", hash = "sha256:e127611aaf2b417403c60bf4dc570124aeb4a57f5f37b8e95ae399a42f904cd0", size = 47678, upload-time = "2024-05-21T11:03:43.722Z" } +sdist = { url = "https://files.pythonhosted.org/packages/f5/ae/1fe3fcd9f959efa0ebe200b8de88b5a5ce3e767e38c7ac32fb179f16a388/pymysql-1.1.2.tar.gz", hash = "sha256:4961d3e165614ae65014e361811a724e2044ad3ea3739de9903ae7c21f539f03", size = 48258, upload-time = "2025-08-24T12:55:55.146Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/0c/94/e4181a1f6286f545507528c78016e00065ea913276888db2262507693ce5/PyMySQL-1.1.1-py3-none-any.whl", hash = "sha256:4de15da4c61dc132f4fb9ab763063e693d521a80fd0e87943b9a453dd4c19d6c", size = 44972, upload-time = "2024-05-21T11:03:41.216Z" }, + { url = "https://files.pythonhosted.org/packages/7c/4c/ad33b92b9864cbde84f259d5df035a6447f91891f5be77788e2a3892bce3/pymysql-1.1.2-py3-none-any.whl", hash = "sha256:e6b1d89711dd51f8f74b1631fe08f039e7d76cf67a42a323d3178f0f25762ed9", size = 45300, upload-time = "2025-08-24T12:55:53.394Z" }, ] [[package]] name = "pynacl" -version = "1.5.0" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "cffi" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/a7/22/27582568be639dfe22ddb3902225f91f2f17ceff88ce80e4db396c8986da/PyNaCl-1.5.0.tar.gz", hash = "sha256:8ac7448f09ab85811607bdd21ec2464495ac8b7c66d146bf545b0f08fb9220ba", size = 3392854, upload-time = "2022-01-07T22:05:41.134Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/ce/75/0b8ede18506041c0bf23ac4d8e2971b4161cd6ce630b177d0a08eb0d8857/PyNaCl-1.5.0-cp36-abi3-macosx_10_10_universal2.whl", hash = "sha256:401002a4aaa07c9414132aaed7f6836ff98f59277a234704ff66878c2ee4a0d1", size = 349920, upload-time = "2022-01-07T22:05:49.156Z" }, - { url = "https://files.pythonhosted.org/packages/59/bb/fddf10acd09637327a97ef89d2a9d621328850a72f1fdc8c08bdf72e385f/PyNaCl-1.5.0-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl", hash = "sha256:52cb72a79269189d4e0dc537556f4740f7f0a9ec41c1322598799b0bdad4ef92", size = 601722, upload-time = "2022-01-07T22:05:50.989Z" }, - { url = "https://files.pythonhosted.org/packages/5d/70/87a065c37cca41a75f2ce113a5a2c2aa7533be648b184ade58971b5f7ccc/PyNaCl-1.5.0-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a36d4a9dda1f19ce6e03c9a784a2921a4b726b02e1c736600ca9c22029474394", size = 680087, upload-time = "2022-01-07T22:05:52.539Z" }, - { url = "https://files.pythonhosted.org/packages/ee/87/f1bb6a595f14a327e8285b9eb54d41fef76c585a0edef0a45f6fc95de125/PyNaCl-1.5.0-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:0c84947a22519e013607c9be43706dd42513f9e6ae5d39d3613ca1e142fba44d", size = 856678, upload-time = "2022-01-07T22:05:54.251Z" }, - { url = "https://files.pythonhosted.org/packages/66/28/ca86676b69bf9f90e710571b67450508484388bfce09acf8a46f0b8c785f/PyNaCl-1.5.0-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:06b8f6fa7f5de8d5d2f7573fe8c863c051225a27b61e6860fd047b1775807858", size = 1133660, upload-time = "2022-01-07T22:05:56.056Z" }, - { url = "https://files.pythonhosted.org/packages/3d/85/c262db650e86812585e2bc59e497a8f59948a005325a11bbbc9ecd3fe26b/PyNaCl-1.5.0-cp36-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:a422368fc821589c228f4c49438a368831cb5bbc0eab5ebe1d7fac9dded6567b", size = 663824, upload-time = "2022-01-07T22:05:57.434Z" }, - { url = "https://files.pythonhosted.org/packages/fd/1a/cc308a884bd299b651f1633acb978e8596c71c33ca85e9dc9fa33a5399b9/PyNaCl-1.5.0-cp36-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:61f642bf2378713e2c2e1de73444a3778e5f0a38be6fee0fe532fe30060282ff", size = 1117912, upload-time = "2022-01-07T22:05:58.665Z" }, - { url = "https://files.pythonhosted.org/packages/25/2d/b7df6ddb0c2a33afdb358f8af6ea3b8c4d1196ca45497dd37a56f0c122be/PyNaCl-1.5.0-cp36-abi3-win32.whl", hash = "sha256:e46dae94e34b085175f8abb3b0aaa7da40767865ac82c928eeb9e57e1ea8a543", size = 204624, upload-time = "2022-01-07T22:06:00.085Z" }, - { url = "https://files.pythonhosted.org/packages/5e/22/d3db169895faaf3e2eda892f005f433a62db2decbcfbc2f61e6517adfa87/PyNaCl-1.5.0-cp36-abi3-win_amd64.whl", hash = "sha256:20f42270d27e1b6a29f54032090b972d97f0a1b0948cc52392041ef7831fee93", size = 212141, upload-time = "2022-01-07T22:06:01.861Z" }, +version = "1.6.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cffi", marker = "platform_python_implementation != 'PyPy' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/b2/46/aeca065d227e2265125aea590c9c47fbf5786128c9400ee0eb7c88931f06/pynacl-1.6.1.tar.gz", hash = "sha256:8d361dac0309f2b6ad33b349a56cd163c98430d409fa503b10b70b3ad66eaa1d", size = 3506616, upload-time = "2025-11-10T16:02:13.195Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/75/d6/4b2dca33ed512de8f54e5c6074aa06eaeb225bfbcd9b16f33a414389d6bd/pynacl-1.6.1-cp314-cp314t-macosx_10_10_universal2.whl", hash = "sha256:7d7c09749450c385301a3c20dca967a525152ae4608c0a096fe8464bfc3df93d", size = 389109, upload-time = "2025-11-10T16:01:28.79Z" }, + { url = "https://files.pythonhosted.org/packages/3c/30/e8dbb8ff4fa2559bbbb2187ba0d0d7faf728d17cb8396ecf4a898b22d3da/pynacl-1.6.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:fc734c1696ffd49b40f7c1779c89ba908157c57345cf626be2e0719488a076d3", size = 808254, upload-time = "2025-11-10T16:01:37.839Z" }, + { url = "https://files.pythonhosted.org/packages/44/f9/f5449c652f31da00249638dbab065ad4969c635119094b79b17c3a4da2ab/pynacl-1.6.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:3cd787ec1f5c155dc8ecf39b1333cfef41415dc96d392f1ce288b4fe970df489", size = 1407365, upload-time = "2025-11-10T16:01:40.454Z" }, + { url = "https://files.pythonhosted.org/packages/eb/2f/9aa5605f473b712065c0a193ebf4ad4725d7a245533f0cd7e5dcdbc78f35/pynacl-1.6.1-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6b35d93ab2df03ecb3aa506be0d3c73609a51449ae0855c2e89c7ed44abde40b", size = 843842, upload-time = "2025-11-10T16:01:30.524Z" }, + { url = "https://files.pythonhosted.org/packages/32/8d/748f0f6956e207453da8f5f21a70885fbbb2e060d5c9d78e0a4a06781451/pynacl-1.6.1-cp314-cp314t-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:dece79aecbb8f4640a1adbb81e4aa3bfb0e98e99834884a80eb3f33c7c30e708", size = 1445559, upload-time = "2025-11-10T16:01:33.663Z" }, + { url = "https://files.pythonhosted.org/packages/78/d0/2387f0dcb0e9816f38373999e48db4728ed724d31accdd4e737473319d35/pynacl-1.6.1-cp314-cp314t-manylinux_2_34_aarch64.whl", hash = "sha256:c2228054f04bf32d558fb89bb99f163a8197d5a9bf4efa13069a7fa8d4b93fc3", size = 825791, upload-time = "2025-11-10T16:01:34.823Z" }, + { url = "https://files.pythonhosted.org/packages/18/3d/ef6fb7eb072aaf15f280bc66f26ab97e7fc9efa50fb1927683013ef47473/pynacl-1.6.1-cp314-cp314t-manylinux_2_34_x86_64.whl", hash = "sha256:2b12f1b97346f177affcdfdc78875ff42637cb40dcf79484a97dae3448083a78", size = 1410843, upload-time = "2025-11-10T16:01:36.401Z" }, + { url = "https://files.pythonhosted.org/packages/e3/fb/23824a017526850ee7d8a1cc4cd1e3e5082800522c10832edbbca8619537/pynacl-1.6.1-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:e735c3a1bdfde3834503baf1a6d74d4a143920281cb724ba29fb84c9f49b9c48", size = 801140, upload-time = "2025-11-10T16:01:42.013Z" }, + { url = "https://files.pythonhosted.org/packages/5d/d1/ebc6b182cb98603a35635b727d62f094bc201bf610f97a3bb6357fe688d2/pynacl-1.6.1-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:3384a454adf5d716a9fadcb5eb2e3e72cd49302d1374a60edc531c9957a9b014", size = 1371966, upload-time = "2025-11-10T16:01:43.297Z" }, + { url = "https://files.pythonhosted.org/packages/64/f4/c9d7b6f02924b1f31db546c7bd2a83a2421c6b4a8e6a2e53425c9f2802e0/pynacl-1.6.1-cp314-cp314t-win32.whl", hash = "sha256:d8615ee34d01c8e0ab3f302dcdd7b32e2bcf698ba5f4809e7cc407c8cdea7717", size = 230482, upload-time = "2025-11-10T16:01:47.688Z" }, + { url = "https://files.pythonhosted.org/packages/c4/2c/942477957fba22da7bf99131850e5ebdff66623418ab48964e78a7a8293e/pynacl-1.6.1-cp314-cp314t-win_amd64.whl", hash = "sha256:5f5b35c1a266f8a9ad22525049280a600b19edd1f785bccd01ae838437dcf935", size = 243232, upload-time = "2025-11-10T16:01:45.208Z" }, + { url = "https://files.pythonhosted.org/packages/7a/0c/bdbc0d04a53b96a765ab03aa2cf9a76ad8653d70bf1665459b9a0dedaa1c/pynacl-1.6.1-cp314-cp314t-win_arm64.whl", hash = "sha256:d984c91fe3494793b2a1fb1e91429539c6c28e9ec8209d26d25041ec599ccf63", size = 187907, upload-time = "2025-11-10T16:01:46.328Z" }, + { url = "https://files.pythonhosted.org/packages/49/41/3cfb3b4f3519f6ff62bf71bf1722547644bcfb1b05b8fdbdc300249ba113/pynacl-1.6.1-cp38-abi3-macosx_10_10_universal2.whl", hash = "sha256:a6f9fd6d6639b1e81115c7f8ff16b8dedba1e8098d2756275d63d208b0e32021", size = 387591, upload-time = "2025-11-10T16:01:49.1Z" }, + { url = "https://files.pythonhosted.org/packages/18/21/b8a6563637799f617a3960f659513eccb3fcc655d5fc2be6e9dc6416826f/pynacl-1.6.1-cp38-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:e49a3f3d0da9f79c1bec2aa013261ab9fa651c7da045d376bd306cf7c1792993", size = 798866, upload-time = "2025-11-10T16:01:55.688Z" }, + { url = "https://files.pythonhosted.org/packages/e8/6c/dc38033bc3ea461e05ae8f15a81e0e67ab9a01861d352ae971c99de23e7c/pynacl-1.6.1-cp38-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:7713f8977b5d25f54a811ec9efa2738ac592e846dd6e8a4d3f7578346a841078", size = 1398001, upload-time = "2025-11-10T16:01:57.101Z" }, + { url = "https://files.pythonhosted.org/packages/9f/05/3ec0796a9917100a62c5073b20c4bce7bf0fea49e99b7906d1699cc7b61b/pynacl-1.6.1-cp38-abi3-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5a3becafc1ee2e5ea7f9abc642f56b82dcf5be69b961e782a96ea52b55d8a9fc", size = 834024, upload-time = "2025-11-10T16:01:50.228Z" }, + { url = "https://files.pythonhosted.org/packages/f0/b7/ae9982be0f344f58d9c64a1c25d1f0125c79201634efe3c87305ac7cb3e3/pynacl-1.6.1-cp38-abi3-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:4ce50d19f1566c391fedc8dc2f2f5be265ae214112ebe55315e41d1f36a7f0a9", size = 1436766, upload-time = "2025-11-10T16:01:51.886Z" }, + { url = "https://files.pythonhosted.org/packages/b4/51/b2ccbf89cf3025a02e044dd68a365cad593ebf70f532299f2c047d2b7714/pynacl-1.6.1-cp38-abi3-manylinux_2_34_aarch64.whl", hash = "sha256:543f869140f67d42b9b8d47f922552d7a967e6c116aad028c9bfc5f3f3b3a7b7", size = 817275, upload-time = "2025-11-10T16:01:53.351Z" }, + { url = "https://files.pythonhosted.org/packages/a8/6c/dd9ee8214edf63ac563b08a9b30f98d116942b621d39a751ac3256694536/pynacl-1.6.1-cp38-abi3-manylinux_2_34_x86_64.whl", hash = "sha256:a2bb472458c7ca959aeeff8401b8efef329b0fc44a89d3775cffe8fad3398ad8", size = 1401891, upload-time = "2025-11-10T16:01:54.587Z" }, + { url = "https://files.pythonhosted.org/packages/0f/c1/97d3e1c83772d78ee1db3053fd674bc6c524afbace2bfe8d419fd55d7ed1/pynacl-1.6.1-cp38-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:3206fa98737fdc66d59b8782cecc3d37d30aeec4593d1c8c145825a345bba0f0", size = 772291, upload-time = "2025-11-10T16:01:58.111Z" }, + { url = "https://files.pythonhosted.org/packages/4d/ca/691ff2fe12f3bb3e43e8e8df4b806f6384593d427f635104d337b8e00291/pynacl-1.6.1-cp38-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:53543b4f3d8acb344f75fd4d49f75e6572fce139f4bfb4815a9282296ff9f4c0", size = 1370839, upload-time = "2025-11-10T16:01:59.252Z" }, + { url = "https://files.pythonhosted.org/packages/30/27/06fe5389d30391fce006442246062cc35773c84fbcad0209fbbf5e173734/pynacl-1.6.1-cp38-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:319de653ef84c4f04e045eb250e6101d23132372b0a61a7acf91bac0fda8e58c", size = 791371, upload-time = "2025-11-10T16:02:01.075Z" }, + { url = "https://files.pythonhosted.org/packages/2c/7a/e2bde8c9d39074a5aa046c7d7953401608d1f16f71e237f4bef3fb9d7e49/pynacl-1.6.1-cp38-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:262a8de6bba4aee8a66f5edf62c214b06647461c9b6b641f8cd0cb1e3b3196fe", size = 1363031, upload-time = "2025-11-10T16:02:02.656Z" }, + { url = "https://files.pythonhosted.org/packages/dd/b6/63fd77264dae1087770a1bb414bc604470f58fbc21d83822fc9c76248076/pynacl-1.6.1-cp38-abi3-win32.whl", hash = "sha256:9fd1a4eb03caf8a2fe27b515a998d26923adb9ddb68db78e35ca2875a3830dde", size = 226585, upload-time = "2025-11-10T16:02:07.116Z" }, + { url = "https://files.pythonhosted.org/packages/12/c8/b419180f3fdb72ab4d45e1d88580761c267c7ca6eda9a20dcbcba254efe6/pynacl-1.6.1-cp38-abi3-win_amd64.whl", hash = "sha256:a569a4069a7855f963940040f35e87d8bc084cb2d6347428d5ad20550a0a1a21", size = 238923, upload-time = "2025-11-10T16:02:04.401Z" }, + { url = "https://files.pythonhosted.org/packages/35/76/c34426d532e4dce7ff36e4d92cb20f4cbbd94b619964b93d24e8f5b5510f/pynacl-1.6.1-cp38-abi3-win_arm64.whl", hash = "sha256:5953e8b8cfadb10889a6e7bd0f53041a745d1b3d30111386a1bb37af171e6daf", size = 183970, upload-time = "2025-11-10T16:02:05.786Z" }, ] [[package]] name = "pyparsing" -version = "3.2.3" +version = "3.2.5" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/bb/22/f1129e69d94ffff626bdb5c835506b3a5b4f3d070f17ea295e12c2c6f60f/pyparsing-3.2.3.tar.gz", hash = "sha256:b9c13f1ab8b3b542f72e28f634bad4de758ab3ce4546e4301970ad6fa77c38be", size = 1088608, upload-time = "2025-03-25T05:01:28.114Z" } +sdist = { url = "https://files.pythonhosted.org/packages/f2/a5/181488fc2b9d093e3972d2a472855aae8a03f000592dbfce716a512b3359/pyparsing-3.2.5.tar.gz", hash = "sha256:2df8d5b7b2802ef88e8d016a2eb9c7aeaa923529cd251ed0fe4608275d4105b6", size = 1099274, upload-time = "2025-09-21T04:11:06.277Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/05/e7/df2285f3d08fee213f2d041540fa4fc9ca6c2d44cf36d3a035bf2a8d2bcc/pyparsing-3.2.3-py3-none-any.whl", hash = "sha256:a749938e02d6fd0b59b356ca504a24982314bb090c383e3cf201c95ef7e2bfcf", size = 111120, upload-time = "2025-03-25T05:01:24.908Z" }, + { url = "https://files.pythonhosted.org/packages/10/5e/1aa9a93198c6b64513c9d7752de7422c06402de6600a8767da1524f9570b/pyparsing-3.2.5-py3-none-any.whl", hash = "sha256:e38a4f02064cf41fe6593d328d0512495ad1f3d8a91c4f73fc401b3079a59a5e", size = 113890, upload-time = "2025-09-21T04:11:04.117Z" }, ] [[package]] @@ -11687,33 +10608,32 @@ wheels = [ [[package]] name = "pytest" -version = "8.4.0" +version = "9.0.1" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "colorama", marker = "sys_platform == 'win32' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, - { name = "exceptiongroup", marker = "python_full_version < '3.11' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, { name = "iniconfig" }, { name = "packaging" }, { name = "pluggy" }, { name = "pygments" }, - { name = "tomli", marker = "python_full_version < '3.11' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/fb/aa/405082ce2749be5398045152251ac69c0f3578c7077efc53431303af97ce/pytest-8.4.0.tar.gz", hash = "sha256:14d920b48472ea0dbf68e45b96cd1ffda4705f33307dcc86c676c1b5104838a6", size = 1515232, upload-time = "2025-06-02T17:36:30.03Z" } +sdist = { url = "https://files.pythonhosted.org/packages/07/56/f013048ac4bc4c1d9be45afd4ab209ea62822fb1598f40687e6bf45dcea4/pytest-9.0.1.tar.gz", hash = "sha256:3e9c069ea73583e255c3b21cf46b8d3c56f6e3a1a8f6da94ccb0fcf57b9d73c8", size = 1564125, upload-time = "2025-11-12T13:05:09.333Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/2f/de/afa024cbe022b1b318a3d224125aa24939e99b4ff6f22e0ba639a2eaee47/pytest-8.4.0-py3-none-any.whl", hash = "sha256:f40f825768ad76c0977cbacdf1fd37c6f7a468e460ea6a0636078f8972d4517e", size = 363797, upload-time = "2025-06-02T17:36:27.859Z" }, + { url = "https://files.pythonhosted.org/packages/0b/8b/6300fb80f858cda1c51ffa17075df5d846757081d11ab4aa35cef9e6258b/pytest-9.0.1-py3-none-any.whl", hash = "sha256:67be0030d194df2dfa7b556f2e56fb3c3315bd5c8822c6951162b92b32ce7dad", size = 373668, upload-time = "2025-11-12T13:05:07.379Z" }, ] [[package]] name = "pytest-cov" -version = "6.1.1" +version = "7.0.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "coverage", extra = ["toml"] }, + { name = "pluggy" }, { name = "pytest" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/25/69/5f1e57f6c5a39f81411b550027bf72842c4567ff5fd572bed1edc9e4b5d9/pytest_cov-6.1.1.tar.gz", hash = "sha256:46935f7aaefba760e716c2ebfbe1c216240b9592966e7da99ea8292d4d3e2a0a", size = 66857, upload-time = "2025-04-05T14:07:51.592Z" } +sdist = { url = "https://files.pythonhosted.org/packages/5e/f7/c933acc76f5208b3b00089573cf6a2bc26dc80a8aece8f52bb7d6b1855ca/pytest_cov-7.0.0.tar.gz", hash = "sha256:33c97eda2e049a0c5298e91f519302a1334c26ac65c1a483d6206fd458361af1", size = 54328, upload-time = "2025-09-09T10:57:02.113Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/28/d0/def53b4a790cfb21483016430ed828f64830dd981ebe1089971cd10cab25/pytest_cov-6.1.1-py3-none-any.whl", hash = "sha256:bddf29ed2d0ab6f4df17b4c55b0a657287db8684af9c42ea546b21b1041b3dde", size = 23841, upload-time = "2025-04-05T14:07:49.641Z" }, + { url = "https://files.pythonhosted.org/packages/ee/49/1377b49de7d0c1ce41292161ea0f721913fa8722c19fb9c1e3aa0367eecb/pytest_cov-7.0.0-py3-none-any.whl", hash = "sha256:3b8e9558b16cc1479da72058bdecf8073661c7f57f7d3c5f22a1c23507f2d861", size = 22424, upload-time = "2025-09-09T10:57:00.695Z" }, ] [[package]] @@ -11730,42 +10650,42 @@ wheels = [ [[package]] name = "python-dotenv" -version = "1.1.0" +version = "1.2.1" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/88/2c/7bb1416c5620485aa793f2de31d3df393d3686aa8a8506d11e10e13c5baf/python_dotenv-1.1.0.tar.gz", hash = "sha256:41f90bc6f5f177fb41f53e87666db362025010eb28f60a01c9143bfa33a2b2d5", size = 39920, upload-time = "2025-03-25T10:14:56.835Z" } +sdist = { url = "https://files.pythonhosted.org/packages/f0/26/19cadc79a718c5edbec86fd4919a6b6d3f681039a2f6d66d14be94e75fb9/python_dotenv-1.2.1.tar.gz", hash = "sha256:42667e897e16ab0d66954af0e60a9caa94f0fd4ecf3aaf6d2d260eec1aa36ad6", size = 44221, upload-time = "2025-10-26T15:12:10.434Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/1e/18/98a99ad95133c6a6e2005fe89faedf294a748bd5dc803008059409ac9b1e/python_dotenv-1.1.0-py3-none-any.whl", hash = "sha256:d7c01d9e2293916c18baf562d95698754b0dbbb5e74d457c45d4f6561fb9d55d", size = 20256, upload-time = "2025-03-25T10:14:55.034Z" }, + { url = "https://files.pythonhosted.org/packages/14/1b/a298b06749107c305e1fe0f814c6c74aea7b2f1e10989cb30f544a1b3253/python_dotenv-1.2.1-py3-none-any.whl", hash = "sha256:b81ee9561e9ca4004139c6cbba3a238c32b03e4894671e181b671e8cb8425d61", size = 21230, upload-time = "2025-10-26T15:12:09.109Z" }, ] [[package]] name = "python-engineio" -version = "4.12.2" +version = "4.12.3" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "simple-websocket" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/ba/0b/67295279b66835f9fa7a491650efcd78b20321c127036eef62c11a31e028/python_engineio-4.12.2.tar.gz", hash = "sha256:e7e712ffe1be1f6a05ee5f951e72d434854a32fcfc7f6e4d9d3cae24ec70defa", size = 91677, upload-time = "2025-06-04T19:22:18.789Z" } +sdist = { url = "https://files.pythonhosted.org/packages/c9/d8/63e5535ab21dc4998ba1cfe13690ccf122883a38f025dca24d6e56c05eba/python_engineio-4.12.3.tar.gz", hash = "sha256:35633e55ec30915e7fc8f7e34ca8d73ee0c080cec8a8cd04faf2d7396f0a7a7a", size = 91910, upload-time = "2025-09-28T06:31:36.765Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/0c/fa/df59acedf7bbb937f69174d00f921a7b93aa5a5f5c17d05296c814fff6fc/python_engineio-4.12.2-py3-none-any.whl", hash = "sha256:8218ab66950e179dfec4b4bbb30aecf3f5d86f5e58e6fc1aa7fde2c698b2804f", size = 59536, upload-time = "2025-06-04T19:22:16.916Z" }, + { url = "https://files.pythonhosted.org/packages/d8/f0/c5aa0a69fd9326f013110653543f36ece4913c17921f3e1dbd78e1b423ee/python_engineio-4.12.3-py3-none-any.whl", hash = "sha256:7c099abb2a27ea7ab429c04da86ab2d82698cdd6c52406cb73766fe454feb7e1", size = 59637, upload-time = "2025-09-28T06:31:35.354Z" }, ] [[package]] name = "python-hostlist" -version = "2.2.1" +version = "2.3.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/2e/dd/c9ef1591ca0d0b4f2197751ecfbdf5c718cf4381bc4d7199eeba2dc90c42/python-hostlist-2.2.1.tar.gz", hash = "sha256:bbf7ca58835f84c6991084a661b409bc9cb3359c9f71be9b752442ba9225a0a5", size = 37216, upload-time = "2024-12-03T12:06:07.641Z" } +sdist = { url = "https://files.pythonhosted.org/packages/90/cc/bb6395c3f2b6bb739b1d3fc0e71f94e6a1c2e256df496237cbfd13cd74a6/python_hostlist-2.3.0.tar.gz", hash = "sha256:e1a0b18e525a5fca573cb9862799f11b3f2bd3ba7aec70c4ecd8b95341bb71ea", size = 37326, upload-time = "2025-08-29T11:40:19.06Z" } [[package]] name = "python-socketio" -version = "5.13.0" +version = "5.15.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "bidict" }, { name = "python-engineio" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/21/1a/396d50ccf06ee539fa758ce5623b59a9cb27637fc4b2dc07ed08bf495e77/python_socketio-5.13.0.tar.gz", hash = "sha256:ac4e19a0302ae812e23b712ec8b6427ca0521f7c582d6abb096e36e24a263029", size = 121125, upload-time = "2025-04-12T15:46:59.933Z" } +sdist = { url = "https://files.pythonhosted.org/packages/72/a8/5f7c805dd6d0d6cba91d3ea215b4b88889d1b99b71a53c932629daba53f1/python_socketio-5.15.0.tar.gz", hash = "sha256:d0403ababb59aa12fd5adcfc933a821113f27bd77761bc1c54aad2e3191a9b69", size = 126439, upload-time = "2025-11-22T18:50:21.062Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/3c/32/b4fb8585d1be0f68bde7e110dffbcf354915f77ad8c778563f0ad9655c02/python_socketio-5.13.0-py3-none-any.whl", hash = "sha256:51f68d6499f2df8524668c24bcec13ba1414117cfb3a90115c559b601ab10caf", size = 77800, upload-time = "2025-04-12T15:46:58.412Z" }, + { url = "https://files.pythonhosted.org/packages/cd/fa/1ef2f8537272a2f383d72b9301c3ef66a49710b3bb7dcb2bd138cf2920d1/python_socketio-5.15.0-py3-none-any.whl", hash = "sha256:e93363102f4da6d8e7a8872bf4908b866c40f070e716aa27132891e643e2687c", size = 79451, upload-time = "2025-11-22T18:50:19.416Z" }, ] [package.optional-dependencies] @@ -11776,21 +10696,21 @@ client = [ [[package]] name = "pytorch-lightning" -version = "2.5.1.post0" +version = "2.6.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "fsspec", extra = ["http"], marker = "(extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim')" }, { name = "lightning-utilities" }, { name = "packaging" }, { name = "pyyaml" }, - { name = "torch", version = "2.2.0", source = { registry = "https://pypi.org/simple" } }, + { name = "torch", version = "2.7.0", source = { registry = "https://pypi.org/simple" } }, { name = "torchmetrics" }, { name = "tqdm" }, { name = "typing-extensions" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/fe/0c/cfa6223c525f67ea3a7a2907e36e9e9a9653300f82cfd9af88f8136514ab/pytorch_lightning-2.5.1.post0.tar.gz", hash = "sha256:abc3d5a804d41f941b14e3fd7db5572a1270cd1e9889b50e962984c87d498d94", size = 634368, upload-time = "2025-04-25T20:24:29.272Z" } +sdist = { url = "https://files.pythonhosted.org/packages/07/d7/e3963d9669758f93b07941f4e2e82a394eb3d0980e29baa4764f3bad6689/pytorch_lightning-2.6.0.tar.gz", hash = "sha256:25b0d4f05e1f33b72be0920c34d0465777fe5f623228f9d6252b4b0f685d7037", size = 658853, upload-time = "2025-11-28T09:34:13.098Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/de/a9/e14821cfaf08e8d78185cca0477c9d3a62bafe1b4b530100f7b66bb1f7bb/pytorch_lightning-2.5.1.post0-py3-none-any.whl", hash = "sha256:873fb21392c8b79908218f5ca8f65bd835439216e52550c36ff55d849e99c93e", size = 823084, upload-time = "2025-04-25T20:24:27.421Z" }, + { url = "https://files.pythonhosted.org/packages/77/eb/cc6dbfe70d15318dbce82674b1e8057cef2634ca9f9121a16b8a06c630db/pytorch_lightning-2.6.0-py3-none-any.whl", hash = "sha256:ee72cff4b8c983ecfaae8599382544bd5236d9eb300adc7dd305f359195f4e79", size = 849476, upload-time = "2025-11-28T09:34:11.271Z" }, ] [[package]] @@ -11804,214 +10724,212 @@ wheels = [ [[package]] name = "pywin32" -version = "310" +version = "311" source = { registry = "https://pypi.org/simple" } wheels = [ - { url = "https://files.pythonhosted.org/packages/95/da/a5f38fffbba2fb99aa4aa905480ac4b8e83ca486659ac8c95bce47fb5276/pywin32-310-cp310-cp310-win32.whl", hash = "sha256:6dd97011efc8bf51d6793a82292419eba2c71cf8e7250cfac03bba284454abc1", size = 8848240, upload-time = "2025-03-17T00:55:46.783Z" }, - { url = "https://files.pythonhosted.org/packages/aa/fe/d873a773324fa565619ba555a82c9dabd677301720f3660a731a5d07e49a/pywin32-310-cp310-cp310-win_amd64.whl", hash = "sha256:c3e78706e4229b915a0821941a84e7ef420bf2b77e08c9dae3c76fd03fd2ae3d", size = 9601854, upload-time = "2025-03-17T00:55:48.783Z" }, - { url = "https://files.pythonhosted.org/packages/3c/84/1a8e3d7a15490d28a5d816efa229ecb4999cdc51a7c30dd8914f669093b8/pywin32-310-cp310-cp310-win_arm64.whl", hash = "sha256:33babed0cf0c92a6f94cc6cc13546ab24ee13e3e800e61ed87609ab91e4c8213", size = 8522963, upload-time = "2025-03-17T00:55:50.969Z" }, - { url = "https://files.pythonhosted.org/packages/f7/b1/68aa2986129fb1011dabbe95f0136f44509afaf072b12b8f815905a39f33/pywin32-310-cp311-cp311-win32.whl", hash = "sha256:1e765f9564e83011a63321bb9d27ec456a0ed90d3732c4b2e312b855365ed8bd", size = 8784284, upload-time = "2025-03-17T00:55:53.124Z" }, - { url = "https://files.pythonhosted.org/packages/b3/bd/d1592635992dd8db5bb8ace0551bc3a769de1ac8850200cfa517e72739fb/pywin32-310-cp311-cp311-win_amd64.whl", hash = "sha256:126298077a9d7c95c53823934f000599f66ec9296b09167810eb24875f32689c", size = 9520748, upload-time = "2025-03-17T00:55:55.203Z" }, - { url = "https://files.pythonhosted.org/packages/90/b1/ac8b1ffce6603849eb45a91cf126c0fa5431f186c2e768bf56889c46f51c/pywin32-310-cp311-cp311-win_arm64.whl", hash = "sha256:19ec5fc9b1d51c4350be7bb00760ffce46e6c95eaf2f0b2f1150657b1a43c582", size = 8455941, upload-time = "2025-03-17T00:55:57.048Z" }, - { url = "https://files.pythonhosted.org/packages/6b/ec/4fdbe47932f671d6e348474ea35ed94227fb5df56a7c30cbbb42cd396ed0/pywin32-310-cp312-cp312-win32.whl", hash = "sha256:8a75a5cc3893e83a108c05d82198880704c44bbaee4d06e442e471d3c9ea4f3d", size = 8796239, upload-time = "2025-03-17T00:55:58.807Z" }, - { url = "https://files.pythonhosted.org/packages/e3/e5/b0627f8bb84e06991bea89ad8153a9e50ace40b2e1195d68e9dff6b03d0f/pywin32-310-cp312-cp312-win_amd64.whl", hash = "sha256:bf5c397c9a9a19a6f62f3fb821fbf36cac08f03770056711f765ec1503972060", size = 9503839, upload-time = "2025-03-17T00:56:00.8Z" }, - { url = "https://files.pythonhosted.org/packages/1f/32/9ccf53748df72301a89713936645a664ec001abd35ecc8578beda593d37d/pywin32-310-cp312-cp312-win_arm64.whl", hash = "sha256:2349cc906eae872d0663d4d6290d13b90621eaf78964bb1578632ff20e152966", size = 8459470, upload-time = "2025-03-17T00:56:02.601Z" }, - { url = "https://files.pythonhosted.org/packages/1c/09/9c1b978ffc4ae53999e89c19c77ba882d9fce476729f23ef55211ea1c034/pywin32-310-cp313-cp313-win32.whl", hash = "sha256:5d241a659c496ada3253cd01cfaa779b048e90ce4b2b38cd44168ad555ce74ab", size = 8794384, upload-time = "2025-03-17T00:56:04.383Z" }, - { url = "https://files.pythonhosted.org/packages/45/3c/b4640f740ffebadd5d34df35fecba0e1cfef8fde9f3e594df91c28ad9b50/pywin32-310-cp313-cp313-win_amd64.whl", hash = "sha256:667827eb3a90208ddbdcc9e860c81bde63a135710e21e4cb3348968e4bd5249e", size = 9503039, upload-time = "2025-03-17T00:56:06.207Z" }, - { url = "https://files.pythonhosted.org/packages/b4/f4/f785020090fb050e7fb6d34b780f2231f302609dc964672f72bfaeb59a28/pywin32-310-cp313-cp313-win_arm64.whl", hash = "sha256:e308f831de771482b7cf692a1f308f8fca701b2d8f9dde6cc440c7da17e47b33", size = 8458152, upload-time = "2025-03-17T00:56:07.819Z" }, + { url = "https://files.pythonhosted.org/packages/7c/af/449a6a91e5d6db51420875c54f6aff7c97a86a3b13a0b4f1a5c13b988de3/pywin32-311-cp311-cp311-win32.whl", hash = "sha256:184eb5e436dea364dcd3d2316d577d625c0351bf237c4e9a5fabbcfa5a58b151", size = 8697031, upload-time = "2025-07-14T20:13:13.266Z" }, + { url = "https://files.pythonhosted.org/packages/51/8f/9bb81dd5bb77d22243d33c8397f09377056d5c687aa6d4042bea7fbf8364/pywin32-311-cp311-cp311-win_amd64.whl", hash = "sha256:3ce80b34b22b17ccbd937a6e78e7225d80c52f5ab9940fe0506a1a16f3dab503", size = 9508308, upload-time = "2025-07-14T20:13:15.147Z" }, + { url = "https://files.pythonhosted.org/packages/44/7b/9c2ab54f74a138c491aba1b1cd0795ba61f144c711daea84a88b63dc0f6c/pywin32-311-cp311-cp311-win_arm64.whl", hash = "sha256:a733f1388e1a842abb67ffa8e7aad0e70ac519e09b0f6a784e65a136ec7cefd2", size = 8703930, upload-time = "2025-07-14T20:13:16.945Z" }, + { url = "https://files.pythonhosted.org/packages/e7/ab/01ea1943d4eba0f850c3c61e78e8dd59757ff815ff3ccd0a84de5f541f42/pywin32-311-cp312-cp312-win32.whl", hash = "sha256:750ec6e621af2b948540032557b10a2d43b0cee2ae9758c54154d711cc852d31", size = 8706543, upload-time = "2025-07-14T20:13:20.765Z" }, + { url = "https://files.pythonhosted.org/packages/d1/a8/a0e8d07d4d051ec7502cd58b291ec98dcc0c3fff027caad0470b72cfcc2f/pywin32-311-cp312-cp312-win_amd64.whl", hash = "sha256:b8c095edad5c211ff31c05223658e71bf7116daa0ecf3ad85f3201ea3190d067", size = 9495040, upload-time = "2025-07-14T20:13:22.543Z" }, + { url = "https://files.pythonhosted.org/packages/ba/3a/2ae996277b4b50f17d61f0603efd8253cb2d79cc7ae159468007b586396d/pywin32-311-cp312-cp312-win_arm64.whl", hash = "sha256:e286f46a9a39c4a18b319c28f59b61de793654af2f395c102b4f819e584b5852", size = 8710102, upload-time = "2025-07-14T20:13:24.682Z" }, + { url = "https://files.pythonhosted.org/packages/a5/be/3fd5de0979fcb3994bfee0d65ed8ca9506a8a1260651b86174f6a86f52b3/pywin32-311-cp313-cp313-win32.whl", hash = "sha256:f95ba5a847cba10dd8c4d8fefa9f2a6cf283b8b88ed6178fa8a6c1ab16054d0d", size = 8705700, upload-time = "2025-07-14T20:13:26.471Z" }, + { url = "https://files.pythonhosted.org/packages/e3/28/e0a1909523c6890208295a29e05c2adb2126364e289826c0a8bc7297bd5c/pywin32-311-cp313-cp313-win_amd64.whl", hash = "sha256:718a38f7e5b058e76aee1c56ddd06908116d35147e133427e59a3983f703a20d", size = 9494700, upload-time = "2025-07-14T20:13:28.243Z" }, + { url = "https://files.pythonhosted.org/packages/04/bf/90339ac0f55726dce7d794e6d79a18a91265bdf3aa70b6b9ca52f35e022a/pywin32-311-cp313-cp313-win_arm64.whl", hash = "sha256:7b4075d959648406202d92a2310cb990fea19b535c7f4a78d3f5e10b926eeb8a", size = 8709318, upload-time = "2025-07-14T20:13:30.348Z" }, + { url = "https://files.pythonhosted.org/packages/c9/31/097f2e132c4f16d99a22bfb777e0fd88bd8e1c634304e102f313af69ace5/pywin32-311-cp314-cp314-win32.whl", hash = "sha256:b7a2c10b93f8986666d0c803ee19b5990885872a7de910fc460f9b0c2fbf92ee", size = 8840714, upload-time = "2025-07-14T20:13:32.449Z" }, + { url = "https://files.pythonhosted.org/packages/90/4b/07c77d8ba0e01349358082713400435347df8426208171ce297da32c313d/pywin32-311-cp314-cp314-win_amd64.whl", hash = "sha256:3aca44c046bd2ed8c90de9cb8427f581c479e594e99b5c0bb19b29c10fd6cb87", size = 9656800, upload-time = "2025-07-14T20:13:34.312Z" }, + { url = "https://files.pythonhosted.org/packages/c0/d2/21af5c535501a7233e734b8af901574572da66fcc254cb35d0609c9080dd/pywin32-311-cp314-cp314-win_arm64.whl", hash = "sha256:a508e2d9025764a8270f93111a970e1d0fbfc33f4153b388bb649b7eec4f9b42", size = 8932540, upload-time = "2025-07-14T20:13:36.379Z" }, ] [[package]] name = "pyyaml" -version = "6.0.2" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/54/ed/79a089b6be93607fa5cdaedf301d7dfb23af5f25c398d5ead2525b063e17/pyyaml-6.0.2.tar.gz", hash = "sha256:d584d9ec91ad65861cc08d42e834324ef890a082e591037abe114850ff7bbc3e", size = 130631, upload-time = "2024-08-06T20:33:50.674Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/9b/95/a3fac87cb7158e231b5a6012e438c647e1a87f09f8e0d123acec8ab8bf71/PyYAML-6.0.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0a9a2848a5b7feac301353437eb7d5957887edbf81d56e903999a75a3d743086", size = 184199, upload-time = "2024-08-06T20:31:40.178Z" }, - { url = "https://files.pythonhosted.org/packages/c7/7a/68bd47624dab8fd4afbfd3c48e3b79efe09098ae941de5b58abcbadff5cb/PyYAML-6.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:29717114e51c84ddfba879543fb232a6ed60086602313ca38cce623c1d62cfbf", size = 171758, upload-time = "2024-08-06T20:31:42.173Z" }, - { url = "https://files.pythonhosted.org/packages/49/ee/14c54df452143b9ee9f0f29074d7ca5516a36edb0b4cc40c3f280131656f/PyYAML-6.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8824b5a04a04a047e72eea5cec3bc266db09e35de6bdfe34c9436ac5ee27d237", size = 718463, upload-time = "2024-08-06T20:31:44.263Z" }, - { url = "https://files.pythonhosted.org/packages/4d/61/de363a97476e766574650d742205be468921a7b532aa2499fcd886b62530/PyYAML-6.0.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7c36280e6fb8385e520936c3cb3b8042851904eba0e58d277dca80a5cfed590b", size = 719280, upload-time = "2024-08-06T20:31:50.199Z" }, - { url = "https://files.pythonhosted.org/packages/6b/4e/1523cb902fd98355e2e9ea5e5eb237cbc5f3ad5f3075fa65087aa0ecb669/PyYAML-6.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ec031d5d2feb36d1d1a24380e4db6d43695f3748343d99434e6f5f9156aaa2ed", size = 751239, upload-time = "2024-08-06T20:31:52.292Z" }, - { url = "https://files.pythonhosted.org/packages/b7/33/5504b3a9a4464893c32f118a9cc045190a91637b119a9c881da1cf6b7a72/PyYAML-6.0.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:936d68689298c36b53b29f23c6dbb74de12b4ac12ca6cfe0e047bedceea56180", size = 695802, upload-time = "2024-08-06T20:31:53.836Z" }, - { url = "https://files.pythonhosted.org/packages/5c/20/8347dcabd41ef3a3cdc4f7b7a2aff3d06598c8779faa189cdbf878b626a4/PyYAML-6.0.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:23502f431948090f597378482b4812b0caae32c22213aecf3b55325e049a6c68", size = 720527, upload-time = "2024-08-06T20:31:55.565Z" }, - { url = "https://files.pythonhosted.org/packages/be/aa/5afe99233fb360d0ff37377145a949ae258aaab831bde4792b32650a4378/PyYAML-6.0.2-cp310-cp310-win32.whl", hash = "sha256:2e99c6826ffa974fe6e27cdb5ed0021786b03fc98e5ee3c5bfe1fd5015f42b99", size = 144052, upload-time = "2024-08-06T20:31:56.914Z" }, - { url = "https://files.pythonhosted.org/packages/b5/84/0fa4b06f6d6c958d207620fc60005e241ecedceee58931bb20138e1e5776/PyYAML-6.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:a4d3091415f010369ae4ed1fc6b79def9416358877534caf6a0fdd2146c87a3e", size = 161774, upload-time = "2024-08-06T20:31:58.304Z" }, - { url = "https://files.pythonhosted.org/packages/f8/aa/7af4e81f7acba21a4c6be026da38fd2b872ca46226673c89a758ebdc4fd2/PyYAML-6.0.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:cc1c1159b3d456576af7a3e4d1ba7e6924cb39de8f67111c735f6fc832082774", size = 184612, upload-time = "2024-08-06T20:32:03.408Z" }, - { url = "https://files.pythonhosted.org/packages/8b/62/b9faa998fd185f65c1371643678e4d58254add437edb764a08c5a98fb986/PyYAML-6.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1e2120ef853f59c7419231f3bf4e7021f1b936f6ebd222406c3b60212205d2ee", size = 172040, upload-time = "2024-08-06T20:32:04.926Z" }, - { url = "https://files.pythonhosted.org/packages/ad/0c/c804f5f922a9a6563bab712d8dcc70251e8af811fce4524d57c2c0fd49a4/PyYAML-6.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5d225db5a45f21e78dd9358e58a98702a0302f2659a3c6cd320564b75b86f47c", size = 736829, upload-time = "2024-08-06T20:32:06.459Z" }, - { url = "https://files.pythonhosted.org/packages/51/16/6af8d6a6b210c8e54f1406a6b9481febf9c64a3109c541567e35a49aa2e7/PyYAML-6.0.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5ac9328ec4831237bec75defaf839f7d4564be1e6b25ac710bd1a96321cc8317", size = 764167, upload-time = "2024-08-06T20:32:08.338Z" }, - { url = "https://files.pythonhosted.org/packages/75/e4/2c27590dfc9992f73aabbeb9241ae20220bd9452df27483b6e56d3975cc5/PyYAML-6.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3ad2a3decf9aaba3d29c8f537ac4b243e36bef957511b4766cb0057d32b0be85", size = 762952, upload-time = "2024-08-06T20:32:14.124Z" }, - { url = "https://files.pythonhosted.org/packages/9b/97/ecc1abf4a823f5ac61941a9c00fe501b02ac3ab0e373c3857f7d4b83e2b6/PyYAML-6.0.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:ff3824dc5261f50c9b0dfb3be22b4567a6f938ccce4587b38952d85fd9e9afe4", size = 735301, upload-time = "2024-08-06T20:32:16.17Z" }, - { url = "https://files.pythonhosted.org/packages/45/73/0f49dacd6e82c9430e46f4a027baa4ca205e8b0a9dce1397f44edc23559d/PyYAML-6.0.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:797b4f722ffa07cc8d62053e4cff1486fa6dc094105d13fea7b1de7d8bf71c9e", size = 756638, upload-time = "2024-08-06T20:32:18.555Z" }, - { url = "https://files.pythonhosted.org/packages/22/5f/956f0f9fc65223a58fbc14459bf34b4cc48dec52e00535c79b8db361aabd/PyYAML-6.0.2-cp311-cp311-win32.whl", hash = "sha256:11d8f3dd2b9c1207dcaf2ee0bbbfd5991f571186ec9cc78427ba5bd32afae4b5", size = 143850, upload-time = "2024-08-06T20:32:19.889Z" }, - { url = "https://files.pythonhosted.org/packages/ed/23/8da0bbe2ab9dcdd11f4f4557ccaf95c10b9811b13ecced089d43ce59c3c8/PyYAML-6.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:e10ce637b18caea04431ce14fabcf5c64a1c61ec9c56b071a4b7ca131ca52d44", size = 161980, upload-time = "2024-08-06T20:32:21.273Z" }, - { url = "https://files.pythonhosted.org/packages/86/0c/c581167fc46d6d6d7ddcfb8c843a4de25bdd27e4466938109ca68492292c/PyYAML-6.0.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:c70c95198c015b85feafc136515252a261a84561b7b1d51e3384e0655ddf25ab", size = 183873, upload-time = "2024-08-06T20:32:25.131Z" }, - { url = "https://files.pythonhosted.org/packages/a8/0c/38374f5bb272c051e2a69281d71cba6fdb983413e6758b84482905e29a5d/PyYAML-6.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ce826d6ef20b1bc864f0a68340c8b3287705cae2f8b4b1d932177dcc76721725", size = 173302, upload-time = "2024-08-06T20:32:26.511Z" }, - { url = "https://files.pythonhosted.org/packages/c3/93/9916574aa8c00aa06bbac729972eb1071d002b8e158bd0e83a3b9a20a1f7/PyYAML-6.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f71ea527786de97d1a0cc0eacd1defc0985dcf6b3f17bb77dcfc8c34bec4dc5", size = 739154, upload-time = "2024-08-06T20:32:28.363Z" }, - { url = "https://files.pythonhosted.org/packages/95/0f/b8938f1cbd09739c6da569d172531567dbcc9789e0029aa070856f123984/PyYAML-6.0.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9b22676e8097e9e22e36d6b7bda33190d0d400f345f23d4065d48f4ca7ae0425", size = 766223, upload-time = "2024-08-06T20:32:30.058Z" }, - { url = "https://files.pythonhosted.org/packages/b9/2b/614b4752f2e127db5cc206abc23a8c19678e92b23c3db30fc86ab731d3bd/PyYAML-6.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:80bab7bfc629882493af4aa31a4cfa43a4c57c83813253626916b8c7ada83476", size = 767542, upload-time = "2024-08-06T20:32:31.881Z" }, - { url = "https://files.pythonhosted.org/packages/d4/00/dd137d5bcc7efea1836d6264f049359861cf548469d18da90cd8216cf05f/PyYAML-6.0.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:0833f8694549e586547b576dcfaba4a6b55b9e96098b36cdc7ebefe667dfed48", size = 731164, upload-time = "2024-08-06T20:32:37.083Z" }, - { url = "https://files.pythonhosted.org/packages/c9/1f/4f998c900485e5c0ef43838363ba4a9723ac0ad73a9dc42068b12aaba4e4/PyYAML-6.0.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8b9c7197f7cb2738065c481a0461e50ad02f18c78cd75775628afb4d7137fb3b", size = 756611, upload-time = "2024-08-06T20:32:38.898Z" }, - { url = "https://files.pythonhosted.org/packages/df/d1/f5a275fdb252768b7a11ec63585bc38d0e87c9e05668a139fea92b80634c/PyYAML-6.0.2-cp312-cp312-win32.whl", hash = "sha256:ef6107725bd54b262d6dedcc2af448a266975032bc85ef0172c5f059da6325b4", size = 140591, upload-time = "2024-08-06T20:32:40.241Z" }, - { url = "https://files.pythonhosted.org/packages/0c/e8/4f648c598b17c3d06e8753d7d13d57542b30d56e6c2dedf9c331ae56312e/PyYAML-6.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:7e7401d0de89a9a855c839bc697c079a4af81cf878373abd7dc625847d25cbd8", size = 156338, upload-time = "2024-08-06T20:32:41.93Z" }, - { url = "https://files.pythonhosted.org/packages/ef/e3/3af305b830494fa85d95f6d95ef7fa73f2ee1cc8ef5b495c7c3269fb835f/PyYAML-6.0.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:efdca5630322a10774e8e98e1af481aad470dd62c3170801852d752aa7a783ba", size = 181309, upload-time = "2024-08-06T20:32:43.4Z" }, - { url = "https://files.pythonhosted.org/packages/45/9f/3b1c20a0b7a3200524eb0076cc027a970d320bd3a6592873c85c92a08731/PyYAML-6.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:50187695423ffe49e2deacb8cd10510bc361faac997de9efef88badc3bb9e2d1", size = 171679, upload-time = "2024-08-06T20:32:44.801Z" }, - { url = "https://files.pythonhosted.org/packages/7c/9a/337322f27005c33bcb656c655fa78325b730324c78620e8328ae28b64d0c/PyYAML-6.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0ffe8360bab4910ef1b9e87fb812d8bc0a308b0d0eef8c8f44e0254ab3b07133", size = 733428, upload-time = "2024-08-06T20:32:46.432Z" }, - { url = "https://files.pythonhosted.org/packages/a3/69/864fbe19e6c18ea3cc196cbe5d392175b4cf3d5d0ac1403ec3f2d237ebb5/PyYAML-6.0.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:17e311b6c678207928d649faa7cb0d7b4c26a0ba73d41e99c4fff6b6c3276484", size = 763361, upload-time = "2024-08-06T20:32:51.188Z" }, - { url = "https://files.pythonhosted.org/packages/04/24/b7721e4845c2f162d26f50521b825fb061bc0a5afcf9a386840f23ea19fa/PyYAML-6.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:70b189594dbe54f75ab3a1acec5f1e3faa7e8cf2f1e08d9b561cb41b845f69d5", size = 759523, upload-time = "2024-08-06T20:32:53.019Z" }, - { url = "https://files.pythonhosted.org/packages/2b/b2/e3234f59ba06559c6ff63c4e10baea10e5e7df868092bf9ab40e5b9c56b6/PyYAML-6.0.2-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:41e4e3953a79407c794916fa277a82531dd93aad34e29c2a514c2c0c5fe971cc", size = 726660, upload-time = "2024-08-06T20:32:54.708Z" }, - { url = "https://files.pythonhosted.org/packages/fe/0f/25911a9f080464c59fab9027482f822b86bf0608957a5fcc6eaac85aa515/PyYAML-6.0.2-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:68ccc6023a3400877818152ad9a1033e3db8625d899c72eacb5a668902e4d652", size = 751597, upload-time = "2024-08-06T20:32:56.985Z" }, - { url = "https://files.pythonhosted.org/packages/14/0d/e2c3b43bbce3cf6bd97c840b46088a3031085179e596d4929729d8d68270/PyYAML-6.0.2-cp313-cp313-win32.whl", hash = "sha256:bc2fa7c6b47d6bc618dd7fb02ef6fdedb1090ec036abab80d4681424b84c1183", size = 140527, upload-time = "2024-08-06T20:33:03.001Z" }, - { url = "https://files.pythonhosted.org/packages/fa/de/02b54f42487e3d3c6efb3f89428677074ca7bf43aae402517bc7cca949f3/PyYAML-6.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:8388ee1976c416731879ac16da0aff3f63b286ffdd57cdeb95f3f2e085687563", size = 156446, upload-time = "2024-08-06T20:33:04.33Z" }, +version = "6.0.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/05/8e/961c0007c59b8dd7729d542c61a4d537767a59645b82a0b521206e1e25c2/pyyaml-6.0.3.tar.gz", hash = "sha256:d76623373421df22fb4cf8817020cbb7ef15c725b9d5e45f17e189bfc384190f", size = 130960, upload-time = "2025-09-25T21:33:16.546Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/6d/16/a95b6757765b7b031c9374925bb718d55e0a9ba8a1b6a12d25962ea44347/pyyaml-6.0.3-cp311-cp311-macosx_10_13_x86_64.whl", hash = "sha256:44edc647873928551a01e7a563d7452ccdebee747728c1080d881d68af7b997e", size = 185826, upload-time = "2025-09-25T21:31:58.655Z" }, + { url = "https://files.pythonhosted.org/packages/16/19/13de8e4377ed53079ee996e1ab0a9c33ec2faf808a4647b7b4c0d46dd239/pyyaml-6.0.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:652cb6edd41e718550aad172851962662ff2681490a8a711af6a4d288dd96824", size = 175577, upload-time = "2025-09-25T21:32:00.088Z" }, + { url = "https://files.pythonhosted.org/packages/0c/62/d2eb46264d4b157dae1275b573017abec435397aa59cbcdab6fc978a8af4/pyyaml-6.0.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:10892704fc220243f5305762e276552a0395f7beb4dbf9b14ec8fd43b57f126c", size = 775556, upload-time = "2025-09-25T21:32:01.31Z" }, + { url = "https://files.pythonhosted.org/packages/10/cb/16c3f2cf3266edd25aaa00d6c4350381c8b012ed6f5276675b9eba8d9ff4/pyyaml-6.0.3-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:850774a7879607d3a6f50d36d04f00ee69e7fc816450e5f7e58d7f17f1ae5c00", size = 882114, upload-time = "2025-09-25T21:32:03.376Z" }, + { url = "https://files.pythonhosted.org/packages/71/60/917329f640924b18ff085ab889a11c763e0b573da888e8404ff486657602/pyyaml-6.0.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b8bb0864c5a28024fac8a632c443c87c5aa6f215c0b126c449ae1a150412f31d", size = 806638, upload-time = "2025-09-25T21:32:04.553Z" }, + { url = "https://files.pythonhosted.org/packages/dd/6f/529b0f316a9fd167281a6c3826b5583e6192dba792dd55e3203d3f8e655a/pyyaml-6.0.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:1d37d57ad971609cf3c53ba6a7e365e40660e3be0e5175fa9f2365a379d6095a", size = 767463, upload-time = "2025-09-25T21:32:06.152Z" }, + { url = "https://files.pythonhosted.org/packages/f2/6a/b627b4e0c1dd03718543519ffb2f1deea4a1e6d42fbab8021936a4d22589/pyyaml-6.0.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:37503bfbfc9d2c40b344d06b2199cf0e96e97957ab1c1b546fd4f87e53e5d3e4", size = 794986, upload-time = "2025-09-25T21:32:07.367Z" }, + { url = "https://files.pythonhosted.org/packages/45/91/47a6e1c42d9ee337c4839208f30d9f09caa9f720ec7582917b264defc875/pyyaml-6.0.3-cp311-cp311-win32.whl", hash = "sha256:8098f252adfa6c80ab48096053f512f2321f0b998f98150cea9bd23d83e1467b", size = 142543, upload-time = "2025-09-25T21:32:08.95Z" }, + { url = "https://files.pythonhosted.org/packages/da/e3/ea007450a105ae919a72393cb06f122f288ef60bba2dc64b26e2646fa315/pyyaml-6.0.3-cp311-cp311-win_amd64.whl", hash = "sha256:9f3bfb4965eb874431221a3ff3fdcddc7e74e3b07799e0e84ca4a0f867d449bf", size = 158763, upload-time = "2025-09-25T21:32:09.96Z" }, + { url = "https://files.pythonhosted.org/packages/d1/33/422b98d2195232ca1826284a76852ad5a86fe23e31b009c9886b2d0fb8b2/pyyaml-6.0.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:7f047e29dcae44602496db43be01ad42fc6f1cc0d8cd6c83d342306c32270196", size = 182063, upload-time = "2025-09-25T21:32:11.445Z" }, + { url = "https://files.pythonhosted.org/packages/89/a0/6cf41a19a1f2f3feab0e9c0b74134aa2ce6849093d5517a0c550fe37a648/pyyaml-6.0.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:fc09d0aa354569bc501d4e787133afc08552722d3ab34836a80547331bb5d4a0", size = 173973, upload-time = "2025-09-25T21:32:12.492Z" }, + { url = "https://files.pythonhosted.org/packages/ed/23/7a778b6bd0b9a8039df8b1b1d80e2e2ad78aa04171592c8a5c43a56a6af4/pyyaml-6.0.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:9149cad251584d5fb4981be1ecde53a1ca46c891a79788c0df828d2f166bda28", size = 775116, upload-time = "2025-09-25T21:32:13.652Z" }, + { url = "https://files.pythonhosted.org/packages/65/30/d7353c338e12baef4ecc1b09e877c1970bd3382789c159b4f89d6a70dc09/pyyaml-6.0.3-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:5fdec68f91a0c6739b380c83b951e2c72ac0197ace422360e6d5a959d8d97b2c", size = 844011, upload-time = "2025-09-25T21:32:15.21Z" }, + { url = "https://files.pythonhosted.org/packages/8b/9d/b3589d3877982d4f2329302ef98a8026e7f4443c765c46cfecc8858c6b4b/pyyaml-6.0.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ba1cc08a7ccde2d2ec775841541641e4548226580ab850948cbfda66a1befcdc", size = 807870, upload-time = "2025-09-25T21:32:16.431Z" }, + { url = "https://files.pythonhosted.org/packages/05/c0/b3be26a015601b822b97d9149ff8cb5ead58c66f981e04fedf4e762f4bd4/pyyaml-6.0.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:8dc52c23056b9ddd46818a57b78404882310fb473d63f17b07d5c40421e47f8e", size = 761089, upload-time = "2025-09-25T21:32:17.56Z" }, + { url = "https://files.pythonhosted.org/packages/be/8e/98435a21d1d4b46590d5459a22d88128103f8da4c2d4cb8f14f2a96504e1/pyyaml-6.0.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:41715c910c881bc081f1e8872880d3c650acf13dfa8214bad49ed4cede7c34ea", size = 790181, upload-time = "2025-09-25T21:32:18.834Z" }, + { url = "https://files.pythonhosted.org/packages/74/93/7baea19427dcfbe1e5a372d81473250b379f04b1bd3c4c5ff825e2327202/pyyaml-6.0.3-cp312-cp312-win32.whl", hash = "sha256:96b533f0e99f6579b3d4d4995707cf36df9100d67e0c8303a0c55b27b5f99bc5", size = 137658, upload-time = "2025-09-25T21:32:20.209Z" }, + { url = "https://files.pythonhosted.org/packages/86/bf/899e81e4cce32febab4fb42bb97dcdf66bc135272882d1987881a4b519e9/pyyaml-6.0.3-cp312-cp312-win_amd64.whl", hash = "sha256:5fcd34e47f6e0b794d17de1b4ff496c00986e1c83f7ab2fb8fcfe9616ff7477b", size = 154003, upload-time = "2025-09-25T21:32:21.167Z" }, + { url = "https://files.pythonhosted.org/packages/1a/08/67bd04656199bbb51dbed1439b7f27601dfb576fb864099c7ef0c3e55531/pyyaml-6.0.3-cp312-cp312-win_arm64.whl", hash = "sha256:64386e5e707d03a7e172c0701abfb7e10f0fb753ee1d773128192742712a98fd", size = 140344, upload-time = "2025-09-25T21:32:22.617Z" }, + { url = "https://files.pythonhosted.org/packages/d1/11/0fd08f8192109f7169db964b5707a2f1e8b745d4e239b784a5a1dd80d1db/pyyaml-6.0.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:8da9669d359f02c0b91ccc01cac4a67f16afec0dac22c2ad09f46bee0697eba8", size = 181669, upload-time = "2025-09-25T21:32:23.673Z" }, + { url = "https://files.pythonhosted.org/packages/b1/16/95309993f1d3748cd644e02e38b75d50cbc0d9561d21f390a76242ce073f/pyyaml-6.0.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:2283a07e2c21a2aa78d9c4442724ec1eb15f5e42a723b99cb3d822d48f5f7ad1", size = 173252, upload-time = "2025-09-25T21:32:25.149Z" }, + { url = "https://files.pythonhosted.org/packages/50/31/b20f376d3f810b9b2371e72ef5adb33879b25edb7a6d072cb7ca0c486398/pyyaml-6.0.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ee2922902c45ae8ccada2c5b501ab86c36525b883eff4255313a253a3160861c", size = 767081, upload-time = "2025-09-25T21:32:26.575Z" }, + { url = "https://files.pythonhosted.org/packages/49/1e/a55ca81e949270d5d4432fbbd19dfea5321eda7c41a849d443dc92fd1ff7/pyyaml-6.0.3-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:a33284e20b78bd4a18c8c2282d549d10bc8408a2a7ff57653c0cf0b9be0afce5", size = 841159, upload-time = "2025-09-25T21:32:27.727Z" }, + { url = "https://files.pythonhosted.org/packages/74/27/e5b8f34d02d9995b80abcef563ea1f8b56d20134d8f4e5e81733b1feceb2/pyyaml-6.0.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:0f29edc409a6392443abf94b9cf89ce99889a1dd5376d94316ae5145dfedd5d6", size = 801626, upload-time = "2025-09-25T21:32:28.878Z" }, + { url = "https://files.pythonhosted.org/packages/f9/11/ba845c23988798f40e52ba45f34849aa8a1f2d4af4b798588010792ebad6/pyyaml-6.0.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:f7057c9a337546edc7973c0d3ba84ddcdf0daa14533c2065749c9075001090e6", size = 753613, upload-time = "2025-09-25T21:32:30.178Z" }, + { url = "https://files.pythonhosted.org/packages/3d/e0/7966e1a7bfc0a45bf0a7fb6b98ea03fc9b8d84fa7f2229e9659680b69ee3/pyyaml-6.0.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:eda16858a3cab07b80edaf74336ece1f986ba330fdb8ee0d6c0d68fe82bc96be", size = 794115, upload-time = "2025-09-25T21:32:31.353Z" }, + { url = "https://files.pythonhosted.org/packages/de/94/980b50a6531b3019e45ddeada0626d45fa85cbe22300844a7983285bed3b/pyyaml-6.0.3-cp313-cp313-win32.whl", hash = "sha256:d0eae10f8159e8fdad514efdc92d74fd8d682c933a6dd088030f3834bc8e6b26", size = 137427, upload-time = "2025-09-25T21:32:32.58Z" }, + { url = "https://files.pythonhosted.org/packages/97/c9/39d5b874e8b28845e4ec2202b5da735d0199dbe5b8fb85f91398814a9a46/pyyaml-6.0.3-cp313-cp313-win_amd64.whl", hash = "sha256:79005a0d97d5ddabfeeea4cf676af11e647e41d81c9a7722a193022accdb6b7c", size = 154090, upload-time = "2025-09-25T21:32:33.659Z" }, + { url = "https://files.pythonhosted.org/packages/73/e8/2bdf3ca2090f68bb3d75b44da7bbc71843b19c9f2b9cb9b0f4ab7a5a4329/pyyaml-6.0.3-cp313-cp313-win_arm64.whl", hash = "sha256:5498cd1645aa724a7c71c8f378eb29ebe23da2fc0d7a08071d89469bf1d2defb", size = 140246, upload-time = "2025-09-25T21:32:34.663Z" }, + { url = "https://files.pythonhosted.org/packages/9d/8c/f4bd7f6465179953d3ac9bc44ac1a8a3e6122cf8ada906b4f96c60172d43/pyyaml-6.0.3-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:8d1fab6bb153a416f9aeb4b8763bc0f22a5586065f86f7664fc23339fc1c1fac", size = 181814, upload-time = "2025-09-25T21:32:35.712Z" }, + { url = "https://files.pythonhosted.org/packages/bd/9c/4d95bb87eb2063d20db7b60faa3840c1b18025517ae857371c4dd55a6b3a/pyyaml-6.0.3-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:34d5fcd24b8445fadc33f9cf348c1047101756fd760b4dacb5c3e99755703310", size = 173809, upload-time = "2025-09-25T21:32:36.789Z" }, + { url = "https://files.pythonhosted.org/packages/92/b5/47e807c2623074914e29dabd16cbbdd4bf5e9b2db9f8090fa64411fc5382/pyyaml-6.0.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:501a031947e3a9025ed4405a168e6ef5ae3126c59f90ce0cd6f2bfc477be31b7", size = 766454, upload-time = "2025-09-25T21:32:37.966Z" }, + { url = "https://files.pythonhosted.org/packages/02/9e/e5e9b168be58564121efb3de6859c452fccde0ab093d8438905899a3a483/pyyaml-6.0.3-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:b3bc83488de33889877a0f2543ade9f70c67d66d9ebb4ac959502e12de895788", size = 836355, upload-time = "2025-09-25T21:32:39.178Z" }, + { url = "https://files.pythonhosted.org/packages/88/f9/16491d7ed2a919954993e48aa941b200f38040928474c9e85ea9e64222c3/pyyaml-6.0.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:c458b6d084f9b935061bc36216e8a69a7e293a2f1e68bf956dcd9e6cbcd143f5", size = 794175, upload-time = "2025-09-25T21:32:40.865Z" }, + { url = "https://files.pythonhosted.org/packages/dd/3f/5989debef34dc6397317802b527dbbafb2b4760878a53d4166579111411e/pyyaml-6.0.3-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:7c6610def4f163542a622a73fb39f534f8c101d690126992300bf3207eab9764", size = 755228, upload-time = "2025-09-25T21:32:42.084Z" }, + { url = "https://files.pythonhosted.org/packages/d7/ce/af88a49043cd2e265be63d083fc75b27b6ed062f5f9fd6cdc223ad62f03e/pyyaml-6.0.3-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:5190d403f121660ce8d1d2c1bb2ef1bd05b5f68533fc5c2ea899bd15f4399b35", size = 789194, upload-time = "2025-09-25T21:32:43.362Z" }, + { url = "https://files.pythonhosted.org/packages/23/20/bb6982b26a40bb43951265ba29d4c246ef0ff59c9fdcdf0ed04e0687de4d/pyyaml-6.0.3-cp314-cp314-win_amd64.whl", hash = "sha256:4a2e8cebe2ff6ab7d1050ecd59c25d4c8bd7e6f400f5f82b96557ac0abafd0ac", size = 156429, upload-time = "2025-09-25T21:32:57.844Z" }, + { url = "https://files.pythonhosted.org/packages/f4/f4/a4541072bb9422c8a883ab55255f918fa378ecf083f5b85e87fc2b4eda1b/pyyaml-6.0.3-cp314-cp314-win_arm64.whl", hash = "sha256:93dda82c9c22deb0a405ea4dc5f2d0cda384168e466364dec6255b293923b2f3", size = 143912, upload-time = "2025-09-25T21:32:59.247Z" }, + { url = "https://files.pythonhosted.org/packages/7c/f9/07dd09ae774e4616edf6cda684ee78f97777bdd15847253637a6f052a62f/pyyaml-6.0.3-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:02893d100e99e03eda1c8fd5c441d8c60103fd175728e23e431db1b589cf5ab3", size = 189108, upload-time = "2025-09-25T21:32:44.377Z" }, + { url = "https://files.pythonhosted.org/packages/4e/78/8d08c9fb7ce09ad8c38ad533c1191cf27f7ae1effe5bb9400a46d9437fcf/pyyaml-6.0.3-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:c1ff362665ae507275af2853520967820d9124984e0f7466736aea23d8611fba", size = 183641, upload-time = "2025-09-25T21:32:45.407Z" }, + { url = "https://files.pythonhosted.org/packages/7b/5b/3babb19104a46945cf816d047db2788bcaf8c94527a805610b0289a01c6b/pyyaml-6.0.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6adc77889b628398debc7b65c073bcb99c4a0237b248cacaf3fe8a557563ef6c", size = 831901, upload-time = "2025-09-25T21:32:48.83Z" }, + { url = "https://files.pythonhosted.org/packages/8b/cc/dff0684d8dc44da4d22a13f35f073d558c268780ce3c6ba1b87055bb0b87/pyyaml-6.0.3-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:a80cb027f6b349846a3bf6d73b5e95e782175e52f22108cfa17876aaeff93702", size = 861132, upload-time = "2025-09-25T21:32:50.149Z" }, + { url = "https://files.pythonhosted.org/packages/b1/5e/f77dc6b9036943e285ba76b49e118d9ea929885becb0a29ba8a7c75e29fe/pyyaml-6.0.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:00c4bdeba853cc34e7dd471f16b4114f4162dc03e6b7afcc2128711f0eca823c", size = 839261, upload-time = "2025-09-25T21:32:51.808Z" }, + { url = "https://files.pythonhosted.org/packages/ce/88/a9db1376aa2a228197c58b37302f284b5617f56a5d959fd1763fb1675ce6/pyyaml-6.0.3-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:66e1674c3ef6f541c35191caae2d429b967b99e02040f5ba928632d9a7f0f065", size = 805272, upload-time = "2025-09-25T21:32:52.941Z" }, + { url = "https://files.pythonhosted.org/packages/da/92/1446574745d74df0c92e6aa4a7b0b3130706a4142b2d1a5869f2eaa423c6/pyyaml-6.0.3-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:16249ee61e95f858e83976573de0f5b2893b3677ba71c9dd36b9cf8be9ac6d65", size = 829923, upload-time = "2025-09-25T21:32:54.537Z" }, + { url = "https://files.pythonhosted.org/packages/f0/7a/1c7270340330e575b92f397352af856a8c06f230aa3e76f86b39d01b416a/pyyaml-6.0.3-cp314-cp314t-win_amd64.whl", hash = "sha256:4ad1906908f2f5ae4e5a8ddfce73c320c2a1429ec52eafd27138b7f1cbe341c9", size = 174062, upload-time = "2025-09-25T21:32:55.767Z" }, + { url = "https://files.pythonhosted.org/packages/f1/12/de94a39c2ef588c7e6455cfbe7343d3b2dc9d6b6b2f40c4c6565744c873d/pyyaml-6.0.3-cp314-cp314t-win_arm64.whl", hash = "sha256:ebc55a14a21cb14062aa4162f906cd962b28e2e9ea38f9b4391244cd8de4ae0b", size = 149341, upload-time = "2025-09-25T21:32:56.828Z" }, ] [[package]] name = "pyzmq" -version = "26.4.0" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "cffi", marker = "implementation_name == 'pypy' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/b1/11/b9213d25230ac18a71b39b3723494e57adebe36e066397b961657b3b41c1/pyzmq-26.4.0.tar.gz", hash = "sha256:4bd13f85f80962f91a651a7356fe0472791a5f7a92f227822b5acf44795c626d", size = 278293, upload-time = "2025-04-04T12:05:44.049Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/38/b8/af1d814ffc3ff9730f9a970cbf216b6f078e5d251a25ef5201d7bc32a37c/pyzmq-26.4.0-cp310-cp310-macosx_10_15_universal2.whl", hash = "sha256:0329bdf83e170ac133f44a233fc651f6ed66ef8e66693b5af7d54f45d1ef5918", size = 1339238, upload-time = "2025-04-04T12:03:07.022Z" }, - { url = "https://files.pythonhosted.org/packages/ee/e4/5aafed4886c264f2ea6064601ad39c5fc4e9b6539c6ebe598a859832eeee/pyzmq-26.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:398a825d2dea96227cf6460ce0a174cf7657d6f6827807d4d1ae9d0f9ae64315", size = 672848, upload-time = "2025-04-04T12:03:08.591Z" }, - { url = "https://files.pythonhosted.org/packages/79/39/026bf49c721cb42f1ef3ae0ee3d348212a7621d2adb739ba97599b6e4d50/pyzmq-26.4.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6d52d62edc96787f5c1dfa6c6ccff9b581cfae5a70d94ec4c8da157656c73b5b", size = 911299, upload-time = "2025-04-04T12:03:10Z" }, - { url = "https://files.pythonhosted.org/packages/03/23/b41f936a9403b8f92325c823c0f264c6102a0687a99c820f1aaeb99c1def/pyzmq-26.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1410c3a3705db68d11eb2424d75894d41cff2f64d948ffe245dd97a9debfebf4", size = 867920, upload-time = "2025-04-04T12:03:11.311Z" }, - { url = "https://files.pythonhosted.org/packages/c1/3e/2de5928cdadc2105e7c8f890cc5f404136b41ce5b6eae5902167f1d5641c/pyzmq-26.4.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:7dacb06a9c83b007cc01e8e5277f94c95c453c5851aac5e83efe93e72226353f", size = 862514, upload-time = "2025-04-04T12:03:13.013Z" }, - { url = "https://files.pythonhosted.org/packages/ce/57/109569514dd32e05a61d4382bc88980c95bfd2f02e58fea47ec0ccd96de1/pyzmq-26.4.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:6bab961c8c9b3a4dc94d26e9b2cdf84de9918931d01d6ff38c721a83ab3c0ef5", size = 1204494, upload-time = "2025-04-04T12:03:14.795Z" }, - { url = "https://files.pythonhosted.org/packages/aa/02/dc51068ff2ca70350d1151833643a598625feac7b632372d229ceb4de3e1/pyzmq-26.4.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:7a5c09413b924d96af2aa8b57e76b9b0058284d60e2fc3730ce0f979031d162a", size = 1514525, upload-time = "2025-04-04T12:03:16.246Z" }, - { url = "https://files.pythonhosted.org/packages/48/2a/a7d81873fff0645eb60afaec2b7c78a85a377af8f1d911aff045d8955bc7/pyzmq-26.4.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:7d489ac234d38e57f458fdbd12a996bfe990ac028feaf6f3c1e81ff766513d3b", size = 1414659, upload-time = "2025-04-04T12:03:17.652Z" }, - { url = "https://files.pythonhosted.org/packages/ef/ea/813af9c42ae21845c1ccfe495bd29c067622a621e85d7cda6bc437de8101/pyzmq-26.4.0-cp310-cp310-win32.whl", hash = "sha256:dea1c8db78fb1b4b7dc9f8e213d0af3fc8ecd2c51a1d5a3ca1cde1bda034a980", size = 580348, upload-time = "2025-04-04T12:03:19.384Z" }, - { url = "https://files.pythonhosted.org/packages/20/68/318666a89a565252c81d3fed7f3b4c54bd80fd55c6095988dfa2cd04a62b/pyzmq-26.4.0-cp310-cp310-win_amd64.whl", hash = "sha256:fa59e1f5a224b5e04dc6c101d7186058efa68288c2d714aa12d27603ae93318b", size = 643838, upload-time = "2025-04-04T12:03:20.795Z" }, - { url = "https://files.pythonhosted.org/packages/91/f8/fb1a15b5f4ecd3e588bfde40c17d32ed84b735195b5c7d1d7ce88301a16f/pyzmq-26.4.0-cp310-cp310-win_arm64.whl", hash = "sha256:a651fe2f447672f4a815e22e74630b6b1ec3a1ab670c95e5e5e28dcd4e69bbb5", size = 559565, upload-time = "2025-04-04T12:03:22.676Z" }, - { url = "https://files.pythonhosted.org/packages/32/6d/234e3b0aa82fd0290b1896e9992f56bdddf1f97266110be54d0177a9d2d9/pyzmq-26.4.0-cp311-cp311-macosx_10_15_universal2.whl", hash = "sha256:bfcf82644c9b45ddd7cd2a041f3ff8dce4a0904429b74d73a439e8cab1bd9e54", size = 1339723, upload-time = "2025-04-04T12:03:24.358Z" }, - { url = "https://files.pythonhosted.org/packages/4f/11/6d561efe29ad83f7149a7cd48e498e539ed09019c6cd7ecc73f4cc725028/pyzmq-26.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e9bcae3979b2654d5289d3490742378b2f3ce804b0b5fd42036074e2bf35b030", size = 672645, upload-time = "2025-04-04T12:03:25.693Z" }, - { url = "https://files.pythonhosted.org/packages/19/fd/81bfe3e23f418644660bad1a90f0d22f0b3eebe33dd65a79385530bceb3d/pyzmq-26.4.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ccdff8ac4246b6fb60dcf3982dfaeeff5dd04f36051fe0632748fc0aa0679c01", size = 910133, upload-time = "2025-04-04T12:03:27.625Z" }, - { url = "https://files.pythonhosted.org/packages/97/68/321b9c775595ea3df832a9516252b653fe32818db66fdc8fa31c9b9fce37/pyzmq-26.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4550af385b442dc2d55ab7717837812799d3674cb12f9a3aa897611839c18e9e", size = 867428, upload-time = "2025-04-04T12:03:29.004Z" }, - { url = "https://files.pythonhosted.org/packages/4e/6e/159cbf2055ef36aa2aa297e01b24523176e5b48ead283c23a94179fb2ba2/pyzmq-26.4.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:2f9f7ffe9db1187a253fca95191854b3fda24696f086e8789d1d449308a34b88", size = 862409, upload-time = "2025-04-04T12:03:31.032Z" }, - { url = "https://files.pythonhosted.org/packages/05/1c/45fb8db7be5a7d0cadea1070a9cbded5199a2d578de2208197e592f219bd/pyzmq-26.4.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:3709c9ff7ba61589b7372923fd82b99a81932b592a5c7f1a24147c91da9a68d6", size = 1205007, upload-time = "2025-04-04T12:03:32.687Z" }, - { url = "https://files.pythonhosted.org/packages/f8/fa/658c7f583af6498b463f2fa600f34e298e1b330886f82f1feba0dc2dd6c3/pyzmq-26.4.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:f8f3c30fb2d26ae5ce36b59768ba60fb72507ea9efc72f8f69fa088450cff1df", size = 1514599, upload-time = "2025-04-04T12:03:34.084Z" }, - { url = "https://files.pythonhosted.org/packages/4d/d7/44d641522353ce0a2bbd150379cb5ec32f7120944e6bfba4846586945658/pyzmq-26.4.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:382a4a48c8080e273427fc692037e3f7d2851959ffe40864f2db32646eeb3cef", size = 1414546, upload-time = "2025-04-04T12:03:35.478Z" }, - { url = "https://files.pythonhosted.org/packages/72/76/c8ed7263218b3d1e9bce07b9058502024188bd52cc0b0a267a9513b431fc/pyzmq-26.4.0-cp311-cp311-win32.whl", hash = "sha256:d56aad0517d4c09e3b4f15adebba8f6372c5102c27742a5bdbfc74a7dceb8fca", size = 579247, upload-time = "2025-04-04T12:03:36.846Z" }, - { url = "https://files.pythonhosted.org/packages/c3/d0/2d9abfa2571a0b1a67c0ada79a8aa1ba1cce57992d80f771abcdf99bb32c/pyzmq-26.4.0-cp311-cp311-win_amd64.whl", hash = "sha256:963977ac8baed7058c1e126014f3fe58b3773f45c78cce7af5c26c09b6823896", size = 644727, upload-time = "2025-04-04T12:03:38.578Z" }, - { url = "https://files.pythonhosted.org/packages/0d/d1/c8ad82393be6ccedfc3c9f3adb07f8f3976e3c4802640fe3f71441941e70/pyzmq-26.4.0-cp311-cp311-win_arm64.whl", hash = "sha256:c0c8e8cadc81e44cc5088fcd53b9b3b4ce9344815f6c4a03aec653509296fae3", size = 559942, upload-time = "2025-04-04T12:03:40.143Z" }, - { url = "https://files.pythonhosted.org/packages/10/44/a778555ebfdf6c7fc00816aad12d185d10a74d975800341b1bc36bad1187/pyzmq-26.4.0-cp312-cp312-macosx_10_15_universal2.whl", hash = "sha256:5227cb8da4b6f68acfd48d20c588197fd67745c278827d5238c707daf579227b", size = 1341586, upload-time = "2025-04-04T12:03:41.954Z" }, - { url = "https://files.pythonhosted.org/packages/9c/4f/f3a58dc69ac757e5103be3bd41fb78721a5e17da7cc617ddb56d973a365c/pyzmq-26.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e1c07a7fa7f7ba86554a2b1bef198c9fed570c08ee062fd2fd6a4dcacd45f905", size = 665880, upload-time = "2025-04-04T12:03:43.45Z" }, - { url = "https://files.pythonhosted.org/packages/fe/45/50230bcfb3ae5cb98bee683b6edeba1919f2565d7cc1851d3c38e2260795/pyzmq-26.4.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ae775fa83f52f52de73183f7ef5395186f7105d5ed65b1ae65ba27cb1260de2b", size = 902216, upload-time = "2025-04-04T12:03:45.572Z" }, - { url = "https://files.pythonhosted.org/packages/41/59/56bbdc5689be5e13727491ad2ba5efd7cd564365750514f9bc8f212eef82/pyzmq-26.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:66c760d0226ebd52f1e6b644a9e839b5db1e107a23f2fcd46ec0569a4fdd4e63", size = 859814, upload-time = "2025-04-04T12:03:47.188Z" }, - { url = "https://files.pythonhosted.org/packages/81/b1/57db58cfc8af592ce94f40649bd1804369c05b2190e4cbc0a2dad572baeb/pyzmq-26.4.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:ef8c6ecc1d520debc147173eaa3765d53f06cd8dbe7bd377064cdbc53ab456f5", size = 855889, upload-time = "2025-04-04T12:03:49.223Z" }, - { url = "https://files.pythonhosted.org/packages/e8/92/47542e629cbac8f221c230a6d0f38dd3d9cff9f6f589ed45fdf572ffd726/pyzmq-26.4.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:3150ef4084e163dec29ae667b10d96aad309b668fac6810c9e8c27cf543d6e0b", size = 1197153, upload-time = "2025-04-04T12:03:50.591Z" }, - { url = "https://files.pythonhosted.org/packages/07/e5/b10a979d1d565d54410afc87499b16c96b4a181af46e7645ab4831b1088c/pyzmq-26.4.0-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:4448c9e55bf8329fa1dcedd32f661bf611214fa70c8e02fee4347bc589d39a84", size = 1507352, upload-time = "2025-04-04T12:03:52.473Z" }, - { url = "https://files.pythonhosted.org/packages/ab/58/5a23db84507ab9c01c04b1232a7a763be66e992aa2e66498521bbbc72a71/pyzmq-26.4.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:e07dde3647afb084d985310d067a3efa6efad0621ee10826f2cb2f9a31b89d2f", size = 1406834, upload-time = "2025-04-04T12:03:54Z" }, - { url = "https://files.pythonhosted.org/packages/22/74/aaa837b331580c13b79ac39396601fb361454ee184ca85e8861914769b99/pyzmq-26.4.0-cp312-cp312-win32.whl", hash = "sha256:ba034a32ecf9af72adfa5ee383ad0fd4f4e38cdb62b13624278ef768fe5b5b44", size = 577992, upload-time = "2025-04-04T12:03:55.815Z" }, - { url = "https://files.pythonhosted.org/packages/30/0f/55f8c02c182856743b82dde46b2dc3e314edda7f1098c12a8227eeda0833/pyzmq-26.4.0-cp312-cp312-win_amd64.whl", hash = "sha256:056a97aab4064f526ecb32f4343917a4022a5d9efb6b9df990ff72e1879e40be", size = 640466, upload-time = "2025-04-04T12:03:57.231Z" }, - { url = "https://files.pythonhosted.org/packages/e4/29/073779afc3ef6f830b8de95026ef20b2d1ec22d0324d767748d806e57379/pyzmq-26.4.0-cp312-cp312-win_arm64.whl", hash = "sha256:2f23c750e485ce1eb639dbd576d27d168595908aa2d60b149e2d9e34c9df40e0", size = 556342, upload-time = "2025-04-04T12:03:59.218Z" }, - { url = "https://files.pythonhosted.org/packages/d7/20/fb2c92542488db70f833b92893769a569458311a76474bda89dc4264bd18/pyzmq-26.4.0-cp313-cp313-macosx_10_15_universal2.whl", hash = "sha256:c43fac689880f5174d6fc864857d1247fe5cfa22b09ed058a344ca92bf5301e3", size = 1339484, upload-time = "2025-04-04T12:04:00.671Z" }, - { url = "https://files.pythonhosted.org/packages/58/29/2f06b9cabda3a6ea2c10f43e67ded3e47fc25c54822e2506dfb8325155d4/pyzmq-26.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:902aca7eba477657c5fb81c808318460328758e8367ecdd1964b6330c73cae43", size = 666106, upload-time = "2025-04-04T12:04:02.366Z" }, - { url = "https://files.pythonhosted.org/packages/77/e4/dcf62bd29e5e190bd21bfccaa4f3386e01bf40d948c239239c2f1e726729/pyzmq-26.4.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e5e48a830bfd152fe17fbdeaf99ac5271aa4122521bf0d275b6b24e52ef35eb6", size = 902056, upload-time = "2025-04-04T12:04:03.919Z" }, - { url = "https://files.pythonhosted.org/packages/1a/cf/b36b3d7aea236087d20189bec1a87eeb2b66009731d7055e5c65f845cdba/pyzmq-26.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:31be2b6de98c824c06f5574331f805707c667dc8f60cb18580b7de078479891e", size = 860148, upload-time = "2025-04-04T12:04:05.581Z" }, - { url = "https://files.pythonhosted.org/packages/18/a6/f048826bc87528c208e90604c3bf573801e54bd91e390cbd2dfa860e82dc/pyzmq-26.4.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:6332452034be001bbf3206ac59c0d2a7713de5f25bb38b06519fc6967b7cf771", size = 855983, upload-time = "2025-04-04T12:04:07.096Z" }, - { url = "https://files.pythonhosted.org/packages/0a/27/454d34ab6a1d9772a36add22f17f6b85baf7c16e14325fa29e7202ca8ee8/pyzmq-26.4.0-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:da8c0f5dd352136853e6a09b1b986ee5278dfddfebd30515e16eae425c872b30", size = 1197274, upload-time = "2025-04-04T12:04:08.523Z" }, - { url = "https://files.pythonhosted.org/packages/f4/3d/7abfeab6b83ad38aa34cbd57c6fc29752c391e3954fd12848bd8d2ec0df6/pyzmq-26.4.0-cp313-cp313-musllinux_1_1_i686.whl", hash = "sha256:f4ccc1a0a2c9806dda2a2dd118a3b7b681e448f3bb354056cad44a65169f6d86", size = 1507120, upload-time = "2025-04-04T12:04:10.58Z" }, - { url = "https://files.pythonhosted.org/packages/13/ff/bc8d21dbb9bc8705126e875438a1969c4f77e03fc8565d6901c7933a3d01/pyzmq-26.4.0-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:1c0b5fceadbab461578daf8d1dcc918ebe7ddd2952f748cf30c7cf2de5d51101", size = 1406738, upload-time = "2025-04-04T12:04:12.509Z" }, - { url = "https://files.pythonhosted.org/packages/f5/5d/d4cd85b24de71d84d81229e3bbb13392b2698432cf8fdcea5afda253d587/pyzmq-26.4.0-cp313-cp313-win32.whl", hash = "sha256:28e2b0ff5ba4b3dd11062d905682bad33385cfa3cc03e81abd7f0822263e6637", size = 577826, upload-time = "2025-04-04T12:04:14.289Z" }, - { url = "https://files.pythonhosted.org/packages/c6/6c/f289c1789d7bb6e5a3b3bef7b2a55089b8561d17132be7d960d3ff33b14e/pyzmq-26.4.0-cp313-cp313-win_amd64.whl", hash = "sha256:23ecc9d241004c10e8b4f49d12ac064cd7000e1643343944a10df98e57bc544b", size = 640406, upload-time = "2025-04-04T12:04:15.757Z" }, - { url = "https://files.pythonhosted.org/packages/b3/99/676b8851cb955eb5236a0c1e9ec679ea5ede092bf8bf2c8a68d7e965cac3/pyzmq-26.4.0-cp313-cp313-win_arm64.whl", hash = "sha256:1edb0385c7f025045d6e0f759d4d3afe43c17a3d898914ec6582e6f464203c08", size = 556216, upload-time = "2025-04-04T12:04:17.212Z" }, - { url = "https://files.pythonhosted.org/packages/65/c2/1fac340de9d7df71efc59d9c50fc7a635a77b103392d1842898dd023afcb/pyzmq-26.4.0-cp313-cp313t-macosx_10_15_universal2.whl", hash = "sha256:93a29e882b2ba1db86ba5dd5e88e18e0ac6b627026c5cfbec9983422011b82d4", size = 1333769, upload-time = "2025-04-04T12:04:18.665Z" }, - { url = "https://files.pythonhosted.org/packages/5c/c7/6c03637e8d742c3b00bec4f5e4cd9d1c01b2f3694c6f140742e93ca637ed/pyzmq-26.4.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb45684f276f57110bb89e4300c00f1233ca631f08f5f42528a5c408a79efc4a", size = 658826, upload-time = "2025-04-04T12:04:20.405Z" }, - { url = "https://files.pythonhosted.org/packages/a5/97/a8dca65913c0f78e0545af2bb5078aebfc142ca7d91cdaffa1fbc73e5dbd/pyzmq-26.4.0-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f72073e75260cb301aad4258ad6150fa7f57c719b3f498cb91e31df16784d89b", size = 891650, upload-time = "2025-04-04T12:04:22.413Z" }, - { url = "https://files.pythonhosted.org/packages/7d/7e/f63af1031eb060bf02d033732b910fe48548dcfdbe9c785e9f74a6cc6ae4/pyzmq-26.4.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:be37e24b13026cfedd233bcbbccd8c0bcd2fdd186216094d095f60076201538d", size = 849776, upload-time = "2025-04-04T12:04:23.959Z" }, - { url = "https://files.pythonhosted.org/packages/f6/fa/1a009ce582802a895c0d5fe9413f029c940a0a8ee828657a3bb0acffd88b/pyzmq-26.4.0-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:237b283044934d26f1eeff4075f751b05d2f3ed42a257fc44386d00df6a270cf", size = 842516, upload-time = "2025-04-04T12:04:25.449Z" }, - { url = "https://files.pythonhosted.org/packages/6e/bc/f88b0bad0f7a7f500547d71e99f10336f2314e525d4ebf576a1ea4a1d903/pyzmq-26.4.0-cp313-cp313t-musllinux_1_1_aarch64.whl", hash = "sha256:b30f862f6768b17040929a68432c8a8be77780317f45a353cb17e423127d250c", size = 1189183, upload-time = "2025-04-04T12:04:27.035Z" }, - { url = "https://files.pythonhosted.org/packages/d9/8c/db446a3dd9cf894406dec2e61eeffaa3c07c3abb783deaebb9812c4af6a5/pyzmq-26.4.0-cp313-cp313t-musllinux_1_1_i686.whl", hash = "sha256:c80fcd3504232f13617c6ab501124d373e4895424e65de8b72042333316f64a8", size = 1495501, upload-time = "2025-04-04T12:04:28.833Z" }, - { url = "https://files.pythonhosted.org/packages/05/4c/bf3cad0d64c3214ac881299c4562b815f05d503bccc513e3fd4fdc6f67e4/pyzmq-26.4.0-cp313-cp313t-musllinux_1_1_x86_64.whl", hash = "sha256:26a2a7451606b87f67cdeca2c2789d86f605da08b4bd616b1a9981605ca3a364", size = 1395540, upload-time = "2025-04-04T12:04:30.562Z" }, - { url = "https://files.pythonhosted.org/packages/47/03/96004704a84095f493be8d2b476641f5c967b269390173f85488a53c1c13/pyzmq-26.4.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:98d948288ce893a2edc5ec3c438fe8de2daa5bbbd6e2e865ec5f966e237084ba", size = 834408, upload-time = "2025-04-04T12:05:04.569Z" }, - { url = "https://files.pythonhosted.org/packages/e4/7f/68d8f3034a20505db7551cb2260248be28ca66d537a1ac9a257913d778e4/pyzmq-26.4.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a9f34f5c9e0203ece706a1003f1492a56c06c0632d86cb77bcfe77b56aacf27b", size = 569580, upload-time = "2025-04-04T12:05:06.283Z" }, - { url = "https://files.pythonhosted.org/packages/9b/a6/2b0d6801ec33f2b2a19dd8d02e0a1e8701000fec72926e6787363567d30c/pyzmq-26.4.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:80c9b48aef586ff8b698359ce22f9508937c799cc1d2c9c2f7c95996f2300c94", size = 798250, upload-time = "2025-04-04T12:05:07.88Z" }, - { url = "https://files.pythonhosted.org/packages/96/2a/0322b3437de977dcac8a755d6d7ce6ec5238de78e2e2d9353730b297cf12/pyzmq-26.4.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f3f2a5b74009fd50b53b26f65daff23e9853e79aa86e0aa08a53a7628d92d44a", size = 756758, upload-time = "2025-04-04T12:05:09.483Z" }, - { url = "https://files.pythonhosted.org/packages/c2/33/43704f066369416d65549ccee366cc19153911bec0154da7c6b41fca7e78/pyzmq-26.4.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:61c5f93d7622d84cb3092d7f6398ffc77654c346545313a3737e266fc11a3beb", size = 555371, upload-time = "2025-04-04T12:05:11.062Z" }, - { url = "https://files.pythonhosted.org/packages/04/52/a70fcd5592715702248306d8e1729c10742c2eac44529984413b05c68658/pyzmq-26.4.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:4478b14cb54a805088299c25a79f27eaf530564a7a4f72bf432a040042b554eb", size = 834405, upload-time = "2025-04-04T12:05:13.3Z" }, - { url = "https://files.pythonhosted.org/packages/25/f9/1a03f1accff16b3af1a6fa22cbf7ced074776abbf688b2e9cb4629700c62/pyzmq-26.4.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8a28ac29c60e4ba84b5f58605ace8ad495414a724fe7aceb7cf06cd0598d04e1", size = 569578, upload-time = "2025-04-04T12:05:15.36Z" }, - { url = "https://files.pythonhosted.org/packages/76/0c/3a633acd762aa6655fcb71fa841907eae0ab1e8582ff494b137266de341d/pyzmq-26.4.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:43b03c1ceea27c6520124f4fb2ba9c647409b9abdf9a62388117148a90419494", size = 798248, upload-time = "2025-04-04T12:05:17.376Z" }, - { url = "https://files.pythonhosted.org/packages/cd/cc/6c99c84aa60ac1cc56747bed6be8ce6305b9b861d7475772e7a25ce019d3/pyzmq-26.4.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7731abd23a782851426d4e37deb2057bf9410848a4459b5ede4fe89342e687a9", size = 756757, upload-time = "2025-04-04T12:05:19.19Z" }, - { url = "https://files.pythonhosted.org/packages/13/9c/d8073bd898eb896e94c679abe82e47506e2b750eb261cf6010ced869797c/pyzmq-26.4.0-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:a222ad02fbe80166b0526c038776e8042cd4e5f0dec1489a006a1df47e9040e0", size = 555371, upload-time = "2025-04-04T12:05:20.702Z" }, +version = "27.1.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cffi", marker = "implementation_name == 'pypy' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/04/0b/3c9baedbdf613ecaa7aa07027780b8867f57b6293b6ee50de316c9f3222b/pyzmq-27.1.0.tar.gz", hash = "sha256:ac0765e3d44455adb6ddbf4417dcce460fc40a05978c08efdf2948072f6db540", size = 281750, upload-time = "2025-09-08T23:10:18.157Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/06/5d/305323ba86b284e6fcb0d842d6adaa2999035f70f8c38a9b6d21ad28c3d4/pyzmq-27.1.0-cp311-cp311-macosx_10_15_universal2.whl", hash = "sha256:226b091818d461a3bef763805e75685e478ac17e9008f49fce2d3e52b3d58b86", size = 1333328, upload-time = "2025-09-08T23:07:45.946Z" }, + { url = "https://files.pythonhosted.org/packages/bd/a0/fc7e78a23748ad5443ac3275943457e8452da67fda347e05260261108cbc/pyzmq-27.1.0-cp311-cp311-manylinux2014_i686.manylinux_2_17_i686.whl", hash = "sha256:0790a0161c281ca9723f804871b4027f2e8b5a528d357c8952d08cd1a9c15581", size = 908803, upload-time = "2025-09-08T23:07:47.551Z" }, + { url = "https://files.pythonhosted.org/packages/7e/22/37d15eb05f3bdfa4abea6f6d96eb3bb58585fbd3e4e0ded4e743bc650c97/pyzmq-27.1.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c895a6f35476b0c3a54e3eb6ccf41bf3018de937016e6e18748317f25d4e925f", size = 668836, upload-time = "2025-09-08T23:07:49.436Z" }, + { url = "https://files.pythonhosted.org/packages/b1/c4/2a6fe5111a01005fc7af3878259ce17684fabb8852815eda6225620f3c59/pyzmq-27.1.0-cp311-cp311-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:5bbf8d3630bf96550b3be8e1fc0fea5cbdc8d5466c1192887bd94869da17a63e", size = 857038, upload-time = "2025-09-08T23:07:51.234Z" }, + { url = "https://files.pythonhosted.org/packages/cb/eb/bfdcb41d0db9cd233d6fb22dc131583774135505ada800ebf14dfb0a7c40/pyzmq-27.1.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:15c8bd0fe0dabf808e2d7a681398c4e5ded70a551ab47482067a572c054c8e2e", size = 1657531, upload-time = "2025-09-08T23:07:52.795Z" }, + { url = "https://files.pythonhosted.org/packages/ab/21/e3180ca269ed4a0de5c34417dfe71a8ae80421198be83ee619a8a485b0c7/pyzmq-27.1.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:bafcb3dd171b4ae9f19ee6380dfc71ce0390fefaf26b504c0e5f628d7c8c54f2", size = 2034786, upload-time = "2025-09-08T23:07:55.047Z" }, + { url = "https://files.pythonhosted.org/packages/3b/b1/5e21d0b517434b7f33588ff76c177c5a167858cc38ef740608898cd329f2/pyzmq-27.1.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:e829529fcaa09937189178115c49c504e69289abd39967cd8a4c215761373394", size = 1894220, upload-time = "2025-09-08T23:07:57.172Z" }, + { url = "https://files.pythonhosted.org/packages/03/f2/44913a6ff6941905efc24a1acf3d3cb6146b636c546c7406c38c49c403d4/pyzmq-27.1.0-cp311-cp311-win32.whl", hash = "sha256:6df079c47d5902af6db298ec92151db82ecb557af663098b92f2508c398bb54f", size = 567155, upload-time = "2025-09-08T23:07:59.05Z" }, + { url = "https://files.pythonhosted.org/packages/23/6d/d8d92a0eb270a925c9b4dd039c0b4dc10abc2fcbc48331788824ef113935/pyzmq-27.1.0-cp311-cp311-win_amd64.whl", hash = "sha256:190cbf120fbc0fc4957b56866830def56628934a9d112aec0e2507aa6a032b97", size = 633428, upload-time = "2025-09-08T23:08:00.663Z" }, + { url = "https://files.pythonhosted.org/packages/ae/14/01afebc96c5abbbd713ecfc7469cfb1bc801c819a74ed5c9fad9a48801cb/pyzmq-27.1.0-cp311-cp311-win_arm64.whl", hash = "sha256:eca6b47df11a132d1745eb3b5b5e557a7dae2c303277aa0e69c6ba91b8736e07", size = 559497, upload-time = "2025-09-08T23:08:02.15Z" }, + { url = "https://files.pythonhosted.org/packages/92/e7/038aab64a946d535901103da16b953c8c9cc9c961dadcbf3609ed6428d23/pyzmq-27.1.0-cp312-abi3-macosx_10_15_universal2.whl", hash = "sha256:452631b640340c928fa343801b0d07eb0c3789a5ffa843f6e1a9cee0ba4eb4fc", size = 1306279, upload-time = "2025-09-08T23:08:03.807Z" }, + { url = "https://files.pythonhosted.org/packages/e8/5e/c3c49fdd0f535ef45eefcc16934648e9e59dace4a37ee88fc53f6cd8e641/pyzmq-27.1.0-cp312-abi3-manylinux2014_i686.manylinux_2_17_i686.whl", hash = "sha256:1c179799b118e554b66da67d88ed66cd37a169f1f23b5d9f0a231b4e8d44a113", size = 895645, upload-time = "2025-09-08T23:08:05.301Z" }, + { url = "https://files.pythonhosted.org/packages/f8/e5/b0b2504cb4e903a74dcf1ebae157f9e20ebb6ea76095f6cfffea28c42ecd/pyzmq-27.1.0-cp312-abi3-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:3837439b7f99e60312f0c926a6ad437b067356dc2bc2ec96eb395fd0fe804233", size = 652574, upload-time = "2025-09-08T23:08:06.828Z" }, + { url = "https://files.pythonhosted.org/packages/f8/9b/c108cdb55560eaf253f0cbdb61b29971e9fb34d9c3499b0e96e4e60ed8a5/pyzmq-27.1.0-cp312-abi3-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:43ad9a73e3da1fab5b0e7e13402f0b2fb934ae1c876c51d0afff0e7c052eca31", size = 840995, upload-time = "2025-09-08T23:08:08.396Z" }, + { url = "https://files.pythonhosted.org/packages/c2/bb/b79798ca177b9eb0825b4c9998c6af8cd2a7f15a6a1a4272c1d1a21d382f/pyzmq-27.1.0-cp312-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:0de3028d69d4cdc475bfe47a6128eb38d8bc0e8f4d69646adfbcd840facbac28", size = 1642070, upload-time = "2025-09-08T23:08:09.989Z" }, + { url = "https://files.pythonhosted.org/packages/9c/80/2df2e7977c4ede24c79ae39dcef3899bfc5f34d1ca7a5b24f182c9b7a9ca/pyzmq-27.1.0-cp312-abi3-musllinux_1_2_i686.whl", hash = "sha256:cf44a7763aea9298c0aa7dbf859f87ed7012de8bda0f3977b6fb1d96745df856", size = 2021121, upload-time = "2025-09-08T23:08:11.907Z" }, + { url = "https://files.pythonhosted.org/packages/46/bd/2d45ad24f5f5ae7e8d01525eb76786fa7557136555cac7d929880519e33a/pyzmq-27.1.0-cp312-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:f30f395a9e6fbca195400ce833c731e7b64c3919aa481af4d88c3759e0cb7496", size = 1878550, upload-time = "2025-09-08T23:08:13.513Z" }, + { url = "https://files.pythonhosted.org/packages/e6/2f/104c0a3c778d7c2ab8190e9db4f62f0b6957b53c9d87db77c284b69f33ea/pyzmq-27.1.0-cp312-abi3-win32.whl", hash = "sha256:250e5436a4ba13885494412b3da5d518cd0d3a278a1ae640e113c073a5f88edd", size = 559184, upload-time = "2025-09-08T23:08:15.163Z" }, + { url = "https://files.pythonhosted.org/packages/fc/7f/a21b20d577e4100c6a41795842028235998a643b1ad406a6d4163ea8f53e/pyzmq-27.1.0-cp312-abi3-win_amd64.whl", hash = "sha256:9ce490cf1d2ca2ad84733aa1d69ce6855372cb5ce9223802450c9b2a7cba0ccf", size = 619480, upload-time = "2025-09-08T23:08:17.192Z" }, + { url = "https://files.pythonhosted.org/packages/78/c2/c012beae5f76b72f007a9e91ee9401cb88c51d0f83c6257a03e785c81cc2/pyzmq-27.1.0-cp312-abi3-win_arm64.whl", hash = "sha256:75a2f36223f0d535a0c919e23615fc85a1e23b71f40c7eb43d7b1dedb4d8f15f", size = 552993, upload-time = "2025-09-08T23:08:18.926Z" }, + { url = "https://files.pythonhosted.org/packages/60/cb/84a13459c51da6cec1b7b1dc1a47e6db6da50b77ad7fd9c145842750a011/pyzmq-27.1.0-cp313-cp313-android_24_arm64_v8a.whl", hash = "sha256:93ad4b0855a664229559e45c8d23797ceac03183c7b6f5b4428152a6b06684a5", size = 1122436, upload-time = "2025-09-08T23:08:20.801Z" }, + { url = "https://files.pythonhosted.org/packages/dc/b6/94414759a69a26c3dd674570a81813c46a078767d931a6c70ad29fc585cb/pyzmq-27.1.0-cp313-cp313-android_24_x86_64.whl", hash = "sha256:fbb4f2400bfda24f12f009cba62ad5734148569ff4949b1b6ec3b519444342e6", size = 1156301, upload-time = "2025-09-08T23:08:22.47Z" }, + { url = "https://files.pythonhosted.org/packages/a5/ad/15906493fd40c316377fd8a8f6b1f93104f97a752667763c9b9c1b71d42d/pyzmq-27.1.0-cp313-cp313t-macosx_10_15_universal2.whl", hash = "sha256:e343d067f7b151cfe4eb3bb796a7752c9d369eed007b91231e817071d2c2fec7", size = 1341197, upload-time = "2025-09-08T23:08:24.286Z" }, + { url = "https://files.pythonhosted.org/packages/14/1d/d343f3ce13db53a54cb8946594e567410b2125394dafcc0268d8dda027e0/pyzmq-27.1.0-cp313-cp313t-manylinux2014_i686.manylinux_2_17_i686.whl", hash = "sha256:08363b2011dec81c354d694bdecaef4770e0ae96b9afea70b3f47b973655cc05", size = 897275, upload-time = "2025-09-08T23:08:26.063Z" }, + { url = "https://files.pythonhosted.org/packages/69/2d/d83dd6d7ca929a2fc67d2c3005415cdf322af7751d773524809f9e585129/pyzmq-27.1.0-cp313-cp313t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d54530c8c8b5b8ddb3318f481297441af102517602b569146185fa10b63f4fa9", size = 660469, upload-time = "2025-09-08T23:08:27.623Z" }, + { url = "https://files.pythonhosted.org/packages/3e/cd/9822a7af117f4bc0f1952dbe9ef8358eb50a24928efd5edf54210b850259/pyzmq-27.1.0-cp313-cp313t-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:6f3afa12c392f0a44a2414056d730eebc33ec0926aae92b5ad5cf26ebb6cc128", size = 847961, upload-time = "2025-09-08T23:08:29.672Z" }, + { url = "https://files.pythonhosted.org/packages/9a/12/f003e824a19ed73be15542f172fd0ec4ad0b60cf37436652c93b9df7c585/pyzmq-27.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:c65047adafe573ff023b3187bb93faa583151627bc9c51fc4fb2c561ed689d39", size = 1650282, upload-time = "2025-09-08T23:08:31.349Z" }, + { url = "https://files.pythonhosted.org/packages/d5/4a/e82d788ed58e9a23995cee70dbc20c9aded3d13a92d30d57ec2291f1e8a3/pyzmq-27.1.0-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:90e6e9441c946a8b0a667356f7078d96411391a3b8f80980315455574177ec97", size = 2024468, upload-time = "2025-09-08T23:08:33.543Z" }, + { url = "https://files.pythonhosted.org/packages/d9/94/2da0a60841f757481e402b34bf4c8bf57fa54a5466b965de791b1e6f747d/pyzmq-27.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:add071b2d25f84e8189aaf0882d39a285b42fa3853016ebab234a5e78c7a43db", size = 1885394, upload-time = "2025-09-08T23:08:35.51Z" }, + { url = "https://files.pythonhosted.org/packages/4f/6f/55c10e2e49ad52d080dc24e37adb215e5b0d64990b57598abc2e3f01725b/pyzmq-27.1.0-cp313-cp313t-win32.whl", hash = "sha256:7ccc0700cfdf7bd487bea8d850ec38f204478681ea02a582a8da8171b7f90a1c", size = 574964, upload-time = "2025-09-08T23:08:37.178Z" }, + { url = "https://files.pythonhosted.org/packages/87/4d/2534970ba63dd7c522d8ca80fb92777f362c0f321900667c615e2067cb29/pyzmq-27.1.0-cp313-cp313t-win_amd64.whl", hash = "sha256:8085a9fba668216b9b4323be338ee5437a235fe275b9d1610e422ccc279733e2", size = 641029, upload-time = "2025-09-08T23:08:40.595Z" }, + { url = "https://files.pythonhosted.org/packages/f6/fa/f8aea7a28b0641f31d40dea42d7ef003fded31e184ef47db696bc74cd610/pyzmq-27.1.0-cp313-cp313t-win_arm64.whl", hash = "sha256:6bb54ca21bcfe361e445256c15eedf083f153811c37be87e0514934d6913061e", size = 561541, upload-time = "2025-09-08T23:08:42.668Z" }, + { url = "https://files.pythonhosted.org/packages/87/45/19efbb3000956e82d0331bafca5d9ac19ea2857722fa2caacefb6042f39d/pyzmq-27.1.0-cp314-cp314t-macosx_10_15_universal2.whl", hash = "sha256:ce980af330231615756acd5154f29813d553ea555485ae712c491cd483df6b7a", size = 1341197, upload-time = "2025-09-08T23:08:44.973Z" }, + { url = "https://files.pythonhosted.org/packages/48/43/d72ccdbf0d73d1343936296665826350cb1e825f92f2db9db3e61c2162a2/pyzmq-27.1.0-cp314-cp314t-manylinux2014_i686.manylinux_2_17_i686.whl", hash = "sha256:1779be8c549e54a1c38f805e56d2a2e5c009d26de10921d7d51cfd1c8d4632ea", size = 897175, upload-time = "2025-09-08T23:08:46.601Z" }, + { url = "https://files.pythonhosted.org/packages/2f/2e/a483f73a10b65a9ef0161e817321d39a770b2acf8bcf3004a28d90d14a94/pyzmq-27.1.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:7200bb0f03345515df50d99d3db206a0a6bee1955fbb8c453c76f5bf0e08fb96", size = 660427, upload-time = "2025-09-08T23:08:48.187Z" }, + { url = "https://files.pythonhosted.org/packages/f5/d2/5f36552c2d3e5685abe60dfa56f91169f7a2d99bbaf67c5271022ab40863/pyzmq-27.1.0-cp314-cp314t-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:01c0e07d558b06a60773744ea6251f769cd79a41a97d11b8bf4ab8f034b0424d", size = 847929, upload-time = "2025-09-08T23:08:49.76Z" }, + { url = "https://files.pythonhosted.org/packages/c4/2a/404b331f2b7bf3198e9945f75c4c521f0c6a3a23b51f7a4a401b94a13833/pyzmq-27.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:80d834abee71f65253c91540445d37c4c561e293ba6e741b992f20a105d69146", size = 1650193, upload-time = "2025-09-08T23:08:51.7Z" }, + { url = "https://files.pythonhosted.org/packages/1c/0b/f4107e33f62a5acf60e3ded67ed33d79b4ce18de432625ce2fc5093d6388/pyzmq-27.1.0-cp314-cp314t-musllinux_1_2_i686.whl", hash = "sha256:544b4e3b7198dde4a62b8ff6685e9802a9a1ebf47e77478a5eb88eca2a82f2fd", size = 2024388, upload-time = "2025-09-08T23:08:53.393Z" }, + { url = "https://files.pythonhosted.org/packages/0d/01/add31fe76512642fd6e40e3a3bd21f4b47e242c8ba33efb6809e37076d9b/pyzmq-27.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:cedc4c68178e59a4046f97eca31b148ddcf51e88677de1ef4e78cf06c5376c9a", size = 1885316, upload-time = "2025-09-08T23:08:55.702Z" }, + { url = "https://files.pythonhosted.org/packages/c4/59/a5f38970f9bf07cee96128de79590bb354917914a9be11272cfc7ff26af0/pyzmq-27.1.0-cp314-cp314t-win32.whl", hash = "sha256:1f0b2a577fd770aa6f053211a55d1c47901f4d537389a034c690291485e5fe92", size = 587472, upload-time = "2025-09-08T23:08:58.18Z" }, + { url = "https://files.pythonhosted.org/packages/70/d8/78b1bad170f93fcf5e3536e70e8fadac55030002275c9a29e8f5719185de/pyzmq-27.1.0-cp314-cp314t-win_amd64.whl", hash = "sha256:19c9468ae0437f8074af379e986c5d3d7d7bfe033506af442e8c879732bedbe0", size = 661401, upload-time = "2025-09-08T23:08:59.802Z" }, + { url = "https://files.pythonhosted.org/packages/81/d6/4bfbb40c9a0b42fc53c7cf442f6385db70b40f74a783130c5d0a5aa62228/pyzmq-27.1.0-cp314-cp314t-win_arm64.whl", hash = "sha256:dc5dbf68a7857b59473f7df42650c621d7e8923fb03fa74a526890f4d33cc4d7", size = 575170, upload-time = "2025-09-08T23:09:01.418Z" }, + { url = "https://files.pythonhosted.org/packages/4c/c6/c4dcdecdbaa70969ee1fdced6d7b8f60cfabe64d25361f27ac4665a70620/pyzmq-27.1.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:18770c8d3563715387139060d37859c02ce40718d1faf299abddcdcc6a649066", size = 836265, upload-time = "2025-09-08T23:09:49.376Z" }, + { url = "https://files.pythonhosted.org/packages/3e/79/f38c92eeaeb03a2ccc2ba9866f0439593bb08c5e3b714ac1d553e5c96e25/pyzmq-27.1.0-pp311-pypy311_pp73-manylinux2014_i686.manylinux_2_17_i686.whl", hash = "sha256:ac25465d42f92e990f8d8b0546b01c391ad431c3bf447683fdc40565941d0604", size = 800208, upload-time = "2025-09-08T23:09:51.073Z" }, + { url = "https://files.pythonhosted.org/packages/49/0e/3f0d0d335c6b3abb9b7b723776d0b21fa7f3a6c819a0db6097059aada160/pyzmq-27.1.0-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:53b40f8ae006f2734ee7608d59ed661419f087521edbfc2149c3932e9c14808c", size = 567747, upload-time = "2025-09-08T23:09:52.698Z" }, + { url = "https://files.pythonhosted.org/packages/a1/cf/f2b3784d536250ffd4be70e049f3b60981235d70c6e8ce7e3ef21e1adb25/pyzmq-27.1.0-pp311-pypy311_pp73-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:f605d884e7c8be8fe1aa94e0a783bf3f591b84c24e4bc4f3e7564c82ac25e271", size = 747371, upload-time = "2025-09-08T23:09:54.563Z" }, + { url = "https://files.pythonhosted.org/packages/01/1b/5dbe84eefc86f48473947e2f41711aded97eecef1231f4558f1f02713c12/pyzmq-27.1.0-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:c9f7f6e13dff2e44a6afeaf2cf54cee5929ad64afaf4d40b50f93c58fc687355", size = 544862, upload-time = "2025-09-08T23:09:56.509Z" }, ] [[package]] name = "rdkit" -version = "2025.3.2" +version = "2025.9.3" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-5-mlipx-grace' or extra == 'extra-5-mlipx-matpes' or extra == 'extra-5-mlipx-mattersim' or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-5-mlipx-fairchem' or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'extra-5-mlipx-grace') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "numpy", version = "2.1.3", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform != 'linux' or extra == 'extra-5-mlipx-fairchem' or extra != 'extra-5-mlipx-grace' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, { name = "pillow" }, ] wheels = [ - { url = "https://files.pythonhosted.org/packages/68/11/93b4a2897f7b784a2b8300cb14a1d40e6d847e71dda7012d4b6bb874f723/rdkit-2025.3.2-cp310-cp310-macosx_10_15_x86_64.whl", hash = "sha256:1adc25fee282cd0ef1dbe7796a5f319f0f2a4d1625085c292bcddb4c2071a83c", size = 30301131, upload-time = "2025-05-13T07:50:34.509Z" }, - { url = "https://files.pythonhosted.org/packages/14/92/32bb30e20f424b873826db7bbedbe6a36f589e050835e196bbda582c0d32/rdkit-2025.3.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:95cc91eeba825b038fb6cdf5098e3d9903f4f15d149d55e7facc9326acb15d57", size = 27956992, upload-time = "2025-05-13T07:50:39.298Z" }, - { url = "https://files.pythonhosted.org/packages/3b/24/a373f1a7e3027625b93e932c3b808f4cf98b17f11c3a8b4d9307580fd08a/rdkit-2025.3.2-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:70be1fc340b0f21107f8c9b4aa30b797aeb114f5fc065d562b7bf43f4955253d", size = 34340086, upload-time = "2025-05-13T07:50:43.45Z" }, - { url = "https://files.pythonhosted.org/packages/55/2b/480943e6bfd947e67633da5eaaa300394ec1cfaaad803e6a3d742e9fdc3c/rdkit-2025.3.2-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:4ba6f45431e1371825c20eb72fb81759bb4ab857401eaef035f1f885e6dc3634", size = 35198288, upload-time = "2025-05-13T07:50:48.218Z" }, - { url = "https://files.pythonhosted.org/packages/16/d8/9fd2a8a7d191562255b135ba5c49ef3d88e3e11a07f3dd0406ee441cf2fc/rdkit-2025.3.2-cp310-cp310-win_amd64.whl", hash = "sha256:1eae48149d030c80705e16a0a4a5f087d82ab6e63cc037b1180c7c0ddd2aef20", size = 22744883, upload-time = "2025-05-13T07:50:52.405Z" }, - { url = "https://files.pythonhosted.org/packages/ce/bf/c037d8f69497390f04813390cdcb0bdcae1b913c676a5e014234194b100c/rdkit-2025.3.2-cp311-cp311-macosx_10_15_x86_64.whl", hash = "sha256:d2403a549ccf5d0a66dd6d6a75aebe7dbb04cf4f8b186e478b03b258b8d51c32", size = 30301665, upload-time = "2025-05-13T07:50:56.743Z" }, - { url = "https://files.pythonhosted.org/packages/fb/1e/75883c4f4f77696d14a612201526b9a9cb735fe73dd007b8f2ce5c953b01/rdkit-2025.3.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:65a56a2cffb59a3095ff873c427dffb42687777ce142897c47de24f1a5f2c583", size = 27957275, upload-time = "2025-05-13T07:51:00.152Z" }, - { url = "https://files.pythonhosted.org/packages/40/cc/37b96a2428a03c14b3a09b0c165694ad8cde0cdb68b7ae7d12b2a4ea1016/rdkit-2025.3.2-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:207980c4ae20118828f0172722a282c6f771f0aa4d4bd2fb88fd1ec08fed230e", size = 34337235, upload-time = "2025-05-13T07:51:03.909Z" }, - { url = "https://files.pythonhosted.org/packages/29/86/60c50b44a8ad4aab6ab583af1a9385a64d27b8ac5e7a290316edd459195c/rdkit-2025.3.2-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:606d95f063c022843258a0346d153012e12c029f72df6f85fcf7796004e6d051", size = 35197720, upload-time = "2025-05-13T07:51:08.567Z" }, - { url = "https://files.pythonhosted.org/packages/76/27/d720a0b32b8eba19dc02e263627acb4ca91eb8c855f09ce7e4da861082c2/rdkit-2025.3.2-cp311-cp311-win_amd64.whl", hash = "sha256:5ad8088b34cab3c1b593ec9f2a8735f87502d7742165c325102d265c353598c8", size = 22745268, upload-time = "2025-05-13T07:51:12.172Z" }, - { url = "https://files.pythonhosted.org/packages/55/f2/de3755b394b7e3e62213635e0da81f915626b7610a4e5281f256321a49f0/rdkit-2025.3.2-cp312-cp312-macosx_10_15_x86_64.whl", hash = "sha256:ff85e00296363b28761f4aa2baa0fa9ddaa499e3d33a01d3275cc08a61d4eb32", size = 30377872, upload-time = "2025-05-13T07:51:16.192Z" }, - { url = "https://files.pythonhosted.org/packages/47/94/4f64b21dbbf6a80821c8cdd021c8f9fab95e43e51951e913cf75dcbebf93/rdkit-2025.3.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:2f98406b9c100b96dd8161150eda135e46a99ee20249850e68882576930c5a3b", size = 27998823, upload-time = "2025-05-13T07:51:20.225Z" }, - { url = "https://files.pythonhosted.org/packages/82/50/cfa7f3d033381b2d05eea04ba475f36311293906217d8c6af0b3533f59e6/rdkit-2025.3.2-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:92d36842773d3b977c799ddaa8325bb3ca2a0af70b4d809f5037a895c874e5d7", size = 34218134, upload-time = "2025-05-13T07:51:23.986Z" }, - { url = "https://files.pythonhosted.org/packages/0d/0c/77a640581a6105768ed8d26b925beac5b6b16f6146b7def734452d2f8455/rdkit-2025.3.2-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:57f8d0a374cebbb83a62f011602ff2be628ad2f190563eb17f5ffcfabadb5e3e", size = 35116150, upload-time = "2025-05-13T07:51:29.31Z" }, - { url = "https://files.pythonhosted.org/packages/4a/9a/7bf974de489069f397ba0e18dd7f4029f296ba780a8dbc176038129e8090/rdkit-2025.3.2-cp312-cp312-win_amd64.whl", hash = "sha256:f59ba9cba8d38fd5913df7f73bbc24710dd4a34fd540d99cb5f0ac8eee0c15ac", size = 22762210, upload-time = "2025-05-13T07:51:33.536Z" }, - { url = "https://files.pythonhosted.org/packages/bf/69/ba4fdfaeccdc5942b7abb2ecca93bf9fdd92c208ee3cdfb378be6d6fec46/rdkit-2025.3.2-cp313-cp313-macosx_10_15_x86_64.whl", hash = "sha256:025939682c79d0471107ad62b739b3c50a98f681a933c9924c66df6f32802b75", size = 30376808, upload-time = "2025-05-13T07:51:38.383Z" }, - { url = "https://files.pythonhosted.org/packages/b0/0a/040342c239e0963c27a370048a812a4f034ef3b62b80910c2f6635216a31/rdkit-2025.3.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:e7657e96eb872315cf79f65ebfbd95b2f15096965027b07b1ba33e1a041ddb5e", size = 27997670, upload-time = "2025-05-13T07:51:42.88Z" }, - { url = "https://files.pythonhosted.org/packages/9d/6a/c1b456caabdef5e7f754252e954b44edc44ea0ad9b87e7b53c0b189f1a86/rdkit-2025.3.2-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:c16f948dcdb783615cfcac07d170f00c253c4f77d324575d87eb3e8a0a7bc457", size = 34216539, upload-time = "2025-05-13T07:51:46.59Z" }, - { url = "https://files.pythonhosted.org/packages/4c/ad/ee7d0410730926a6aa25b735c71d067eb7ca8efcf3484622ff39d42ca7c4/rdkit-2025.3.2-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:932adfe84fa77c5481db66f5428b21ee61700a0401ccc0d19b8cfc34ea2fbf54", size = 35115051, upload-time = "2025-05-13T07:51:50.779Z" }, - { url = "https://files.pythonhosted.org/packages/9b/cf/a31a9e4bf54cd0612ea077185f8ba79d683d1ff1ef5a9467e11cf243502f/rdkit-2025.3.2-cp313-cp313-win_amd64.whl", hash = "sha256:4fce94861b4134e6d8214900ab7401e558553186895d901177fbdd991ac11386", size = 22761585, upload-time = "2025-05-13T07:51:54.338Z" }, + { url = "https://files.pythonhosted.org/packages/b1/19/4a606ef1c090b0abc54627a4aa5313c8bbef50da888841101bf1aa89ff70/rdkit-2025.9.3-cp311-cp311-macosx_10_15_x86_64.whl", hash = "sha256:520e572f70ac81a75091f953d4d9805bc1455879ad85724591c2b4b03bf1faf1", size = 31862854, upload-time = "2025-12-03T13:33:11.974Z" }, + { url = "https://files.pythonhosted.org/packages/f3/d3/b46738b5915d67c85091d489b2c93f3b2ae3012c42513526d3f599637a5f/rdkit-2025.9.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:5bcdd803bcea8b966fe5a6835e88cc74a68c3859a83ef4ad76dccf4c1bf61f3a", size = 29304494, upload-time = "2025-12-03T13:33:15.473Z" }, + { url = "https://files.pythonhosted.org/packages/00/10/f2e63e92c31aac7bb0fe521ca0f9221f71d8143a8e830d180028f383286b/rdkit-2025.9.3-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:ed1494e7d2f80985abb8eb4e287dbbf4cff1a581500759e4151939d201375cba", size = 34965049, upload-time = "2025-12-03T13:33:19.634Z" }, + { url = "https://files.pythonhosted.org/packages/5b/07/57de18d1a4708fd67252db748c7edda4dbba330ccb3cc5bf40979f6d0957/rdkit-2025.9.3-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:b06bc7e039fba8aecebe637420224c4919808cefe6b6df8af9d9c69d75431c42", size = 36425310, upload-time = "2025-12-03T13:33:23.862Z" }, + { url = "https://files.pythonhosted.org/packages/c0/ed/bb12c7e796befef58d674e829028120debc551c35b7d7bb1064aab6e4645/rdkit-2025.9.3-cp311-cp311-win_amd64.whl", hash = "sha256:236d5332635a240e37abc7b8d94eefbb84ce1afffd77daa878fd39ae18ab83dd", size = 23671165, upload-time = "2025-12-03T13:33:27.216Z" }, + { url = "https://files.pythonhosted.org/packages/08/6d/678f4cba4e0822b1a246e1e35b8092c8668ace259f8d23c05add87c90396/rdkit-2025.9.3-cp312-cp312-macosx_10_15_x86_64.whl", hash = "sha256:946f41f0d35193961e9b54731fc38f0c637608a1b5ced7a72c909af4e5c836dc", size = 31937483, upload-time = "2025-12-03T13:33:30.538Z" }, + { url = "https://files.pythonhosted.org/packages/33/90/553bbd0749721ed56787262896df62c7d2e248b0a12db7987c463670c40c/rdkit-2025.9.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:f713b4367c8270604c8e308faf06f35ac26078c96835fbbd2c766d1e3bab4a10", size = 29347529, upload-time = "2025-12-03T13:33:34.698Z" }, + { url = "https://files.pythonhosted.org/packages/11/8b/8853c4280f6adb9558cb791acc1c997c271a387632f0cb732738603ddfd7/rdkit-2025.9.3-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:f1b94496a471a4bd49bf380e2664e4a065a911c897d365781e7e9d397f30907b", size = 34853872, upload-time = "2025-12-03T13:33:38.553Z" }, + { url = "https://files.pythonhosted.org/packages/1a/90/5e01d1b46698f6856cc831f4456db8b775e4f28423b9f74b80a02a4f5b4f/rdkit-2025.9.3-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:8a1cac2699a57ca700c0b757b89827fabebdf18b8b51c26ece6cb2d936ff3386", size = 36366072, upload-time = "2025-12-03T13:33:42.822Z" }, + { url = "https://files.pythonhosted.org/packages/dc/d7/c312185f3a3bed84cb7705ffc123d1fdf607295df5957d75f5d23400e263/rdkit-2025.9.3-cp312-cp312-win_amd64.whl", hash = "sha256:a0123b505d88faf43fd00bbc7b0c6d988262f1cb0b98fe04998369e14d369a4e", size = 23689237, upload-time = "2025-12-03T13:33:46.658Z" }, + { url = "https://files.pythonhosted.org/packages/3f/8b/4b55e528f1b3628be857d99f4f6cc2dd8d1e12006cbd23ec7d3cb31b8352/rdkit-2025.9.3-cp313-cp313-macosx_10_15_x86_64.whl", hash = "sha256:37cd7f85f3604a895c7072b8ba5ea30dac0749a8cea75ea470309fd79bcfe518", size = 31936347, upload-time = "2025-12-03T13:33:50.404Z" }, + { url = "https://files.pythonhosted.org/packages/d3/f1/0e33c7032975c9ab62ad8586c283b4fbb8985196a24f1ee4312ff1b93b2e/rdkit-2025.9.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:b3fae0bb33296426c33d7094bd5cd1bb754047c6ace0461c182457f8e5e48b4b", size = 29346521, upload-time = "2025-12-03T13:33:54.663Z" }, + { url = "https://files.pythonhosted.org/packages/5c/7f/957a0dd090afab3e4d171ec74fb6fb1855a967287d17e5eaf2c146a7767f/rdkit-2025.9.3-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:0d6dc6755969118779aa588d527d1bc46ff7f2b39251b29d10e9ec50dbd9b6d2", size = 34852718, upload-time = "2025-12-03T13:33:58.437Z" }, + { url = "https://files.pythonhosted.org/packages/50/59/eada9b13184b96f8de6a1dae0d4bb609adc66ea8edbb6a33a8a6054359e0/rdkit-2025.9.3-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:6030665471b514fadd9b6dd7d842dfd10dd98a7f300ddab48691864f6f4f45ef", size = 36364862, upload-time = "2025-12-03T13:34:03.706Z" }, + { url = "https://files.pythonhosted.org/packages/a3/67/99c11705aaeeca004056005b44c1df9c7dbe2c12c070b8da88f7188e9e26/rdkit-2025.9.3-cp313-cp313-win_amd64.whl", hash = "sha256:1993e93ee1e57dfc1fa3f1b92979f9bfcf257279170dc7feb8c486e244959f9b", size = 23688716, upload-time = "2025-12-03T13:34:07.137Z" }, + { url = "https://files.pythonhosted.org/packages/e8/bf/dbc5759b5514866cde4fd8b559c32af540c4b850289cbecd088e97c1e7c8/rdkit-2025.9.3-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:067f5cc721086a78bb756c737357ce50cfab5fc78d8e10902ba00d4c87cace68", size = 31937271, upload-time = "2025-12-03T13:34:11.031Z" }, + { url = "https://files.pythonhosted.org/packages/6c/d0/72e8799c23fdf288f0db667713e4f636dce7ebe9d0969772e52a3ae4b693/rdkit-2025.9.3-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:6707f1a90dc9b630e8b487c5c9f452948fbdd3ac0106c4099f7243e77f86d61d", size = 29364649, upload-time = "2025-12-03T13:34:14.488Z" }, + { url = "https://files.pythonhosted.org/packages/21/25/1999480b5239ac0cf714ef71adad11abc8e091130d69f59f1b631790f85d/rdkit-2025.9.3-cp314-cp314-manylinux_2_28_aarch64.whl", hash = "sha256:e5266f9fa5d8c6f63200edd6d8159d33adf3d7532e885677d748c02427b28764", size = 34885860, upload-time = "2025-12-03T13:34:21.924Z" }, + { url = "https://files.pythonhosted.org/packages/ec/b3/41186ad8118e3b7ebe9250eddfb0b45699737c8f0aaa69dc5b3d0edf9e4f/rdkit-2025.9.3-cp314-cp314-manylinux_2_28_x86_64.whl", hash = "sha256:6aae71e6a3407b9b099496999634692e538c5936b5a3a8e034d44c5f2bcd9108", size = 36376596, upload-time = "2025-12-03T13:34:26.172Z" }, + { url = "https://files.pythonhosted.org/packages/3d/06/e3f8a71cd0a1ed50013789a96eab544a198cc7e4c55afffe7fc8654a5a98/rdkit-2025.9.3-cp314-cp314-win_amd64.whl", hash = "sha256:f47da0c0e138aaf0a0f0a8f1e2ecf35c0483fd037e1fe620af0d2cff6e5f778a", size = 24162376, upload-time = "2025-12-03T13:34:31.31Z" }, ] [[package]] name = "rdkit2ase" -version = "0.1.7" +version = "0.1.13" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "ase" }, + { name = "matplotlib" }, + { name = "networkx" }, { name = "rdkit" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/80/62/3e72c857369797d603c738dd13601c97f12bd211a5d8f63e6bae5d8581e9/rdkit2ase-0.1.7.tar.gz", hash = "sha256:3482a5661d73b201f2fa357e9f65a6366b7da854b81347d7f0585956c6256393", size = 94292, upload-time = "2025-05-28T08:34:14.257Z" } +sdist = { url = "https://files.pythonhosted.org/packages/df/3a/2a92f6f4699ba1ffbf4e8382e05240dd463d39e2280d82ad85367463b69d/rdkit2ase-0.1.13.tar.gz", hash = "sha256:557d691addc967795504354706fe2dee287ae3e356d913b549dd3b1cf100dcb6", size = 292827, upload-time = "2025-08-11T15:00:54.872Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/9c/9c/05b86461683a1d01529c05ed99d0eb628412f23e771512666acab87112f2/rdkit2ase-0.1.7-py3-none-any.whl", hash = "sha256:438a6e1af52a46009c2740d565f69117986beed348a27e4beb56ad1bc5f394bf", size = 13511, upload-time = "2025-05-28T08:34:13.435Z" }, + { url = "https://files.pythonhosted.org/packages/c3/03/8d5774caef8262c0b9332a6241551d03682d143fc4fb00877acf2d6168ba/rdkit2ase-0.1.13-py3-none-any.whl", hash = "sha256:26a0bcc78035c24139eb67e61e5e63d850bcb16069f2a4f3c8e6b86422e2630c", size = 26724, upload-time = "2025-08-11T15:00:53.384Z" }, ] [[package]] name = "redis" -version = "6.2.0" +version = "7.1.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "async-timeout", marker = "python_full_version < '3.11.3' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/ea/9a/0551e01ba52b944f97480721656578c8a7c46b51b99d66814f85fe3a4f3e/redis-6.2.0.tar.gz", hash = "sha256:e821f129b75dde6cb99dd35e5c76e8c49512a5a0d8dfdc560b2fbd44b85ca977", size = 4639129, upload-time = "2025-05-28T05:01:18.91Z" } +sdist = { url = "https://files.pythonhosted.org/packages/43/c8/983d5c6579a411d8a99bc5823cc5712768859b5ce2c8afe1a65b37832c81/redis-7.1.0.tar.gz", hash = "sha256:b1cc3cfa5a2cb9c2ab3ba700864fb0ad75617b41f01352ce5779dabf6d5f9c3c", size = 4796669, upload-time = "2025-11-19T15:54:39.961Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/13/67/e60968d3b0e077495a8fee89cf3f2373db98e528288a48f1ee44967f6e8c/redis-6.2.0-py3-none-any.whl", hash = "sha256:c8ddf316ee0aab65f04a11229e94a64b2618451dab7a67cb2f77eb799d872d5e", size = 278659, upload-time = "2025-05-28T05:01:16.955Z" }, + { url = "https://files.pythonhosted.org/packages/89/f0/8956f8a86b20d7bb9d6ac0187cf4cd54d8065bc9a1a09eb8011d4d326596/redis-7.1.0-py3-none-any.whl", hash = "sha256:23c52b208f92b56103e17c5d06bdc1a6c2c0b3106583985a76a18f83b265de2b", size = 354159, upload-time = "2025-11-19T15:54:38.064Z" }, ] [[package]] name = "referencing" -version = "0.36.2" +version = "0.37.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "attrs" }, { name = "rpds-py" }, - { name = "typing-extensions", marker = "python_full_version < '3.13' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "typing-extensions", marker = "python_full_version < '3.13' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/2f/db/98b5c277be99dd18bfd91dd04e1b759cad18d1a338188c936e92f921c7e2/referencing-0.36.2.tar.gz", hash = "sha256:df2e89862cd09deabbdba16944cc3f10feb6b3e6f18e902f7cc25609a34775aa", size = 74744, upload-time = "2025-01-25T08:48:16.138Z" } +sdist = { url = "https://files.pythonhosted.org/packages/22/f5/df4e9027acead3ecc63e50fe1e36aca1523e1719559c499951bb4b53188f/referencing-0.37.0.tar.gz", hash = "sha256:44aefc3142c5b842538163acb373e24cce6632bd54bdb01b21ad5863489f50d8", size = 78036, upload-time = "2025-10-13T15:30:48.871Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/c1/b1/3baf80dc6d2b7bc27a95a67752d0208e410351e3feb4eb78de5f77454d8d/referencing-0.36.2-py3-none-any.whl", hash = "sha256:e8699adbbf8b5c7de96d8ffa0eb5c158b3beafce084968e2ea8bb08c6794dcd0", size = 26775, upload-time = "2025-01-25T08:48:14.241Z" }, + { url = "https://files.pythonhosted.org/packages/2c/58/ca301544e1fa93ed4f80d724bf5b194f6e4b945841c5bfd555878eea9fcb/referencing-0.37.0-py3-none-any.whl", hash = "sha256:381329a9f99628c9069361716891d34ad94af76e461dcb0335825aecc7692231", size = 26766, upload-time = "2025-10-13T15:30:47.625Z" }, ] [[package]] name = "requests" -version = "2.32.4" +version = "2.32.5" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "certifi" }, @@ -12019,9 +10937,9 @@ dependencies = [ { name = "idna" }, { name = "urllib3" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/e1/0a/929373653770d8a0d7ea76c37de6e41f11eb07559b103b1c02cafb3f7cf8/requests-2.32.4.tar.gz", hash = "sha256:27d0316682c8a29834d3264820024b62a36942083d52caf2f14c0591336d3422", size = 135258, upload-time = "2025-06-09T16:43:07.34Z" } +sdist = { url = "https://files.pythonhosted.org/packages/c9/74/b3ff8e6c8446842c3f5c837e9c3dfcfe2018ea6ecef224c710c85ef728f4/requests-2.32.5.tar.gz", hash = "sha256:dbba0bac56e100853db0ea71b82b4dfd5fe2bf6d3754a8893c3af500cec7d7cf", size = 134517, upload-time = "2025-08-18T20:46:02.573Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/7c/e4/56027c4a6b4ae70ca9de302488c5ca95ad4a39e190093d6c1a8ace08341b/requests-2.32.4-py3-none-any.whl", hash = "sha256:27babd3cda2a6d50b30443204ee89830707d396671944c998b5975b031ac2b2c", size = 64847, upload-time = "2025-06-09T16:43:05.728Z" }, + { url = "https://files.pythonhosted.org/packages/1e/db/4254e3eabe8020b458f1a747140d32277ec7a271daf1d235b70dc0b4e6e3/requests-2.32.5-py3-none-any.whl", hash = "sha256:2462f94637a34fd532264295e186976db0f5d453d1cdd31473c85a6a161affb6", size = 64738, upload-time = "2025-08-18T20:46:00.542Z" }, ] [[package]] @@ -12057,6 +10975,18 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/9e/51/17023c0f8f1869d8806b979a2bffa3f861f26a3f1a66b094288323fba52f/rfc3986_validator-0.1.1-py2.py3-none-any.whl", hash = "sha256:2f235c432ef459970b4306369336b9d5dbdda31b510ca1e327636e01f528bfa9", size = 4242, upload-time = "2019-10-28T16:00:13.976Z" }, ] +[[package]] +name = "rfc3987-syntax" +version = "1.1.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "lark" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/2c/06/37c1a5557acf449e8e406a830a05bf885ac47d33270aec454ef78675008d/rfc3987_syntax-1.1.0.tar.gz", hash = "sha256:717a62cbf33cffdd16dfa3a497d81ce48a660ea691b1ddd7be710c22f00b4a0d", size = 14239, upload-time = "2025-07-18T01:05:05.015Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7e/71/44ce230e1b7fadd372515a97e32a83011f906ddded8d03e3c6aafbdedbb7/rfc3987_syntax-1.1.0-py3-none-any.whl", hash = "sha256:6c3d97604e4c5ce9f714898e05401a0445a641cfa276432b0a648c80856f6a3f", size = 8046, upload-time = "2025-07-18T01:05:03.843Z" }, +] + [[package]] name = "rich" version = "13.9.4" @@ -12064,249 +10994,236 @@ source = { registry = "https://pypi.org/simple" } resolution-markers = [ "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", ] dependencies = [ { name = "markdown-it-py", marker = "(extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn')" }, { name = "pygments", marker = "(extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "typing-extensions", marker = "(python_full_version >= '3.11' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (python_full_version < '3.11' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-orb') or (python_full_version < '3.11' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (python_full_version < '3.11' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-orb') or (python_full_version < '3.11' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (python_full_version < '3.11' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb') or (python_full_version < '3.11' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/ab/3a/0316b28d0761c6734d6bc14e770d85506c986c85ffb239e688eeaab2c2bc/rich-13.9.4.tar.gz", hash = "sha256:439594978a49a09530cff7ebc4b5c7103ef57baf48d5ea3184f21d9a2befa098", size = 223149, upload-time = "2024-11-01T16:43:57.873Z" } wheels = [ @@ -12315,417 +11232,410 @@ wheels = [ [[package]] name = "rich" -version = "14.0.0" +version = "14.2.0" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", ] dependencies = [ - { name = "markdown-it-py", marker = "extra == 'extra-5-mlipx-matpes' or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "pygments", marker = "extra == 'extra-5-mlipx-matpes' or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "typing-extensions", marker = "(python_full_version < '3.11' and extra == 'extra-5-mlipx-matpes') or (python_full_version < '3.11' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb') or (python_full_version < '3.11' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb') or (python_full_version >= '3.11' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (python_full_version < '3.11' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, + { name = "markdown-it-py", marker = "(extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb')" }, + { name = "pygments", marker = "(extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb')" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/a1/53/830aa4c3066a8ab0ae9a9955976fb770fe9c6102117c8ec4ab3ea62d89e8/rich-14.0.0.tar.gz", hash = "sha256:82f1bc23a6a21ebca4ae0c45af9bdbc492ed20231dcb63f297d6d1021a9d5725", size = 224078, upload-time = "2025-03-30T14:15:14.23Z" } +sdist = { url = "https://files.pythonhosted.org/packages/fb/d2/8920e102050a0de7bfabeb4c4614a49248cf8d5d7a8d01885fbb24dc767a/rich-14.2.0.tar.gz", hash = "sha256:73ff50c7c0c1c77c8243079283f4edb376f0f6442433aecb8ce7e6d0b92d1fe4", size = 219990, upload-time = "2025-10-09T14:16:53.064Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/0d/9b/63f4c7ebc259242c89b3acafdb37b41d1185c07ff0011164674e9076b491/rich-14.0.0-py3-none-any.whl", hash = "sha256:1c9491e1951aac09caffd42f448ee3d04e58923ffe14993f6e83068dc395d7e0", size = 243229, upload-time = "2025-03-30T14:15:12.283Z" }, + { url = "https://files.pythonhosted.org/packages/25/7a/b0178788f8dc6cafce37a212c99565fa1fe7872c70c6c9c1e1a372d9d88f/rich-14.2.0-py3-none-any.whl", hash = "sha256:76bc51fe2e57d2b1be1f96c524b890b816e334ab4c1e45888799bfaab0021edd", size = 243393, upload-time = "2025-10-09T14:16:51.245Z" }, ] [[package]] -name = "rpds-py" -version = "0.25.1" +name = "roman-numerals-py" +version = "3.1.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/8c/a6/60184b7fc00dd3ca80ac635dd5b8577d444c57e8e8742cecabfacb829921/rpds_py-0.25.1.tar.gz", hash = "sha256:8960b6dac09b62dac26e75d7e2c4a22efb835d827a7278c34f72b2b84fa160e3", size = 27304, upload-time = "2025-05-21T12:46:12.502Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/cb/09/e1158988e50905b7f8306487a576b52d32aa9a87f79f7ab24ee8db8b6c05/rpds_py-0.25.1-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:f4ad628b5174d5315761b67f212774a32f5bad5e61396d38108bd801c0a8f5d9", size = 373140, upload-time = "2025-05-21T12:42:38.834Z" }, - { url = "https://files.pythonhosted.org/packages/e0/4b/a284321fb3c45c02fc74187171504702b2934bfe16abab89713eedfe672e/rpds_py-0.25.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8c742af695f7525e559c16f1562cf2323db0e3f0fbdcabdf6865b095256b2d40", size = 358860, upload-time = "2025-05-21T12:42:41.394Z" }, - { url = "https://files.pythonhosted.org/packages/4e/46/8ac9811150c75edeae9fc6fa0e70376c19bc80f8e1f7716981433905912b/rpds_py-0.25.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:605ffe7769e24b1800b4d024d24034405d9404f0bc2f55b6db3362cd34145a6f", size = 386179, upload-time = "2025-05-21T12:42:43.213Z" }, - { url = "https://files.pythonhosted.org/packages/f3/ec/87eb42d83e859bce91dcf763eb9f2ab117142a49c9c3d17285440edb5b69/rpds_py-0.25.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ccc6f3ddef93243538be76f8e47045b4aad7a66a212cd3a0f23e34469473d36b", size = 400282, upload-time = "2025-05-21T12:42:44.92Z" }, - { url = "https://files.pythonhosted.org/packages/68/c8/2a38e0707d7919c8c78e1d582ab15cf1255b380bcb086ca265b73ed6db23/rpds_py-0.25.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f70316f760174ca04492b5ab01be631a8ae30cadab1d1081035136ba12738cfa", size = 521824, upload-time = "2025-05-21T12:42:46.856Z" }, - { url = "https://files.pythonhosted.org/packages/5e/2c/6a92790243569784dde84d144bfd12bd45102f4a1c897d76375076d730ab/rpds_py-0.25.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e1dafef8df605fdb46edcc0bf1573dea0d6d7b01ba87f85cd04dc855b2b4479e", size = 411644, upload-time = "2025-05-21T12:42:48.838Z" }, - { url = "https://files.pythonhosted.org/packages/eb/76/66b523ffc84cf47db56efe13ae7cf368dee2bacdec9d89b9baca5e2e6301/rpds_py-0.25.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0701942049095741a8aeb298a31b203e735d1c61f4423511d2b1a41dcd8a16da", size = 386955, upload-time = "2025-05-21T12:42:50.835Z" }, - { url = "https://files.pythonhosted.org/packages/b6/b9/a362d7522feaa24dc2b79847c6175daa1c642817f4a19dcd5c91d3e2c316/rpds_py-0.25.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:e87798852ae0b37c88babb7f7bbbb3e3fecc562a1c340195b44c7e24d403e380", size = 421039, upload-time = "2025-05-21T12:42:52.348Z" }, - { url = "https://files.pythonhosted.org/packages/0f/c4/b5b6f70b4d719b6584716889fd3413102acf9729540ee76708d56a76fa97/rpds_py-0.25.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3bcce0edc1488906c2d4c75c94c70a0417e83920dd4c88fec1078c94843a6ce9", size = 563290, upload-time = "2025-05-21T12:42:54.404Z" }, - { url = "https://files.pythonhosted.org/packages/87/a3/2e6e816615c12a8f8662c9d8583a12eb54c52557521ef218cbe3095a8afa/rpds_py-0.25.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e2f6a2347d3440ae789505693a02836383426249d5293541cd712e07e7aecf54", size = 592089, upload-time = "2025-05-21T12:42:55.976Z" }, - { url = "https://files.pythonhosted.org/packages/c0/08/9b8e1050e36ce266135994e2c7ec06e1841f1c64da739daeb8afe9cb77a4/rpds_py-0.25.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:4fd52d3455a0aa997734f3835cbc4c9f32571345143960e7d7ebfe7b5fbfa3b2", size = 558400, upload-time = "2025-05-21T12:42:58.032Z" }, - { url = "https://files.pythonhosted.org/packages/f2/df/b40b8215560b8584baccd839ff5c1056f3c57120d79ac41bd26df196da7e/rpds_py-0.25.1-cp310-cp310-win32.whl", hash = "sha256:3f0b1798cae2bbbc9b9db44ee068c556d4737911ad53a4e5093d09d04b3bbc24", size = 219741, upload-time = "2025-05-21T12:42:59.479Z" }, - { url = "https://files.pythonhosted.org/packages/10/99/e4c58be18cf5d8b40b8acb4122bc895486230b08f978831b16a3916bd24d/rpds_py-0.25.1-cp310-cp310-win_amd64.whl", hash = "sha256:3ebd879ab996537fc510a2be58c59915b5dd63bccb06d1ef514fee787e05984a", size = 231553, upload-time = "2025-05-21T12:43:01.425Z" }, - { url = "https://files.pythonhosted.org/packages/95/e1/df13fe3ddbbea43567e07437f097863b20c99318ae1f58a0fe389f763738/rpds_py-0.25.1-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:5f048bbf18b1f9120685c6d6bb70cc1a52c8cc11bdd04e643d28d3be0baf666d", size = 373341, upload-time = "2025-05-21T12:43:02.978Z" }, - { url = "https://files.pythonhosted.org/packages/7a/58/deef4d30fcbcbfef3b6d82d17c64490d5c94585a2310544ce8e2d3024f83/rpds_py-0.25.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:4fbb0dbba559959fcb5d0735a0f87cdbca9e95dac87982e9b95c0f8f7ad10255", size = 359111, upload-time = "2025-05-21T12:43:05.128Z" }, - { url = "https://files.pythonhosted.org/packages/bb/7e/39f1f4431b03e96ebaf159e29a0f82a77259d8f38b2dd474721eb3a8ac9b/rpds_py-0.25.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d4ca54b9cf9d80b4016a67a0193ebe0bcf29f6b0a96f09db942087e294d3d4c2", size = 386112, upload-time = "2025-05-21T12:43:07.13Z" }, - { url = "https://files.pythonhosted.org/packages/db/e7/847068a48d63aec2ae695a1646089620b3b03f8ccf9f02c122ebaf778f3c/rpds_py-0.25.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1ee3e26eb83d39b886d2cb6e06ea701bba82ef30a0de044d34626ede51ec98b0", size = 400362, upload-time = "2025-05-21T12:43:08.693Z" }, - { url = "https://files.pythonhosted.org/packages/3b/3d/9441d5db4343d0cee759a7ab4d67420a476cebb032081763de934719727b/rpds_py-0.25.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:89706d0683c73a26f76a5315d893c051324d771196ae8b13e6ffa1ffaf5e574f", size = 522214, upload-time = "2025-05-21T12:43:10.694Z" }, - { url = "https://files.pythonhosted.org/packages/a2/ec/2cc5b30d95f9f1a432c79c7a2f65d85e52812a8f6cbf8768724571710786/rpds_py-0.25.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c2013ee878c76269c7b557a9a9c042335d732e89d482606990b70a839635feb7", size = 411491, upload-time = "2025-05-21T12:43:12.739Z" }, - { url = "https://files.pythonhosted.org/packages/dc/6c/44695c1f035077a017dd472b6a3253553780837af2fac9b6ac25f6a5cb4d/rpds_py-0.25.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:45e484db65e5380804afbec784522de84fa95e6bb92ef1bd3325d33d13efaebd", size = 386978, upload-time = "2025-05-21T12:43:14.25Z" }, - { url = "https://files.pythonhosted.org/packages/b1/74/b4357090bb1096db5392157b4e7ed8bb2417dc7799200fcbaee633a032c9/rpds_py-0.25.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:48d64155d02127c249695abb87d39f0faf410733428d499867606be138161d65", size = 420662, upload-time = "2025-05-21T12:43:15.8Z" }, - { url = "https://files.pythonhosted.org/packages/26/dd/8cadbebf47b96e59dfe8b35868e5c38a42272699324e95ed522da09d3a40/rpds_py-0.25.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:048893e902132fd6548a2e661fb38bf4896a89eea95ac5816cf443524a85556f", size = 563385, upload-time = "2025-05-21T12:43:17.78Z" }, - { url = "https://files.pythonhosted.org/packages/c3/ea/92960bb7f0e7a57a5ab233662f12152085c7dc0d5468534c65991a3d48c9/rpds_py-0.25.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:0317177b1e8691ab5879f4f33f4b6dc55ad3b344399e23df2e499de7b10a548d", size = 592047, upload-time = "2025-05-21T12:43:19.457Z" }, - { url = "https://files.pythonhosted.org/packages/61/ad/71aabc93df0d05dabcb4b0c749277881f8e74548582d96aa1bf24379493a/rpds_py-0.25.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:bffcf57826d77a4151962bf1701374e0fc87f536e56ec46f1abdd6a903354042", size = 557863, upload-time = "2025-05-21T12:43:21.69Z" }, - { url = "https://files.pythonhosted.org/packages/93/0f/89df0067c41f122b90b76f3660028a466eb287cbe38efec3ea70e637ca78/rpds_py-0.25.1-cp311-cp311-win32.whl", hash = "sha256:cda776f1967cb304816173b30994faaf2fd5bcb37e73118a47964a02c348e1bc", size = 219627, upload-time = "2025-05-21T12:43:23.311Z" }, - { url = "https://files.pythonhosted.org/packages/7c/8d/93b1a4c1baa903d0229374d9e7aa3466d751f1d65e268c52e6039c6e338e/rpds_py-0.25.1-cp311-cp311-win_amd64.whl", hash = "sha256:dc3c1ff0abc91444cd20ec643d0f805df9a3661fcacf9c95000329f3ddf268a4", size = 231603, upload-time = "2025-05-21T12:43:25.145Z" }, - { url = "https://files.pythonhosted.org/packages/cb/11/392605e5247bead2f23e6888e77229fbd714ac241ebbebb39a1e822c8815/rpds_py-0.25.1-cp311-cp311-win_arm64.whl", hash = "sha256:5a3ddb74b0985c4387719fc536faced33cadf2172769540c62e2a94b7b9be1c4", size = 223967, upload-time = "2025-05-21T12:43:26.566Z" }, - { url = "https://files.pythonhosted.org/packages/7f/81/28ab0408391b1dc57393653b6a0cf2014cc282cc2909e4615e63e58262be/rpds_py-0.25.1-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:b5ffe453cde61f73fea9430223c81d29e2fbf412a6073951102146c84e19e34c", size = 364647, upload-time = "2025-05-21T12:43:28.559Z" }, - { url = "https://files.pythonhosted.org/packages/2c/9a/7797f04cad0d5e56310e1238434f71fc6939d0bc517192a18bb99a72a95f/rpds_py-0.25.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:115874ae5e2fdcfc16b2aedc95b5eef4aebe91b28e7e21951eda8a5dc0d3461b", size = 350454, upload-time = "2025-05-21T12:43:30.615Z" }, - { url = "https://files.pythonhosted.org/packages/69/3c/93d2ef941b04898011e5d6eaa56a1acf46a3b4c9f4b3ad1bbcbafa0bee1f/rpds_py-0.25.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a714bf6e5e81b0e570d01f56e0c89c6375101b8463999ead3a93a5d2a4af91fa", size = 389665, upload-time = "2025-05-21T12:43:32.629Z" }, - { url = "https://files.pythonhosted.org/packages/c1/57/ad0e31e928751dde8903a11102559628d24173428a0f85e25e187defb2c1/rpds_py-0.25.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:35634369325906bcd01577da4c19e3b9541a15e99f31e91a02d010816b49bfda", size = 403873, upload-time = "2025-05-21T12:43:34.576Z" }, - { url = "https://files.pythonhosted.org/packages/16/ad/c0c652fa9bba778b4f54980a02962748479dc09632e1fd34e5282cf2556c/rpds_py-0.25.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d4cb2b3ddc16710548801c6fcc0cfcdeeff9dafbc983f77265877793f2660309", size = 525866, upload-time = "2025-05-21T12:43:36.123Z" }, - { url = "https://files.pythonhosted.org/packages/2a/39/3e1839bc527e6fcf48d5fec4770070f872cdee6c6fbc9b259932f4e88a38/rpds_py-0.25.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9ceca1cf097ed77e1a51f1dbc8d174d10cb5931c188a4505ff9f3e119dfe519b", size = 416886, upload-time = "2025-05-21T12:43:38.034Z" }, - { url = "https://files.pythonhosted.org/packages/7a/95/dd6b91cd4560da41df9d7030a038298a67d24f8ca38e150562644c829c48/rpds_py-0.25.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2c2cd1a4b0c2b8c5e31ffff50d09f39906fe351389ba143c195566056c13a7ea", size = 390666, upload-time = "2025-05-21T12:43:40.065Z" }, - { url = "https://files.pythonhosted.org/packages/64/48/1be88a820e7494ce0a15c2d390ccb7c52212370badabf128e6a7bb4cb802/rpds_py-0.25.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:1de336a4b164c9188cb23f3703adb74a7623ab32d20090d0e9bf499a2203ad65", size = 425109, upload-time = "2025-05-21T12:43:42.263Z" }, - { url = "https://files.pythonhosted.org/packages/cf/07/3e2a17927ef6d7720b9949ec1b37d1e963b829ad0387f7af18d923d5cfa5/rpds_py-0.25.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:9fca84a15333e925dd59ce01da0ffe2ffe0d6e5d29a9eeba2148916d1824948c", size = 567244, upload-time = "2025-05-21T12:43:43.846Z" }, - { url = "https://files.pythonhosted.org/packages/d2/e5/76cf010998deccc4f95305d827847e2eae9c568099c06b405cf96384762b/rpds_py-0.25.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:88ec04afe0c59fa64e2f6ea0dd9657e04fc83e38de90f6de201954b4d4eb59bd", size = 596023, upload-time = "2025-05-21T12:43:45.932Z" }, - { url = "https://files.pythonhosted.org/packages/52/9a/df55efd84403736ba37a5a6377b70aad0fd1cb469a9109ee8a1e21299a1c/rpds_py-0.25.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:a8bd2f19e312ce3e1d2c635618e8a8d8132892bb746a7cf74780a489f0f6cdcb", size = 561634, upload-time = "2025-05-21T12:43:48.263Z" }, - { url = "https://files.pythonhosted.org/packages/ab/aa/dc3620dd8db84454aaf9374bd318f1aa02578bba5e567f5bf6b79492aca4/rpds_py-0.25.1-cp312-cp312-win32.whl", hash = "sha256:e5e2f7280d8d0d3ef06f3ec1b4fd598d386cc6f0721e54f09109a8132182fbfe", size = 222713, upload-time = "2025-05-21T12:43:49.897Z" }, - { url = "https://files.pythonhosted.org/packages/a3/7f/7cef485269a50ed5b4e9bae145f512d2a111ca638ae70cc101f661b4defd/rpds_py-0.25.1-cp312-cp312-win_amd64.whl", hash = "sha256:db58483f71c5db67d643857404da360dce3573031586034b7d59f245144cc192", size = 235280, upload-time = "2025-05-21T12:43:51.893Z" }, - { url = "https://files.pythonhosted.org/packages/99/f2/c2d64f6564f32af913bf5f3f7ae41c7c263c5ae4c4e8f1a17af8af66cd46/rpds_py-0.25.1-cp312-cp312-win_arm64.whl", hash = "sha256:6d50841c425d16faf3206ddbba44c21aa3310a0cebc3c1cdfc3e3f4f9f6f5728", size = 225399, upload-time = "2025-05-21T12:43:53.351Z" }, - { url = "https://files.pythonhosted.org/packages/2b/da/323848a2b62abe6a0fec16ebe199dc6889c5d0a332458da8985b2980dffe/rpds_py-0.25.1-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:659d87430a8c8c704d52d094f5ba6fa72ef13b4d385b7e542a08fc240cb4a559", size = 364498, upload-time = "2025-05-21T12:43:54.841Z" }, - { url = "https://files.pythonhosted.org/packages/1f/b4/4d3820f731c80fd0cd823b3e95b9963fec681ae45ba35b5281a42382c67d/rpds_py-0.25.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:68f6f060f0bbdfb0245267da014d3a6da9be127fe3e8cc4a68c6f833f8a23bb1", size = 350083, upload-time = "2025-05-21T12:43:56.428Z" }, - { url = "https://files.pythonhosted.org/packages/d5/b1/3a8ee1c9d480e8493619a437dec685d005f706b69253286f50f498cbdbcf/rpds_py-0.25.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:083a9513a33e0b92cf6e7a6366036c6bb43ea595332c1ab5c8ae329e4bcc0a9c", size = 389023, upload-time = "2025-05-21T12:43:57.995Z" }, - { url = "https://files.pythonhosted.org/packages/3b/31/17293edcfc934dc62c3bf74a0cb449ecd549531f956b72287203e6880b87/rpds_py-0.25.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:816568614ecb22b18a010c7a12559c19f6fe993526af88e95a76d5a60b8b75fb", size = 403283, upload-time = "2025-05-21T12:43:59.546Z" }, - { url = "https://files.pythonhosted.org/packages/d1/ca/e0f0bc1a75a8925024f343258c8ecbd8828f8997ea2ac71e02f67b6f5299/rpds_py-0.25.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3c6564c0947a7f52e4792983f8e6cf9bac140438ebf81f527a21d944f2fd0a40", size = 524634, upload-time = "2025-05-21T12:44:01.087Z" }, - { url = "https://files.pythonhosted.org/packages/3e/03/5d0be919037178fff33a6672ffc0afa04ea1cfcb61afd4119d1b5280ff0f/rpds_py-0.25.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5c4a128527fe415d73cf1f70a9a688d06130d5810be69f3b553bf7b45e8acf79", size = 416233, upload-time = "2025-05-21T12:44:02.604Z" }, - { url = "https://files.pythonhosted.org/packages/05/7c/8abb70f9017a231c6c961a8941403ed6557664c0913e1bf413cbdc039e75/rpds_py-0.25.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a49e1d7a4978ed554f095430b89ecc23f42014a50ac385eb0c4d163ce213c325", size = 390375, upload-time = "2025-05-21T12:44:04.162Z" }, - { url = "https://files.pythonhosted.org/packages/7a/ac/a87f339f0e066b9535074a9f403b9313fd3892d4a164d5d5f5875ac9f29f/rpds_py-0.25.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:d74ec9bc0e2feb81d3f16946b005748119c0f52a153f6db6a29e8cd68636f295", size = 424537, upload-time = "2025-05-21T12:44:06.175Z" }, - { url = "https://files.pythonhosted.org/packages/1f/8f/8d5c1567eaf8c8afe98a838dd24de5013ce6e8f53a01bd47fe8bb06b5533/rpds_py-0.25.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:3af5b4cc10fa41e5bc64e5c198a1b2d2864337f8fcbb9a67e747e34002ce812b", size = 566425, upload-time = "2025-05-21T12:44:08.242Z" }, - { url = "https://files.pythonhosted.org/packages/95/33/03016a6be5663b389c8ab0bbbcca68d9e96af14faeff0a04affcb587e776/rpds_py-0.25.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:79dc317a5f1c51fd9c6a0c4f48209c6b8526d0524a6904fc1076476e79b00f98", size = 595197, upload-time = "2025-05-21T12:44:10.449Z" }, - { url = "https://files.pythonhosted.org/packages/33/8d/da9f4d3e208c82fda311bff0cf0a19579afceb77cf456e46c559a1c075ba/rpds_py-0.25.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:1521031351865e0181bc585147624d66b3b00a84109b57fcb7a779c3ec3772cd", size = 561244, upload-time = "2025-05-21T12:44:12.387Z" }, - { url = "https://files.pythonhosted.org/packages/e2/b3/39d5dcf7c5f742ecd6dbc88f6f84ae54184b92f5f387a4053be2107b17f1/rpds_py-0.25.1-cp313-cp313-win32.whl", hash = "sha256:5d473be2b13600b93a5675d78f59e63b51b1ba2d0476893415dfbb5477e65b31", size = 222254, upload-time = "2025-05-21T12:44:14.261Z" }, - { url = "https://files.pythonhosted.org/packages/5f/19/2d6772c8eeb8302c5f834e6d0dfd83935a884e7c5ce16340c7eaf89ce925/rpds_py-0.25.1-cp313-cp313-win_amd64.whl", hash = "sha256:a7b74e92a3b212390bdce1d93da9f6488c3878c1d434c5e751cbc202c5e09500", size = 234741, upload-time = "2025-05-21T12:44:16.236Z" }, - { url = "https://files.pythonhosted.org/packages/5b/5a/145ada26cfaf86018d0eb304fe55eafdd4f0b6b84530246bb4a7c4fb5c4b/rpds_py-0.25.1-cp313-cp313-win_arm64.whl", hash = "sha256:dd326a81afe332ede08eb39ab75b301d5676802cdffd3a8f287a5f0b694dc3f5", size = 224830, upload-time = "2025-05-21T12:44:17.749Z" }, - { url = "https://files.pythonhosted.org/packages/4b/ca/d435844829c384fd2c22754ff65889c5c556a675d2ed9eb0e148435c6690/rpds_py-0.25.1-cp313-cp313t-macosx_10_12_x86_64.whl", hash = "sha256:a58d1ed49a94d4183483a3ce0af22f20318d4a1434acee255d683ad90bf78129", size = 359668, upload-time = "2025-05-21T12:44:19.322Z" }, - { url = "https://files.pythonhosted.org/packages/1f/01/b056f21db3a09f89410d493d2f6614d87bb162499f98b649d1dbd2a81988/rpds_py-0.25.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:f251bf23deb8332823aef1da169d5d89fa84c89f67bdfb566c49dea1fccfd50d", size = 345649, upload-time = "2025-05-21T12:44:20.962Z" }, - { url = "https://files.pythonhosted.org/packages/e0/0f/e0d00dc991e3d40e03ca36383b44995126c36b3eafa0ccbbd19664709c88/rpds_py-0.25.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8dbd586bfa270c1103ece2109314dd423df1fa3d9719928b5d09e4840cec0d72", size = 384776, upload-time = "2025-05-21T12:44:22.516Z" }, - { url = "https://files.pythonhosted.org/packages/9f/a2/59374837f105f2ca79bde3c3cd1065b2f8c01678900924949f6392eab66d/rpds_py-0.25.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:6d273f136e912aa101a9274c3145dcbddbe4bac560e77e6d5b3c9f6e0ed06d34", size = 395131, upload-time = "2025-05-21T12:44:24.147Z" }, - { url = "https://files.pythonhosted.org/packages/9c/dc/48e8d84887627a0fe0bac53f0b4631e90976fd5d35fff8be66b8e4f3916b/rpds_py-0.25.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:666fa7b1bd0a3810a7f18f6d3a25ccd8866291fbbc3c9b912b917a6715874bb9", size = 520942, upload-time = "2025-05-21T12:44:25.915Z" }, - { url = "https://files.pythonhosted.org/packages/7c/f5/ee056966aeae401913d37befeeab57a4a43a4f00099e0a20297f17b8f00c/rpds_py-0.25.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:921954d7fbf3fccc7de8f717799304b14b6d9a45bbeec5a8d7408ccbf531faf5", size = 411330, upload-time = "2025-05-21T12:44:27.638Z" }, - { url = "https://files.pythonhosted.org/packages/ab/74/b2cffb46a097cefe5d17f94ede7a174184b9d158a0aeb195f39f2c0361e8/rpds_py-0.25.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f3d86373ff19ca0441ebeb696ef64cb58b8b5cbacffcda5a0ec2f3911732a194", size = 387339, upload-time = "2025-05-21T12:44:29.292Z" }, - { url = "https://files.pythonhosted.org/packages/7f/9a/0ff0b375dcb5161c2b7054e7d0b7575f1680127505945f5cabaac890bc07/rpds_py-0.25.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:c8980cde3bb8575e7c956a530f2c217c1d6aac453474bf3ea0f9c89868b531b6", size = 418077, upload-time = "2025-05-21T12:44:30.877Z" }, - { url = "https://files.pythonhosted.org/packages/0d/a1/fda629bf20d6b698ae84c7c840cfb0e9e4200f664fc96e1f456f00e4ad6e/rpds_py-0.25.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:8eb8c84ecea987a2523e057c0d950bcb3f789696c0499290b8d7b3107a719d78", size = 562441, upload-time = "2025-05-21T12:44:32.541Z" }, - { url = "https://files.pythonhosted.org/packages/20/15/ce4b5257f654132f326f4acd87268e1006cc071e2c59794c5bdf4bebbb51/rpds_py-0.25.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:e43a005671a9ed5a650f3bc39e4dbccd6d4326b24fb5ea8be5f3a43a6f576c72", size = 590750, upload-time = "2025-05-21T12:44:34.557Z" }, - { url = "https://files.pythonhosted.org/packages/fb/ab/e04bf58a8d375aeedb5268edcc835c6a660ebf79d4384d8e0889439448b0/rpds_py-0.25.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:58f77c60956501a4a627749a6dcb78dac522f249dd96b5c9f1c6af29bfacfb66", size = 558891, upload-time = "2025-05-21T12:44:37.358Z" }, - { url = "https://files.pythonhosted.org/packages/90/82/cb8c6028a6ef6cd2b7991e2e4ced01c854b6236ecf51e81b64b569c43d73/rpds_py-0.25.1-cp313-cp313t-win32.whl", hash = "sha256:2cb9e5b5e26fc02c8a4345048cd9998c2aca7c2712bd1b36da0c72ee969a3523", size = 218718, upload-time = "2025-05-21T12:44:38.969Z" }, - { url = "https://files.pythonhosted.org/packages/b6/97/5a4b59697111c89477d20ba8a44df9ca16b41e737fa569d5ae8bff99e650/rpds_py-0.25.1-cp313-cp313t-win_amd64.whl", hash = "sha256:401ca1c4a20cc0510d3435d89c069fe0a9ae2ee6495135ac46bdd49ec0495763", size = 232218, upload-time = "2025-05-21T12:44:40.512Z" }, - { url = "https://files.pythonhosted.org/packages/78/ff/566ce53529b12b4f10c0a348d316bd766970b7060b4fd50f888be3b3b281/rpds_py-0.25.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:b24bf3cd93d5b6ecfbedec73b15f143596c88ee249fa98cefa9a9dc9d92c6f28", size = 373931, upload-time = "2025-05-21T12:45:05.01Z" }, - { url = "https://files.pythonhosted.org/packages/83/5d/deba18503f7c7878e26aa696e97f051175788e19d5336b3b0e76d3ef9256/rpds_py-0.25.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:0eb90e94f43e5085623932b68840b6f379f26db7b5c2e6bcef3179bd83c9330f", size = 359074, upload-time = "2025-05-21T12:45:06.714Z" }, - { url = "https://files.pythonhosted.org/packages/0d/74/313415c5627644eb114df49c56a27edba4d40cfd7c92bd90212b3604ca84/rpds_py-0.25.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d50e4864498a9ab639d6d8854b25e80642bd362ff104312d9770b05d66e5fb13", size = 387255, upload-time = "2025-05-21T12:45:08.669Z" }, - { url = "https://files.pythonhosted.org/packages/8c/c8/c723298ed6338963d94e05c0f12793acc9b91d04ed7c4ba7508e534b7385/rpds_py-0.25.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7c9409b47ba0650544b0bb3c188243b83654dfe55dcc173a86832314e1a6a35d", size = 400714, upload-time = "2025-05-21T12:45:10.39Z" }, - { url = "https://files.pythonhosted.org/packages/33/8a/51f1f6aa653c2e110ed482ef2ae94140d56c910378752a1b483af11019ee/rpds_py-0.25.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:796ad874c89127c91970652a4ee8b00d56368b7e00d3477f4415fe78164c8000", size = 523105, upload-time = "2025-05-21T12:45:12.273Z" }, - { url = "https://files.pythonhosted.org/packages/c7/a4/7873d15c088ad3bff36910b29ceb0f178e4b3232c2adbe9198de68a41e63/rpds_py-0.25.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:85608eb70a659bf4c1142b2781083d4b7c0c4e2c90eff11856a9754e965b2540", size = 411499, upload-time = "2025-05-21T12:45:13.95Z" }, - { url = "https://files.pythonhosted.org/packages/90/f3/0ce1437befe1410766d11d08239333ac1b2d940f8a64234ce48a7714669c/rpds_py-0.25.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c4feb9211d15d9160bc85fa72fed46432cdc143eb9cf6d5ca377335a921ac37b", size = 387918, upload-time = "2025-05-21T12:45:15.649Z" }, - { url = "https://files.pythonhosted.org/packages/94/d4/5551247988b2a3566afb8a9dba3f1d4a3eea47793fd83000276c1a6c726e/rpds_py-0.25.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:ccfa689b9246c48947d31dd9d8b16d89a0ecc8e0e26ea5253068efb6c542b76e", size = 421705, upload-time = "2025-05-21T12:45:17.788Z" }, - { url = "https://files.pythonhosted.org/packages/b0/25/5960f28f847bf736cc7ee3c545a7e1d2f3b5edaf82c96fb616c2f5ed52d0/rpds_py-0.25.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:3c5b317ecbd8226887994852e85de562f7177add602514d4ac40f87de3ae45a8", size = 564489, upload-time = "2025-05-21T12:45:19.466Z" }, - { url = "https://files.pythonhosted.org/packages/02/66/1c99884a0d44e8c2904d3c4ec302f995292d5dde892c3bf7685ac1930146/rpds_py-0.25.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:454601988aab2c6e8fd49e7634c65476b2b919647626208e376afcd22019eeb8", size = 592557, upload-time = "2025-05-21T12:45:21.362Z" }, - { url = "https://files.pythonhosted.org/packages/55/ae/4aeac84ebeffeac14abb05b3bb1d2f728d00adb55d3fb7b51c9fa772e760/rpds_py-0.25.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:1c0c434a53714358532d13539272db75a5ed9df75a4a090a753ac7173ec14e11", size = 558691, upload-time = "2025-05-21T12:45:23.084Z" }, - { url = "https://files.pythonhosted.org/packages/41/b3/728a08ff6f5e06fe3bb9af2e770e9d5fd20141af45cff8dfc62da4b2d0b3/rpds_py-0.25.1-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:f73ce1512e04fbe2bc97836e89830d6b4314c171587a99688082d090f934d20a", size = 231651, upload-time = "2025-05-21T12:45:24.72Z" }, - { url = "https://files.pythonhosted.org/packages/49/74/48f3df0715a585cbf5d34919c9c757a4c92c1a9eba059f2d334e72471f70/rpds_py-0.25.1-pp311-pypy311_pp73-macosx_10_12_x86_64.whl", hash = "sha256:ee86d81551ec68a5c25373c5643d343150cc54672b5e9a0cafc93c1870a53954", size = 374208, upload-time = "2025-05-21T12:45:26.306Z" }, - { url = "https://files.pythonhosted.org/packages/55/b0/9b01bb11ce01ec03d05e627249cc2c06039d6aa24ea5a22a39c312167c10/rpds_py-0.25.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:89c24300cd4a8e4a51e55c31a8ff3918e6651b241ee8876a42cc2b2a078533ba", size = 359262, upload-time = "2025-05-21T12:45:28.322Z" }, - { url = "https://files.pythonhosted.org/packages/a9/eb/5395621618f723ebd5116c53282052943a726dba111b49cd2071f785b665/rpds_py-0.25.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:771c16060ff4e79584dc48902a91ba79fd93eade3aa3a12d6d2a4aadaf7d542b", size = 387366, upload-time = "2025-05-21T12:45:30.42Z" }, - { url = "https://files.pythonhosted.org/packages/68/73/3d51442bdb246db619d75039a50ea1cf8b5b4ee250c3e5cd5c3af5981cd4/rpds_py-0.25.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:785ffacd0ee61c3e60bdfde93baa6d7c10d86f15655bd706c89da08068dc5038", size = 400759, upload-time = "2025-05-21T12:45:32.516Z" }, - { url = "https://files.pythonhosted.org/packages/b7/4c/3a32d5955d7e6cb117314597bc0f2224efc798428318b13073efe306512a/rpds_py-0.25.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2a40046a529cc15cef88ac5ab589f83f739e2d332cb4d7399072242400ed68c9", size = 523128, upload-time = "2025-05-21T12:45:34.396Z" }, - { url = "https://files.pythonhosted.org/packages/be/95/1ffccd3b0bb901ae60b1dd4b1be2ab98bb4eb834cd9b15199888f5702f7b/rpds_py-0.25.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:85fc223d9c76cabe5d0bff82214459189720dc135db45f9f66aa7cffbf9ff6c1", size = 411597, upload-time = "2025-05-21T12:45:36.164Z" }, - { url = "https://files.pythonhosted.org/packages/ef/6d/6e6cd310180689db8b0d2de7f7d1eabf3fb013f239e156ae0d5a1a85c27f/rpds_py-0.25.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b0be9965f93c222fb9b4cc254235b3b2b215796c03ef5ee64f995b1b69af0762", size = 388053, upload-time = "2025-05-21T12:45:38.45Z" }, - { url = "https://files.pythonhosted.org/packages/4a/87/ec4186b1fe6365ced6fa470960e68fc7804bafbe7c0cf5a36237aa240efa/rpds_py-0.25.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:8378fa4a940f3fb509c081e06cb7f7f2adae8cf46ef258b0e0ed7519facd573e", size = 421821, upload-time = "2025-05-21T12:45:40.732Z" }, - { url = "https://files.pythonhosted.org/packages/7a/60/84f821f6bf4e0e710acc5039d91f8f594fae0d93fc368704920d8971680d/rpds_py-0.25.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:33358883a4490287e67a2c391dfaea4d9359860281db3292b6886bf0be3d8692", size = 564534, upload-time = "2025-05-21T12:45:42.672Z" }, - { url = "https://files.pythonhosted.org/packages/41/3a/bc654eb15d3b38f9330fe0f545016ba154d89cdabc6177b0295910cd0ebe/rpds_py-0.25.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl", hash = "sha256:1d1fadd539298e70cac2f2cb36f5b8a65f742b9b9f1014dd4ea1f7785e2470bf", size = 592674, upload-time = "2025-05-21T12:45:44.533Z" }, - { url = "https://files.pythonhosted.org/packages/2e/ba/31239736f29e4dfc7a58a45955c5db852864c306131fd6320aea214d5437/rpds_py-0.25.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:9a46c2fb2545e21181445515960006e85d22025bd2fe6db23e76daec6eb689fe", size = 558781, upload-time = "2025-05-21T12:45:46.281Z" }, +sdist = { url = "https://files.pythonhosted.org/packages/30/76/48fd56d17c5bdbdf65609abbc67288728a98ed4c02919428d4f52d23b24b/roman_numerals_py-3.1.0.tar.gz", hash = "sha256:be4bf804f083a4ce001b5eb7e3c0862479d10f94c936f6c4e5f250aa5ff5bd2d", size = 9017, upload-time = "2025-02-22T07:34:54.333Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/53/97/d2cbbaa10c9b826af0e10fdf836e1bf344d9f0abb873ebc34d1f49642d3f/roman_numerals_py-3.1.0-py3-none-any.whl", hash = "sha256:9da2ad2fb670bcf24e81070ceb3be72f6c11c440d73bd579fbeca1e9f330954c", size = 7742, upload-time = "2025-02-22T07:34:52.422Z" }, +] + +[[package]] +name = "rpds-py" +version = "0.30.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/20/af/3f2f423103f1113b36230496629986e0ef7e199d2aa8392452b484b38ced/rpds_py-0.30.0.tar.gz", hash = "sha256:dd8ff7cf90014af0c0f787eea34794ebf6415242ee1d6fa91eaba725cc441e84", size = 69469, upload-time = "2025-11-30T20:24:38.837Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/4d/6e/f964e88b3d2abee2a82c1ac8366da848fce1c6d834dc2132c3fda3970290/rpds_py-0.30.0-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:a2bffea6a4ca9f01b3f8e548302470306689684e61602aa3d141e34da06cf425", size = 370157, upload-time = "2025-11-30T20:21:53.789Z" }, + { url = "https://files.pythonhosted.org/packages/94/ba/24e5ebb7c1c82e74c4e4f33b2112a5573ddc703915b13a073737b59b86e0/rpds_py-0.30.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:dc4f992dfe1e2bc3ebc7444f6c7051b4bc13cd8e33e43511e8ffd13bf407010d", size = 359676, upload-time = "2025-11-30T20:21:55.475Z" }, + { url = "https://files.pythonhosted.org/packages/84/86/04dbba1b087227747d64d80c3b74df946b986c57af0a9f0c98726d4d7a3b/rpds_py-0.30.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:422c3cb9856d80b09d30d2eb255d0754b23e090034e1deb4083f8004bd0761e4", size = 389938, upload-time = "2025-11-30T20:21:57.079Z" }, + { url = "https://files.pythonhosted.org/packages/42/bb/1463f0b1722b7f45431bdd468301991d1328b16cffe0b1c2918eba2c4eee/rpds_py-0.30.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:07ae8a593e1c3c6b82ca3292efbe73c30b61332fd612e05abee07c79359f292f", size = 402932, upload-time = "2025-11-30T20:21:58.47Z" }, + { url = "https://files.pythonhosted.org/packages/99/ee/2520700a5c1f2d76631f948b0736cdf9b0acb25abd0ca8e889b5c62ac2e3/rpds_py-0.30.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:12f90dd7557b6bd57f40abe7747e81e0c0b119bef015ea7726e69fe550e394a4", size = 525830, upload-time = "2025-11-30T20:21:59.699Z" }, + { url = "https://files.pythonhosted.org/packages/e0/ad/bd0331f740f5705cc555a5e17fdf334671262160270962e69a2bdef3bf76/rpds_py-0.30.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:99b47d6ad9a6da00bec6aabe5a6279ecd3c06a329d4aa4771034a21e335c3a97", size = 412033, upload-time = "2025-11-30T20:22:00.991Z" }, + { url = "https://files.pythonhosted.org/packages/f8/1e/372195d326549bb51f0ba0f2ecb9874579906b97e08880e7a65c3bef1a99/rpds_py-0.30.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:33f559f3104504506a44bb666b93a33f5d33133765b0c216a5bf2f1e1503af89", size = 390828, upload-time = "2025-11-30T20:22:02.723Z" }, + { url = "https://files.pythonhosted.org/packages/ab/2b/d88bb33294e3e0c76bc8f351a3721212713629ffca1700fa94979cb3eae8/rpds_py-0.30.0-cp311-cp311-manylinux_2_31_riscv64.whl", hash = "sha256:946fe926af6e44f3697abbc305ea168c2c31d3e3ef1058cf68f379bf0335a78d", size = 404683, upload-time = "2025-11-30T20:22:04.367Z" }, + { url = "https://files.pythonhosted.org/packages/50/32/c759a8d42bcb5289c1fac697cd92f6fe01a018dd937e62ae77e0e7f15702/rpds_py-0.30.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:495aeca4b93d465efde585977365187149e75383ad2684f81519f504f5c13038", size = 421583, upload-time = "2025-11-30T20:22:05.814Z" }, + { url = "https://files.pythonhosted.org/packages/2b/81/e729761dbd55ddf5d84ec4ff1f47857f4374b0f19bdabfcf929164da3e24/rpds_py-0.30.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d9a0ca5da0386dee0655b4ccdf46119df60e0f10da268d04fe7cc87886872ba7", size = 572496, upload-time = "2025-11-30T20:22:07.713Z" }, + { url = "https://files.pythonhosted.org/packages/14/f6/69066a924c3557c9c30baa6ec3a0aa07526305684c6f86c696b08860726c/rpds_py-0.30.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:8d6d1cc13664ec13c1b84241204ff3b12f9bb82464b8ad6e7a5d3486975c2eed", size = 598669, upload-time = "2025-11-30T20:22:09.312Z" }, + { url = "https://files.pythonhosted.org/packages/5f/48/905896b1eb8a05630d20333d1d8ffd162394127b74ce0b0784ae04498d32/rpds_py-0.30.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:3896fa1be39912cf0757753826bc8bdc8ca331a28a7c4ae46b7a21280b06bb85", size = 561011, upload-time = "2025-11-30T20:22:11.309Z" }, + { url = "https://files.pythonhosted.org/packages/22/16/cd3027c7e279d22e5eb431dd3c0fbc677bed58797fe7581e148f3f68818b/rpds_py-0.30.0-cp311-cp311-win32.whl", hash = "sha256:55f66022632205940f1827effeff17c4fa7ae1953d2b74a8581baaefb7d16f8c", size = 221406, upload-time = "2025-11-30T20:22:13.101Z" }, + { url = "https://files.pythonhosted.org/packages/fa/5b/e7b7aa136f28462b344e652ee010d4de26ee9fd16f1bfd5811f5153ccf89/rpds_py-0.30.0-cp311-cp311-win_amd64.whl", hash = "sha256:a51033ff701fca756439d641c0ad09a41d9242fa69121c7d8769604a0a629825", size = 236024, upload-time = "2025-11-30T20:22:14.853Z" }, + { url = "https://files.pythonhosted.org/packages/14/a6/364bba985e4c13658edb156640608f2c9e1d3ea3c81b27aa9d889fff0e31/rpds_py-0.30.0-cp311-cp311-win_arm64.whl", hash = "sha256:47b0ef6231c58f506ef0b74d44e330405caa8428e770fec25329ed2cb971a229", size = 229069, upload-time = "2025-11-30T20:22:16.577Z" }, + { url = "https://files.pythonhosted.org/packages/03/e7/98a2f4ac921d82f33e03f3835f5bf3a4a40aa1bfdc57975e74a97b2b4bdd/rpds_py-0.30.0-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:a161f20d9a43006833cd7068375a94d035714d73a172b681d8881820600abfad", size = 375086, upload-time = "2025-11-30T20:22:17.93Z" }, + { url = "https://files.pythonhosted.org/packages/4d/a1/bca7fd3d452b272e13335db8d6b0b3ecde0f90ad6f16f3328c6fb150c889/rpds_py-0.30.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:6abc8880d9d036ecaafe709079969f56e876fcf107f7a8e9920ba6d5a3878d05", size = 359053, upload-time = "2025-11-30T20:22:19.297Z" }, + { url = "https://files.pythonhosted.org/packages/65/1c/ae157e83a6357eceff62ba7e52113e3ec4834a84cfe07fa4b0757a7d105f/rpds_py-0.30.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ca28829ae5f5d569bb62a79512c842a03a12576375d5ece7d2cadf8abe96ec28", size = 390763, upload-time = "2025-11-30T20:22:21.661Z" }, + { url = "https://files.pythonhosted.org/packages/d4/36/eb2eb8515e2ad24c0bd43c3ee9cd74c33f7ca6430755ccdb240fd3144c44/rpds_py-0.30.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:a1010ed9524c73b94d15919ca4d41d8780980e1765babf85f9a2f90d247153dd", size = 408951, upload-time = "2025-11-30T20:22:23.408Z" }, + { url = "https://files.pythonhosted.org/packages/d6/65/ad8dc1784a331fabbd740ef6f71ce2198c7ed0890dab595adb9ea2d775a1/rpds_py-0.30.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f8d1736cfb49381ba528cd5baa46f82fdc65c06e843dab24dd70b63d09121b3f", size = 514622, upload-time = "2025-11-30T20:22:25.16Z" }, + { url = "https://files.pythonhosted.org/packages/63/8e/0cfa7ae158e15e143fe03993b5bcd743a59f541f5952e1546b1ac1b5fd45/rpds_py-0.30.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d948b135c4693daff7bc2dcfc4ec57237a29bd37e60c2fabf5aff2bbacf3e2f1", size = 414492, upload-time = "2025-11-30T20:22:26.505Z" }, + { url = "https://files.pythonhosted.org/packages/60/1b/6f8f29f3f995c7ffdde46a626ddccd7c63aefc0efae881dc13b6e5d5bb16/rpds_py-0.30.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:47f236970bccb2233267d89173d3ad2703cd36a0e2a6e92d0560d333871a3d23", size = 394080, upload-time = "2025-11-30T20:22:27.934Z" }, + { url = "https://files.pythonhosted.org/packages/6d/d5/a266341051a7a3ca2f4b750a3aa4abc986378431fc2da508c5034d081b70/rpds_py-0.30.0-cp312-cp312-manylinux_2_31_riscv64.whl", hash = "sha256:2e6ecb5a5bcacf59c3f912155044479af1d0b6681280048b338b28e364aca1f6", size = 408680, upload-time = "2025-11-30T20:22:29.341Z" }, + { url = "https://files.pythonhosted.org/packages/10/3b/71b725851df9ab7a7a4e33cf36d241933da66040d195a84781f49c50490c/rpds_py-0.30.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:a8fa71a2e078c527c3e9dc9fc5a98c9db40bcc8a92b4e8858e36d329f8684b51", size = 423589, upload-time = "2025-11-30T20:22:31.469Z" }, + { url = "https://files.pythonhosted.org/packages/00/2b/e59e58c544dc9bd8bd8384ecdb8ea91f6727f0e37a7131baeff8d6f51661/rpds_py-0.30.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:73c67f2db7bc334e518d097c6d1e6fed021bbc9b7d678d6cc433478365d1d5f5", size = 573289, upload-time = "2025-11-30T20:22:32.997Z" }, + { url = "https://files.pythonhosted.org/packages/da/3e/a18e6f5b460893172a7d6a680e86d3b6bc87a54c1f0b03446a3c8c7b588f/rpds_py-0.30.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:5ba103fb455be00f3b1c2076c9d4264bfcb037c976167a6047ed82f23153f02e", size = 599737, upload-time = "2025-11-30T20:22:34.419Z" }, + { url = "https://files.pythonhosted.org/packages/5c/e2/714694e4b87b85a18e2c243614974413c60aa107fd815b8cbc42b873d1d7/rpds_py-0.30.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:7cee9c752c0364588353e627da8a7e808a66873672bcb5f52890c33fd965b394", size = 563120, upload-time = "2025-11-30T20:22:35.903Z" }, + { url = "https://files.pythonhosted.org/packages/6f/ab/d5d5e3bcedb0a77f4f613706b750e50a5a3ba1c15ccd3665ecc636c968fd/rpds_py-0.30.0-cp312-cp312-win32.whl", hash = "sha256:1ab5b83dbcf55acc8b08fc62b796ef672c457b17dbd7820a11d6c52c06839bdf", size = 223782, upload-time = "2025-11-30T20:22:37.271Z" }, + { url = "https://files.pythonhosted.org/packages/39/3b/f786af9957306fdc38a74cef405b7b93180f481fb48453a114bb6465744a/rpds_py-0.30.0-cp312-cp312-win_amd64.whl", hash = "sha256:a090322ca841abd453d43456ac34db46e8b05fd9b3b4ac0c78bcde8b089f959b", size = 240463, upload-time = "2025-11-30T20:22:39.021Z" }, + { url = "https://files.pythonhosted.org/packages/f3/d2/b91dc748126c1559042cfe41990deb92c4ee3e2b415f6b5234969ffaf0cc/rpds_py-0.30.0-cp312-cp312-win_arm64.whl", hash = "sha256:669b1805bd639dd2989b281be2cfd951c6121b65e729d9b843e9639ef1fd555e", size = 230868, upload-time = "2025-11-30T20:22:40.493Z" }, + { url = "https://files.pythonhosted.org/packages/ed/dc/d61221eb88ff410de3c49143407f6f3147acf2538c86f2ab7ce65ae7d5f9/rpds_py-0.30.0-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:f83424d738204d9770830d35290ff3273fbb02b41f919870479fab14b9d303b2", size = 374887, upload-time = "2025-11-30T20:22:41.812Z" }, + { url = "https://files.pythonhosted.org/packages/fd/32/55fb50ae104061dbc564ef15cc43c013dc4a9f4527a1f4d99baddf56fe5f/rpds_py-0.30.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:e7536cd91353c5273434b4e003cbda89034d67e7710eab8761fd918ec6c69cf8", size = 358904, upload-time = "2025-11-30T20:22:43.479Z" }, + { url = "https://files.pythonhosted.org/packages/58/70/faed8186300e3b9bdd138d0273109784eea2396c68458ed580f885dfe7ad/rpds_py-0.30.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2771c6c15973347f50fece41fc447c054b7ac2ae0502388ce3b6738cd366e3d4", size = 389945, upload-time = "2025-11-30T20:22:44.819Z" }, + { url = "https://files.pythonhosted.org/packages/bd/a8/073cac3ed2c6387df38f71296d002ab43496a96b92c823e76f46b8af0543/rpds_py-0.30.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0a59119fc6e3f460315fe9d08149f8102aa322299deaa5cab5b40092345c2136", size = 407783, upload-time = "2025-11-30T20:22:46.103Z" }, + { url = "https://files.pythonhosted.org/packages/77/57/5999eb8c58671f1c11eba084115e77a8899d6e694d2a18f69f0ba471ec8b/rpds_py-0.30.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:76fec018282b4ead0364022e3c54b60bf368b9d926877957a8624b58419169b7", size = 515021, upload-time = "2025-11-30T20:22:47.458Z" }, + { url = "https://files.pythonhosted.org/packages/e0/af/5ab4833eadc36c0a8ed2bc5c0de0493c04f6c06de223170bd0798ff98ced/rpds_py-0.30.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:692bef75a5525db97318e8cd061542b5a79812d711ea03dbc1f6f8dbb0c5f0d2", size = 414589, upload-time = "2025-11-30T20:22:48.872Z" }, + { url = "https://files.pythonhosted.org/packages/b7/de/f7192e12b21b9e9a68a6d0f249b4af3fdcdff8418be0767a627564afa1f1/rpds_py-0.30.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9027da1ce107104c50c81383cae773ef5c24d296dd11c99e2629dbd7967a20c6", size = 394025, upload-time = "2025-11-30T20:22:50.196Z" }, + { url = "https://files.pythonhosted.org/packages/91/c4/fc70cd0249496493500e7cc2de87504f5aa6509de1e88623431fec76d4b6/rpds_py-0.30.0-cp313-cp313-manylinux_2_31_riscv64.whl", hash = "sha256:9cf69cdda1f5968a30a359aba2f7f9aa648a9ce4b580d6826437f2b291cfc86e", size = 408895, upload-time = "2025-11-30T20:22:51.87Z" }, + { url = "https://files.pythonhosted.org/packages/58/95/d9275b05ab96556fefff73a385813eb66032e4c99f411d0795372d9abcea/rpds_py-0.30.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:a4796a717bf12b9da9d3ad002519a86063dcac8988b030e405704ef7d74d2d9d", size = 422799, upload-time = "2025-11-30T20:22:53.341Z" }, + { url = "https://files.pythonhosted.org/packages/06/c1/3088fc04b6624eb12a57eb814f0d4997a44b0d208d6cace713033ff1a6ba/rpds_py-0.30.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:5d4c2aa7c50ad4728a094ebd5eb46c452e9cb7edbfdb18f9e1221f597a73e1e7", size = 572731, upload-time = "2025-11-30T20:22:54.778Z" }, + { url = "https://files.pythonhosted.org/packages/d8/42/c612a833183b39774e8ac8fecae81263a68b9583ee343db33ab571a7ce55/rpds_py-0.30.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:ba81a9203d07805435eb06f536d95a266c21e5b2dfbf6517748ca40c98d19e31", size = 599027, upload-time = "2025-11-30T20:22:56.212Z" }, + { url = "https://files.pythonhosted.org/packages/5f/60/525a50f45b01d70005403ae0e25f43c0384369ad24ffe46e8d9068b50086/rpds_py-0.30.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:945dccface01af02675628334f7cf49c2af4c1c904748efc5cf7bbdf0b579f95", size = 563020, upload-time = "2025-11-30T20:22:58.2Z" }, + { url = "https://files.pythonhosted.org/packages/0b/5d/47c4655e9bcd5ca907148535c10e7d489044243cc9941c16ed7cd53be91d/rpds_py-0.30.0-cp313-cp313-win32.whl", hash = "sha256:b40fb160a2db369a194cb27943582b38f79fc4887291417685f3ad693c5a1d5d", size = 223139, upload-time = "2025-11-30T20:23:00.209Z" }, + { url = "https://files.pythonhosted.org/packages/f2/e1/485132437d20aa4d3e1d8b3fb5a5e65aa8139f1e097080c2a8443201742c/rpds_py-0.30.0-cp313-cp313-win_amd64.whl", hash = "sha256:806f36b1b605e2d6a72716f321f20036b9489d29c51c91f4dd29a3e3afb73b15", size = 240224, upload-time = "2025-11-30T20:23:02.008Z" }, + { url = "https://files.pythonhosted.org/packages/24/95/ffd128ed1146a153d928617b0ef673960130be0009c77d8fbf0abe306713/rpds_py-0.30.0-cp313-cp313-win_arm64.whl", hash = "sha256:d96c2086587c7c30d44f31f42eae4eac89b60dabbac18c7669be3700f13c3ce1", size = 230645, upload-time = "2025-11-30T20:23:03.43Z" }, + { url = "https://files.pythonhosted.org/packages/ff/1b/b10de890a0def2a319a2626334a7f0ae388215eb60914dbac8a3bae54435/rpds_py-0.30.0-cp313-cp313t-macosx_10_12_x86_64.whl", hash = "sha256:eb0b93f2e5c2189ee831ee43f156ed34e2a89a78a66b98cadad955972548be5a", size = 364443, upload-time = "2025-11-30T20:23:04.878Z" }, + { url = "https://files.pythonhosted.org/packages/0d/bf/27e39f5971dc4f305a4fb9c672ca06f290f7c4e261c568f3dea16a410d47/rpds_py-0.30.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:922e10f31f303c7c920da8981051ff6d8c1a56207dbdf330d9047f6d30b70e5e", size = 353375, upload-time = "2025-11-30T20:23:06.342Z" }, + { url = "https://files.pythonhosted.org/packages/40/58/442ada3bba6e8e6615fc00483135c14a7538d2ffac30e2d933ccf6852232/rpds_py-0.30.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cdc62c8286ba9bf7f47befdcea13ea0e26bf294bda99758fd90535cbaf408000", size = 383850, upload-time = "2025-11-30T20:23:07.825Z" }, + { url = "https://files.pythonhosted.org/packages/14/14/f59b0127409a33c6ef6f5c1ebd5ad8e32d7861c9c7adfa9a624fc3889f6c/rpds_py-0.30.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:47f9a91efc418b54fb8190a6b4aa7813a23fb79c51f4bb84e418f5476c38b8db", size = 392812, upload-time = "2025-11-30T20:23:09.228Z" }, + { url = "https://files.pythonhosted.org/packages/b3/66/e0be3e162ac299b3a22527e8913767d869e6cc75c46bd844aa43fb81ab62/rpds_py-0.30.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1f3587eb9b17f3789ad50824084fa6f81921bbf9a795826570bda82cb3ed91f2", size = 517841, upload-time = "2025-11-30T20:23:11.186Z" }, + { url = "https://files.pythonhosted.org/packages/3d/55/fa3b9cf31d0c963ecf1ba777f7cf4b2a2c976795ac430d24a1f43d25a6ba/rpds_py-0.30.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:39c02563fc592411c2c61d26b6c5fe1e51eaa44a75aa2c8735ca88b0d9599daa", size = 408149, upload-time = "2025-11-30T20:23:12.864Z" }, + { url = "https://files.pythonhosted.org/packages/60/ca/780cf3b1a32b18c0f05c441958d3758f02544f1d613abf9488cd78876378/rpds_py-0.30.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:51a1234d8febafdfd33a42d97da7a43f5dcb120c1060e352a3fbc0c6d36e2083", size = 383843, upload-time = "2025-11-30T20:23:14.638Z" }, + { url = "https://files.pythonhosted.org/packages/82/86/d5f2e04f2aa6247c613da0c1dd87fcd08fa17107e858193566048a1e2f0a/rpds_py-0.30.0-cp313-cp313t-manylinux_2_31_riscv64.whl", hash = "sha256:eb2c4071ab598733724c08221091e8d80e89064cd472819285a9ab0f24bcedb9", size = 396507, upload-time = "2025-11-30T20:23:16.105Z" }, + { url = "https://files.pythonhosted.org/packages/4b/9a/453255d2f769fe44e07ea9785c8347edaf867f7026872e76c1ad9f7bed92/rpds_py-0.30.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:6bdfdb946967d816e6adf9a3d8201bfad269c67efe6cefd7093ef959683c8de0", size = 414949, upload-time = "2025-11-30T20:23:17.539Z" }, + { url = "https://files.pythonhosted.org/packages/a3/31/622a86cdc0c45d6df0e9ccb6becdba5074735e7033c20e401a6d9d0e2ca0/rpds_py-0.30.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:c77afbd5f5250bf27bf516c7c4a016813eb2d3e116139aed0096940c5982da94", size = 565790, upload-time = "2025-11-30T20:23:19.029Z" }, + { url = "https://files.pythonhosted.org/packages/1c/5d/15bbf0fb4a3f58a3b1c67855ec1efcc4ceaef4e86644665fff03e1b66d8d/rpds_py-0.30.0-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:61046904275472a76c8c90c9ccee9013d70a6d0f73eecefd38c1ae7c39045a08", size = 590217, upload-time = "2025-11-30T20:23:20.885Z" }, + { url = "https://files.pythonhosted.org/packages/6d/61/21b8c41f68e60c8cc3b2e25644f0e3681926020f11d06ab0b78e3c6bbff1/rpds_py-0.30.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:4c5f36a861bc4b7da6516dbdf302c55313afa09b81931e8280361a4f6c9a2d27", size = 555806, upload-time = "2025-11-30T20:23:22.488Z" }, + { url = "https://files.pythonhosted.org/packages/f9/39/7e067bb06c31de48de3eb200f9fc7c58982a4d3db44b07e73963e10d3be9/rpds_py-0.30.0-cp313-cp313t-win32.whl", hash = "sha256:3d4a69de7a3e50ffc214ae16d79d8fbb0922972da0356dcf4d0fdca2878559c6", size = 211341, upload-time = "2025-11-30T20:23:24.449Z" }, + { url = "https://files.pythonhosted.org/packages/0a/4d/222ef0b46443cf4cf46764d9c630f3fe4abaa7245be9417e56e9f52b8f65/rpds_py-0.30.0-cp313-cp313t-win_amd64.whl", hash = "sha256:f14fc5df50a716f7ece6a80b6c78bb35ea2ca47c499e422aa4463455dd96d56d", size = 225768, upload-time = "2025-11-30T20:23:25.908Z" }, + { url = "https://files.pythonhosted.org/packages/86/81/dad16382ebbd3d0e0328776d8fd7ca94220e4fa0798d1dc5e7da48cb3201/rpds_py-0.30.0-cp314-cp314-macosx_10_12_x86_64.whl", hash = "sha256:68f19c879420aa08f61203801423f6cd5ac5f0ac4ac82a2368a9fcd6a9a075e0", size = 362099, upload-time = "2025-11-30T20:23:27.316Z" }, + { url = "https://files.pythonhosted.org/packages/2b/60/19f7884db5d5603edf3c6bce35408f45ad3e97e10007df0e17dd57af18f8/rpds_py-0.30.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:ec7c4490c672c1a0389d319b3a9cfcd098dcdc4783991553c332a15acf7249be", size = 353192, upload-time = "2025-11-30T20:23:29.151Z" }, + { url = "https://files.pythonhosted.org/packages/bf/c4/76eb0e1e72d1a9c4703c69607cec123c29028bff28ce41588792417098ac/rpds_py-0.30.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f251c812357a3fed308d684a5079ddfb9d933860fc6de89f2b7ab00da481e65f", size = 384080, upload-time = "2025-11-30T20:23:30.785Z" }, + { url = "https://files.pythonhosted.org/packages/72/87/87ea665e92f3298d1b26d78814721dc39ed8d2c74b86e83348d6b48a6f31/rpds_py-0.30.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ac98b175585ecf4c0348fd7b29c3864bda53b805c773cbf7bfdaffc8070c976f", size = 394841, upload-time = "2025-11-30T20:23:32.209Z" }, + { url = "https://files.pythonhosted.org/packages/77/ad/7783a89ca0587c15dcbf139b4a8364a872a25f861bdb88ed99f9b0dec985/rpds_py-0.30.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3e62880792319dbeb7eb866547f2e35973289e7d5696c6e295476448f5b63c87", size = 516670, upload-time = "2025-11-30T20:23:33.742Z" }, + { url = "https://files.pythonhosted.org/packages/5b/3c/2882bdac942bd2172f3da574eab16f309ae10a3925644e969536553cb4ee/rpds_py-0.30.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4e7fc54e0900ab35d041b0601431b0a0eb495f0851a0639b6ef90f7741b39a18", size = 408005, upload-time = "2025-11-30T20:23:35.253Z" }, + { url = "https://files.pythonhosted.org/packages/ce/81/9a91c0111ce1758c92516a3e44776920b579d9a7c09b2b06b642d4de3f0f/rpds_py-0.30.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:47e77dc9822d3ad616c3d5759ea5631a75e5809d5a28707744ef79d7a1bcfcad", size = 382112, upload-time = "2025-11-30T20:23:36.842Z" }, + { url = "https://files.pythonhosted.org/packages/cf/8e/1da49d4a107027e5fbc64daeab96a0706361a2918da10cb41769244b805d/rpds_py-0.30.0-cp314-cp314-manylinux_2_31_riscv64.whl", hash = "sha256:b4dc1a6ff022ff85ecafef7979a2c6eb423430e05f1165d6688234e62ba99a07", size = 399049, upload-time = "2025-11-30T20:23:38.343Z" }, + { url = "https://files.pythonhosted.org/packages/df/5a/7ee239b1aa48a127570ec03becbb29c9d5a9eb092febbd1699d567cae859/rpds_py-0.30.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:4559c972db3a360808309e06a74628b95eaccbf961c335c8fe0d590cf587456f", size = 415661, upload-time = "2025-11-30T20:23:40.263Z" }, + { url = "https://files.pythonhosted.org/packages/70/ea/caa143cf6b772f823bc7929a45da1fa83569ee49b11d18d0ada7f5ee6fd6/rpds_py-0.30.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:0ed177ed9bded28f8deb6ab40c183cd1192aa0de40c12f38be4d59cd33cb5c65", size = 565606, upload-time = "2025-11-30T20:23:42.186Z" }, + { url = "https://files.pythonhosted.org/packages/64/91/ac20ba2d69303f961ad8cf55bf7dbdb4763f627291ba3d0d7d67333cced9/rpds_py-0.30.0-cp314-cp314-musllinux_1_2_i686.whl", hash = "sha256:ad1fa8db769b76ea911cb4e10f049d80bf518c104f15b3edb2371cc65375c46f", size = 591126, upload-time = "2025-11-30T20:23:44.086Z" }, + { url = "https://files.pythonhosted.org/packages/21/20/7ff5f3c8b00c8a95f75985128c26ba44503fb35b8e0259d812766ea966c7/rpds_py-0.30.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:46e83c697b1f1c72b50e5ee5adb4353eef7406fb3f2043d64c33f20ad1c2fc53", size = 553371, upload-time = "2025-11-30T20:23:46.004Z" }, + { url = "https://files.pythonhosted.org/packages/72/c7/81dadd7b27c8ee391c132a6b192111ca58d866577ce2d9b0ca157552cce0/rpds_py-0.30.0-cp314-cp314-win32.whl", hash = "sha256:ee454b2a007d57363c2dfd5b6ca4a5d7e2c518938f8ed3b706e37e5d470801ed", size = 215298, upload-time = "2025-11-30T20:23:47.696Z" }, + { url = "https://files.pythonhosted.org/packages/3e/d2/1aaac33287e8cfb07aab2e6b8ac1deca62f6f65411344f1433c55e6f3eb8/rpds_py-0.30.0-cp314-cp314-win_amd64.whl", hash = "sha256:95f0802447ac2d10bcc69f6dc28fe95fdf17940367b21d34e34c737870758950", size = 228604, upload-time = "2025-11-30T20:23:49.501Z" }, + { url = "https://files.pythonhosted.org/packages/e8/95/ab005315818cc519ad074cb7784dae60d939163108bd2b394e60dc7b5461/rpds_py-0.30.0-cp314-cp314-win_arm64.whl", hash = "sha256:613aa4771c99f03346e54c3f038e4cc574ac09a3ddfb0e8878487335e96dead6", size = 222391, upload-time = "2025-11-30T20:23:50.96Z" }, + { url = "https://files.pythonhosted.org/packages/9e/68/154fe0194d83b973cdedcdcc88947a2752411165930182ae41d983dcefa6/rpds_py-0.30.0-cp314-cp314t-macosx_10_12_x86_64.whl", hash = "sha256:7e6ecfcb62edfd632e56983964e6884851786443739dbfe3582947e87274f7cb", size = 364868, upload-time = "2025-11-30T20:23:52.494Z" }, + { url = "https://files.pythonhosted.org/packages/83/69/8bbc8b07ec854d92a8b75668c24d2abcb1719ebf890f5604c61c9369a16f/rpds_py-0.30.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:a1d0bc22a7cdc173fedebb73ef81e07faef93692b8c1ad3733b67e31e1b6e1b8", size = 353747, upload-time = "2025-11-30T20:23:54.036Z" }, + { url = "https://files.pythonhosted.org/packages/ab/00/ba2e50183dbd9abcce9497fa5149c62b4ff3e22d338a30d690f9af970561/rpds_py-0.30.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0d08f00679177226c4cb8c5265012eea897c8ca3b93f429e546600c971bcbae7", size = 383795, upload-time = "2025-11-30T20:23:55.556Z" }, + { url = "https://files.pythonhosted.org/packages/05/6f/86f0272b84926bcb0e4c972262f54223e8ecc556b3224d281e6598fc9268/rpds_py-0.30.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:5965af57d5848192c13534f90f9dd16464f3c37aaf166cc1da1cae1fd5a34898", size = 393330, upload-time = "2025-11-30T20:23:57.033Z" }, + { url = "https://files.pythonhosted.org/packages/cb/e9/0e02bb2e6dc63d212641da45df2b0bf29699d01715913e0d0f017ee29438/rpds_py-0.30.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9a4e86e34e9ab6b667c27f3211ca48f73dba7cd3d90f8d5b11be56e5dbc3fb4e", size = 518194, upload-time = "2025-11-30T20:23:58.637Z" }, + { url = "https://files.pythonhosted.org/packages/ee/ca/be7bca14cf21513bdf9c0606aba17d1f389ea2b6987035eb4f62bd923f25/rpds_py-0.30.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e5d3e6b26f2c785d65cc25ef1e5267ccbe1b069c5c21b8cc724efee290554419", size = 408340, upload-time = "2025-11-30T20:24:00.2Z" }, + { url = "https://files.pythonhosted.org/packages/c2/c7/736e00ebf39ed81d75544c0da6ef7b0998f8201b369acf842f9a90dc8fce/rpds_py-0.30.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:626a7433c34566535b6e56a1b39a7b17ba961e97ce3b80ec62e6f1312c025551", size = 383765, upload-time = "2025-11-30T20:24:01.759Z" }, + { url = "https://files.pythonhosted.org/packages/4a/3f/da50dfde9956aaf365c4adc9533b100008ed31aea635f2b8d7b627e25b49/rpds_py-0.30.0-cp314-cp314t-manylinux_2_31_riscv64.whl", hash = "sha256:acd7eb3f4471577b9b5a41baf02a978e8bdeb08b4b355273994f8b87032000a8", size = 396834, upload-time = "2025-11-30T20:24:03.687Z" }, + { url = "https://files.pythonhosted.org/packages/4e/00/34bcc2565b6020eab2623349efbdec810676ad571995911f1abdae62a3a0/rpds_py-0.30.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:fe5fa731a1fa8a0a56b0977413f8cacac1768dad38d16b3a296712709476fbd5", size = 415470, upload-time = "2025-11-30T20:24:05.232Z" }, + { url = "https://files.pythonhosted.org/packages/8c/28/882e72b5b3e6f718d5453bd4d0d9cf8df36fddeb4ddbbab17869d5868616/rpds_py-0.30.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:74a3243a411126362712ee1524dfc90c650a503502f135d54d1b352bd01f2404", size = 565630, upload-time = "2025-11-30T20:24:06.878Z" }, + { url = "https://files.pythonhosted.org/packages/3b/97/04a65539c17692de5b85c6e293520fd01317fd878ea1995f0367d4532fb1/rpds_py-0.30.0-cp314-cp314t-musllinux_1_2_i686.whl", hash = "sha256:3e8eeb0544f2eb0d2581774be4c3410356eba189529a6b3e36bbbf9696175856", size = 591148, upload-time = "2025-11-30T20:24:08.445Z" }, + { url = "https://files.pythonhosted.org/packages/85/70/92482ccffb96f5441aab93e26c4d66489eb599efdcf96fad90c14bbfb976/rpds_py-0.30.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:dbd936cde57abfee19ab3213cf9c26be06d60750e60a8e4dd85d1ab12c8b1f40", size = 556030, upload-time = "2025-11-30T20:24:10.956Z" }, + { url = "https://files.pythonhosted.org/packages/20/53/7c7e784abfa500a2b6b583b147ee4bb5a2b3747a9166bab52fec4b5b5e7d/rpds_py-0.30.0-cp314-cp314t-win32.whl", hash = "sha256:dc824125c72246d924f7f796b4f63c1e9dc810c7d9e2355864b3c3a73d59ade0", size = 211570, upload-time = "2025-11-30T20:24:12.735Z" }, + { url = "https://files.pythonhosted.org/packages/d0/02/fa464cdfbe6b26e0600b62c528b72d8608f5cc49f96b8d6e38c95d60c676/rpds_py-0.30.0-cp314-cp314t-win_amd64.whl", hash = "sha256:27f4b0e92de5bfbc6f86e43959e6edd1425c33b5e69aab0984a72047f2bcf1e3", size = 226532, upload-time = "2025-11-30T20:24:14.634Z" }, + { url = "https://files.pythonhosted.org/packages/69/71/3f34339ee70521864411f8b6992e7ab13ac30d8e4e3309e07c7361767d91/rpds_py-0.30.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl", hash = "sha256:c2262bdba0ad4fc6fb5545660673925c2d2a5d9e2e0fb603aad545427be0fc58", size = 372292, upload-time = "2025-11-30T20:24:16.537Z" }, + { url = "https://files.pythonhosted.org/packages/57/09/f183df9b8f2d66720d2ef71075c59f7e1b336bec7ee4c48f0a2b06857653/rpds_py-0.30.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:ee6af14263f25eedc3bb918a3c04245106a42dfd4f5c2285ea6f997b1fc3f89a", size = 362128, upload-time = "2025-11-30T20:24:18.086Z" }, + { url = "https://files.pythonhosted.org/packages/7a/68/5c2594e937253457342e078f0cc1ded3dd7b2ad59afdbf2d354869110a02/rpds_py-0.30.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3adbb8179ce342d235c31ab8ec511e66c73faa27a47e076ccc92421add53e2bb", size = 391542, upload-time = "2025-11-30T20:24:20.092Z" }, + { url = "https://files.pythonhosted.org/packages/49/5c/31ef1afd70b4b4fbdb2800249f34c57c64beb687495b10aec0365f53dfc4/rpds_py-0.30.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:250fa00e9543ac9b97ac258bd37367ff5256666122c2d0f2bc97577c60a1818c", size = 404004, upload-time = "2025-11-30T20:24:22.231Z" }, + { url = "https://files.pythonhosted.org/packages/e3/63/0cfbea38d05756f3440ce6534d51a491d26176ac045e2707adc99bb6e60a/rpds_py-0.30.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9854cf4f488b3d57b9aaeb105f06d78e5529d3145b1e4a41750167e8c213c6d3", size = 527063, upload-time = "2025-11-30T20:24:24.302Z" }, + { url = "https://files.pythonhosted.org/packages/42/e6/01e1f72a2456678b0f618fc9a1a13f882061690893c192fcad9f2926553a/rpds_py-0.30.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:993914b8e560023bc0a8bf742c5f303551992dcb85e247b1e5c7f4a7d145bda5", size = 413099, upload-time = "2025-11-30T20:24:25.916Z" }, + { url = "https://files.pythonhosted.org/packages/b8/25/8df56677f209003dcbb180765520c544525e3ef21ea72279c98b9aa7c7fb/rpds_py-0.30.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:58edca431fb9b29950807e301826586e5bbf24163677732429770a697ffe6738", size = 392177, upload-time = "2025-11-30T20:24:27.834Z" }, + { url = "https://files.pythonhosted.org/packages/4a/b4/0a771378c5f16f8115f796d1f437950158679bcd2a7c68cf251cfb00ed5b/rpds_py-0.30.0-pp311-pypy311_pp73-manylinux_2_31_riscv64.whl", hash = "sha256:dea5b552272a944763b34394d04577cf0f9bd013207bc32323b5a89a53cf9c2f", size = 406015, upload-time = "2025-11-30T20:24:29.457Z" }, + { url = "https://files.pythonhosted.org/packages/36/d8/456dbba0af75049dc6f63ff295a2f92766b9d521fa00de67a2bd6427d57a/rpds_py-0.30.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:ba3af48635eb83d03f6c9735dfb21785303e73d22ad03d489e88adae6eab8877", size = 423736, upload-time = "2025-11-30T20:24:31.22Z" }, + { url = "https://files.pythonhosted.org/packages/13/64/b4d76f227d5c45a7e0b796c674fd81b0a6c4fbd48dc29271857d8219571c/rpds_py-0.30.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:dff13836529b921e22f15cb099751209a60009731a68519630a24d61f0b1b30a", size = 573981, upload-time = "2025-11-30T20:24:32.934Z" }, + { url = "https://files.pythonhosted.org/packages/20/91/092bacadeda3edf92bf743cc96a7be133e13a39cdbfd7b5082e7ab638406/rpds_py-0.30.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl", hash = "sha256:1b151685b23929ab7beec71080a8889d4d6d9fa9a983d213f07121205d48e2c4", size = 599782, upload-time = "2025-11-30T20:24:35.169Z" }, + { url = "https://files.pythonhosted.org/packages/d1/b7/b95708304cd49b7b6f82fdd039f1748b66ec2b21d6a45180910802f1abf1/rpds_py-0.30.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:ac37f9f516c51e5753f27dfdef11a88330f04de2d564be3991384b2f3535d02e", size = 562191, upload-time = "2025-11-30T20:24:36.853Z" }, ] [[package]] @@ -12742,210 +11652,231 @@ wheels = [ [[package]] name = "ruamel-yaml" -version = "0.18.14" +version = "0.18.16" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "ruamel-yaml-clib", marker = "python_full_version < '3.14' and platform_python_implementation == 'CPython'" }, + { name = "ruamel-yaml-clib", marker = "(python_full_version < '3.14' and platform_python_implementation == 'CPython') or (python_full_version >= '3.14' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (python_full_version >= '3.14' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (python_full_version >= '3.14' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (python_full_version >= '3.14' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (python_full_version >= '3.14' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (python_full_version >= '3.14' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (python_full_version >= '3.14' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (python_full_version >= '3.14' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (platform_python_implementation != 'CPython' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (platform_python_implementation != 'CPython' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (platform_python_implementation != 'CPython' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (platform_python_implementation != 'CPython' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (platform_python_implementation != 'CPython' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (platform_python_implementation != 'CPython' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (platform_python_implementation != 'CPython' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (platform_python_implementation != 'CPython' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (platform_python_implementation != 'CPython' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/39/87/6da0df742a4684263261c253f00edd5829e6aca970fff69e75028cccc547/ruamel.yaml-0.18.14.tar.gz", hash = "sha256:7227b76aaec364df15936730efbf7d72b30c0b79b1d578bbb8e3dcb2d81f52b7", size = 145511, upload-time = "2025-06-09T08:51:09.828Z" } +sdist = { url = "https://files.pythonhosted.org/packages/9f/c7/ee630b29e04a672ecfc9b63227c87fd7a37eb67c1bf30fe95376437f897c/ruamel.yaml-0.18.16.tar.gz", hash = "sha256:a6e587512f3c998b2225d68aa1f35111c29fad14aed561a26e73fab729ec5e5a", size = 147269, upload-time = "2025-10-22T17:54:02.346Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/af/6d/6fe4805235e193aad4aaf979160dd1f3c487c57d48b810c816e6e842171b/ruamel.yaml-0.18.14-py3-none-any.whl", hash = "sha256:710ff198bb53da66718c7db27eec4fbcc9aa6ca7204e4c1df2f282b6fe5eb6b2", size = 118570, upload-time = "2025-06-09T08:51:06.348Z" }, + { url = "https://files.pythonhosted.org/packages/0f/73/bb1bc2529f852e7bf64a2dec885e89ff9f5cc7bbf6c9340eed30ff2c69c5/ruamel.yaml-0.18.16-py3-none-any.whl", hash = "sha256:048f26d64245bae57a4f9ef6feb5b552a386830ef7a826f235ffb804c59efbba", size = 119858, upload-time = "2025-10-22T17:53:59.012Z" }, ] [[package]] name = "ruamel-yaml-clib" -version = "0.2.12" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/20/84/80203abff8ea4993a87d823a5f632e4d92831ef75d404c9fc78d0176d2b5/ruamel.yaml.clib-0.2.12.tar.gz", hash = "sha256:6c8fbb13ec503f99a91901ab46e0b07ae7941cd527393187039aec586fdfd36f", size = 225315, upload-time = "2024-10-20T10:10:56.22Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/70/57/40a958e863e299f0c74ef32a3bde9f2d1ea8d69669368c0c502a0997f57f/ruamel.yaml.clib-0.2.12-cp310-cp310-macosx_13_0_arm64.whl", hash = "sha256:11f891336688faf5156a36293a9c362bdc7c88f03a8a027c2c1d8e0bcde998e5", size = 131301, upload-time = "2024-10-20T10:12:35.876Z" }, - { url = "https://files.pythonhosted.org/packages/98/a8/29a3eb437b12b95f50a6bcc3d7d7214301c6c529d8fdc227247fa84162b5/ruamel.yaml.clib-0.2.12-cp310-cp310-manylinux2014_aarch64.whl", hash = "sha256:a606ef75a60ecf3d924613892cc603b154178ee25abb3055db5062da811fd969", size = 633728, upload-time = "2024-10-20T10:12:37.858Z" }, - { url = "https://files.pythonhosted.org/packages/35/6d/ae05a87a3ad540259c3ad88d71275cbd1c0f2d30ae04c65dcbfb6dcd4b9f/ruamel.yaml.clib-0.2.12-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fd5415dded15c3822597455bc02bcd66e81ef8b7a48cb71a33628fc9fdde39df", size = 722230, upload-time = "2024-10-20T10:12:39.457Z" }, - { url = "https://files.pythonhosted.org/packages/7f/b7/20c6f3c0b656fe609675d69bc135c03aac9e3865912444be6339207b6648/ruamel.yaml.clib-0.2.12-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f66efbc1caa63c088dead1c4170d148eabc9b80d95fb75b6c92ac0aad2437d76", size = 686712, upload-time = "2024-10-20T10:12:41.119Z" }, - { url = "https://files.pythonhosted.org/packages/cd/11/d12dbf683471f888d354dac59593873c2b45feb193c5e3e0f2ebf85e68b9/ruamel.yaml.clib-0.2.12-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:22353049ba4181685023b25b5b51a574bce33e7f51c759371a7422dcae5402a6", size = 663936, upload-time = "2024-10-21T11:26:37.419Z" }, - { url = "https://files.pythonhosted.org/packages/72/14/4c268f5077db5c83f743ee1daeb236269fa8577133a5cfa49f8b382baf13/ruamel.yaml.clib-0.2.12-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:932205970b9f9991b34f55136be327501903f7c66830e9760a8ffb15b07f05cd", size = 696580, upload-time = "2024-10-21T11:26:39.503Z" }, - { url = "https://files.pythonhosted.org/packages/30/fc/8cd12f189c6405a4c1cf37bd633aa740a9538c8e40497c231072d0fef5cf/ruamel.yaml.clib-0.2.12-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:a52d48f4e7bf9005e8f0a89209bf9a73f7190ddf0489eee5eb51377385f59f2a", size = 663393, upload-time = "2024-12-11T19:58:13.873Z" }, - { url = "https://files.pythonhosted.org/packages/80/29/c0a017b704aaf3cbf704989785cd9c5d5b8ccec2dae6ac0c53833c84e677/ruamel.yaml.clib-0.2.12-cp310-cp310-win32.whl", hash = "sha256:3eac5a91891ceb88138c113f9db04f3cebdae277f5d44eaa3651a4f573e6a5da", size = 100326, upload-time = "2024-10-20T10:12:42.967Z" }, - { url = "https://files.pythonhosted.org/packages/3a/65/fa39d74db4e2d0cd252355732d966a460a41cd01c6353b820a0952432839/ruamel.yaml.clib-0.2.12-cp310-cp310-win_amd64.whl", hash = "sha256:ab007f2f5a87bd08ab1499bdf96f3d5c6ad4dcfa364884cb4549aa0154b13a28", size = 118079, upload-time = "2024-10-20T10:12:44.117Z" }, - { url = "https://files.pythonhosted.org/packages/fb/8f/683c6ad562f558cbc4f7c029abcd9599148c51c54b5ef0f24f2638da9fbb/ruamel.yaml.clib-0.2.12-cp311-cp311-macosx_13_0_arm64.whl", hash = "sha256:4a6679521a58256a90b0d89e03992c15144c5f3858f40d7c18886023d7943db6", size = 132224, upload-time = "2024-10-20T10:12:45.162Z" }, - { url = "https://files.pythonhosted.org/packages/3c/d2/b79b7d695e2f21da020bd44c782490578f300dd44f0a4c57a92575758a76/ruamel.yaml.clib-0.2.12-cp311-cp311-manylinux2014_aarch64.whl", hash = "sha256:d84318609196d6bd6da0edfa25cedfbabd8dbde5140a0a23af29ad4b8f91fb1e", size = 641480, upload-time = "2024-10-20T10:12:46.758Z" }, - { url = "https://files.pythonhosted.org/packages/68/6e/264c50ce2a31473a9fdbf4fa66ca9b2b17c7455b31ef585462343818bd6c/ruamel.yaml.clib-0.2.12-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bb43a269eb827806502c7c8efb7ae7e9e9d0573257a46e8e952f4d4caba4f31e", size = 739068, upload-time = "2024-10-20T10:12:48.605Z" }, - { url = "https://files.pythonhosted.org/packages/86/29/88c2567bc893c84d88b4c48027367c3562ae69121d568e8a3f3a8d363f4d/ruamel.yaml.clib-0.2.12-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:811ea1594b8a0fb466172c384267a4e5e367298af6b228931f273b111f17ef52", size = 703012, upload-time = "2024-10-20T10:12:51.124Z" }, - { url = "https://files.pythonhosted.org/packages/11/46/879763c619b5470820f0cd6ca97d134771e502776bc2b844d2adb6e37753/ruamel.yaml.clib-0.2.12-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:cf12567a7b565cbf65d438dec6cfbe2917d3c1bdddfce84a9930b7d35ea59642", size = 704352, upload-time = "2024-10-21T11:26:41.438Z" }, - { url = "https://files.pythonhosted.org/packages/02/80/ece7e6034256a4186bbe50dee28cd032d816974941a6abf6a9d65e4228a7/ruamel.yaml.clib-0.2.12-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:7dd5adc8b930b12c8fc5b99e2d535a09889941aa0d0bd06f4749e9a9397c71d2", size = 737344, upload-time = "2024-10-21T11:26:43.62Z" }, - { url = "https://files.pythonhosted.org/packages/f0/ca/e4106ac7e80efbabdf4bf91d3d32fc424e41418458251712f5672eada9ce/ruamel.yaml.clib-0.2.12-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:1492a6051dab8d912fc2adeef0e8c72216b24d57bd896ea607cb90bb0c4981d3", size = 714498, upload-time = "2024-12-11T19:58:15.592Z" }, - { url = "https://files.pythonhosted.org/packages/67/58/b1f60a1d591b771298ffa0428237afb092c7f29ae23bad93420b1eb10703/ruamel.yaml.clib-0.2.12-cp311-cp311-win32.whl", hash = "sha256:bd0a08f0bab19093c54e18a14a10b4322e1eacc5217056f3c063bd2f59853ce4", size = 100205, upload-time = "2024-10-20T10:12:52.865Z" }, - { url = "https://files.pythonhosted.org/packages/b4/4f/b52f634c9548a9291a70dfce26ca7ebce388235c93588a1068028ea23fcc/ruamel.yaml.clib-0.2.12-cp311-cp311-win_amd64.whl", hash = "sha256:a274fb2cb086c7a3dea4322ec27f4cb5cc4b6298adb583ab0e211a4682f241eb", size = 118185, upload-time = "2024-10-20T10:12:54.652Z" }, - { url = "https://files.pythonhosted.org/packages/48/41/e7a405afbdc26af961678474a55373e1b323605a4f5e2ddd4a80ea80f628/ruamel.yaml.clib-0.2.12-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:20b0f8dc160ba83b6dcc0e256846e1a02d044e13f7ea74a3d1d56ede4e48c632", size = 133433, upload-time = "2024-10-20T10:12:55.657Z" }, - { url = "https://files.pythonhosted.org/packages/ec/b0/b850385604334c2ce90e3ee1013bd911aedf058a934905863a6ea95e9eb4/ruamel.yaml.clib-0.2.12-cp312-cp312-manylinux2014_aarch64.whl", hash = "sha256:943f32bc9dedb3abff9879edc134901df92cfce2c3d5c9348f172f62eb2d771d", size = 647362, upload-time = "2024-10-20T10:12:57.155Z" }, - { url = "https://files.pythonhosted.org/packages/44/d0/3f68a86e006448fb6c005aee66565b9eb89014a70c491d70c08de597f8e4/ruamel.yaml.clib-0.2.12-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:95c3829bb364fdb8e0332c9931ecf57d9be3519241323c5274bd82f709cebc0c", size = 754118, upload-time = "2024-10-20T10:12:58.501Z" }, - { url = "https://files.pythonhosted.org/packages/52/a9/d39f3c5ada0a3bb2870d7db41901125dbe2434fa4f12ca8c5b83a42d7c53/ruamel.yaml.clib-0.2.12-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:749c16fcc4a2b09f28843cda5a193e0283e47454b63ec4b81eaa2242f50e4ccd", size = 706497, upload-time = "2024-10-20T10:13:00.211Z" }, - { url = "https://files.pythonhosted.org/packages/b0/fa/097e38135dadd9ac25aecf2a54be17ddf6e4c23e43d538492a90ab3d71c6/ruamel.yaml.clib-0.2.12-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:bf165fef1f223beae7333275156ab2022cffe255dcc51c27f066b4370da81e31", size = 698042, upload-time = "2024-10-21T11:26:46.038Z" }, - { url = "https://files.pythonhosted.org/packages/ec/d5/a659ca6f503b9379b930f13bc6b130c9f176469b73b9834296822a83a132/ruamel.yaml.clib-0.2.12-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:32621c177bbf782ca5a18ba4d7af0f1082a3f6e517ac2a18b3974d4edf349680", size = 745831, upload-time = "2024-10-21T11:26:47.487Z" }, - { url = "https://files.pythonhosted.org/packages/db/5d/36619b61ffa2429eeaefaab4f3374666adf36ad8ac6330d855848d7d36fd/ruamel.yaml.clib-0.2.12-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:b82a7c94a498853aa0b272fd5bc67f29008da798d4f93a2f9f289feb8426a58d", size = 715692, upload-time = "2024-12-11T19:58:17.252Z" }, - { url = "https://files.pythonhosted.org/packages/b1/82/85cb92f15a4231c89b95dfe08b09eb6adca929ef7df7e17ab59902b6f589/ruamel.yaml.clib-0.2.12-cp312-cp312-win32.whl", hash = "sha256:e8c4ebfcfd57177b572e2040777b8abc537cdef58a2120e830124946aa9b42c5", size = 98777, upload-time = "2024-10-20T10:13:01.395Z" }, - { url = "https://files.pythonhosted.org/packages/d7/8f/c3654f6f1ddb75daf3922c3d8fc6005b1ab56671ad56ffb874d908bfa668/ruamel.yaml.clib-0.2.12-cp312-cp312-win_amd64.whl", hash = "sha256:0467c5965282c62203273b838ae77c0d29d7638c8a4e3a1c8bdd3602c10904e4", size = 115523, upload-time = "2024-10-20T10:13:02.768Z" }, - { url = "https://files.pythonhosted.org/packages/29/00/4864119668d71a5fa45678f380b5923ff410701565821925c69780356ffa/ruamel.yaml.clib-0.2.12-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:4c8c5d82f50bb53986a5e02d1b3092b03622c02c2eb78e29bec33fd9593bae1a", size = 132011, upload-time = "2024-10-20T10:13:04.377Z" }, - { url = "https://files.pythonhosted.org/packages/7f/5e/212f473a93ae78c669ffa0cb051e3fee1139cb2d385d2ae1653d64281507/ruamel.yaml.clib-0.2.12-cp313-cp313-manylinux2014_aarch64.whl", hash = "sha256:e7e3736715fbf53e9be2a79eb4db68e4ed857017344d697e8b9749444ae57475", size = 642488, upload-time = "2024-10-20T10:13:05.906Z" }, - { url = "https://files.pythonhosted.org/packages/1f/8f/ecfbe2123ade605c49ef769788f79c38ddb1c8fa81e01f4dbf5cf1a44b16/ruamel.yaml.clib-0.2.12-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0b7e75b4965e1d4690e93021adfcecccbca7d61c7bddd8e22406ef2ff20d74ef", size = 745066, upload-time = "2024-10-20T10:13:07.26Z" }, - { url = "https://files.pythonhosted.org/packages/e2/a9/28f60726d29dfc01b8decdb385de4ced2ced9faeb37a847bd5cf26836815/ruamel.yaml.clib-0.2.12-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:96777d473c05ee3e5e3c3e999f5d23c6f4ec5b0c38c098b3a5229085f74236c6", size = 701785, upload-time = "2024-10-20T10:13:08.504Z" }, - { url = "https://files.pythonhosted.org/packages/84/7e/8e7ec45920daa7f76046578e4f677a3215fe8f18ee30a9cb7627a19d9b4c/ruamel.yaml.clib-0.2.12-cp313-cp313-musllinux_1_1_i686.whl", hash = "sha256:3bc2a80e6420ca8b7d3590791e2dfc709c88ab9152c00eeb511c9875ce5778bf", size = 693017, upload-time = "2024-10-21T11:26:48.866Z" }, - { url = "https://files.pythonhosted.org/packages/c5/b3/d650eaade4ca225f02a648321e1ab835b9d361c60d51150bac49063b83fa/ruamel.yaml.clib-0.2.12-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:e188d2699864c11c36cdfdada94d781fd5d6b0071cd9c427bceb08ad3d7c70e1", size = 741270, upload-time = "2024-10-21T11:26:50.213Z" }, - { url = "https://files.pythonhosted.org/packages/87/b8/01c29b924dcbbed75cc45b30c30d565d763b9c4d540545a0eeecffb8f09c/ruamel.yaml.clib-0.2.12-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:4f6f3eac23941b32afccc23081e1f50612bdbe4e982012ef4f5797986828cd01", size = 709059, upload-time = "2024-12-11T19:58:18.846Z" }, - { url = "https://files.pythonhosted.org/packages/30/8c/ed73f047a73638257aa9377ad356bea4d96125b305c34a28766f4445cc0f/ruamel.yaml.clib-0.2.12-cp313-cp313-win32.whl", hash = "sha256:6442cb36270b3afb1b4951f060eccca1ce49f3d087ca1ca4563a6eb479cb3de6", size = 98583, upload-time = "2024-10-20T10:13:09.658Z" }, - { url = "https://files.pythonhosted.org/packages/b0/85/e8e751d8791564dd333d5d9a4eab0a7a115f7e349595417fd50ecae3395c/ruamel.yaml.clib-0.2.12-cp313-cp313-win_amd64.whl", hash = "sha256:e5b8daf27af0b90da7bb903a876477a9e6d7270be6146906b276605997c7e9a3", size = 115190, upload-time = "2024-10-20T10:13:10.66Z" }, +version = "0.2.15" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ea/97/60fda20e2fb54b83a61ae14648b0817c8f5d84a3821e40bfbdae1437026a/ruamel_yaml_clib-0.2.15.tar.gz", hash = "sha256:46e4cc8c43ef6a94885f72512094e482114a8a706d3c555a34ed4b0d20200600", size = 225794, upload-time = "2025-11-16T16:12:59.761Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2c/80/8ce7b9af532aa94dd83360f01ce4716264db73de6bc8efd22c32341f6658/ruamel_yaml_clib-0.2.15-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c583229f336682b7212a43d2fa32c30e643d3076178fb9f7a6a14dde85a2d8bd", size = 147998, upload-time = "2025-11-16T16:13:13.241Z" }, + { url = "https://files.pythonhosted.org/packages/53/09/de9d3f6b6701ced5f276d082ad0f980edf08ca67114523d1b9264cd5e2e0/ruamel_yaml_clib-0.2.15-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:56ea19c157ed8c74b6be51b5fa1c3aff6e289a041575f0556f66e5fb848bb137", size = 132743, upload-time = "2025-11-16T16:13:14.265Z" }, + { url = "https://files.pythonhosted.org/packages/0e/f7/73a9b517571e214fe5c246698ff3ed232f1ef863c8ae1667486625ec688a/ruamel_yaml_clib-0.2.15-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:5fea0932358e18293407feb921d4f4457db837b67ec1837f87074667449f9401", size = 731459, upload-time = "2025-11-16T20:22:44.338Z" }, + { url = "https://files.pythonhosted.org/packages/9b/a2/0dc0013169800f1c331a6f55b1282c1f4492a6d32660a0cf7b89e6684919/ruamel_yaml_clib-0.2.15-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ef71831bd61fbdb7aa0399d5c4da06bea37107ab5c79ff884cc07f2450910262", size = 749289, upload-time = "2025-11-16T16:13:15.633Z" }, + { url = "https://files.pythonhosted.org/packages/aa/ed/3fb20a1a96b8dc645d88c4072df481fe06e0289e4d528ebbdcc044ebc8b3/ruamel_yaml_clib-0.2.15-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:617d35dc765715fa86f8c3ccdae1e4229055832c452d4ec20856136acc75053f", size = 777630, upload-time = "2025-11-16T16:13:16.898Z" }, + { url = "https://files.pythonhosted.org/packages/60/50/6842f4628bc98b7aa4733ab2378346e1441e150935ad3b9f3c3c429d9408/ruamel_yaml_clib-0.2.15-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:1b45498cc81a4724a2d42273d6cfc243c0547ad7c6b87b4f774cb7bcc131c98d", size = 744368, upload-time = "2025-11-16T16:13:18.117Z" }, + { url = "https://files.pythonhosted.org/packages/d3/b0/128ae8e19a7d794c2e36130a72b3bb650ce1dd13fb7def6cf10656437dcf/ruamel_yaml_clib-0.2.15-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:def5663361f6771b18646620fca12968aae730132e104688766cf8a3b1d65922", size = 745233, upload-time = "2025-11-16T20:22:45.833Z" }, + { url = "https://files.pythonhosted.org/packages/75/05/91130633602d6ba7ce3e07f8fc865b40d2a09efd4751c740df89eed5caf9/ruamel_yaml_clib-0.2.15-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:014181cdec565c8745b7cbc4de3bf2cc8ced05183d986e6d1200168e5bb59490", size = 770963, upload-time = "2025-11-16T16:13:19.344Z" }, + { url = "https://files.pythonhosted.org/packages/fd/4b/fd4542e7f33d7d1bc64cc9ac9ba574ce8cf145569d21f5f20133336cdc8c/ruamel_yaml_clib-0.2.15-cp311-cp311-win32.whl", hash = "sha256:d290eda8f6ada19e1771b54e5706b8f9807e6bb08e873900d5ba114ced13e02c", size = 102640, upload-time = "2025-11-16T16:13:20.498Z" }, + { url = "https://files.pythonhosted.org/packages/bb/eb/00ff6032c19c7537371e3119287999570867a0eafb0154fccc80e74bf57a/ruamel_yaml_clib-0.2.15-cp311-cp311-win_amd64.whl", hash = "sha256:bdc06ad71173b915167702f55d0f3f027fc61abd975bd308a0968c02db4a4c3e", size = 121996, upload-time = "2025-11-16T16:13:21.855Z" }, + { url = "https://files.pythonhosted.org/packages/72/4b/5fde11a0722d676e469d3d6f78c6a17591b9c7e0072ca359801c4bd17eee/ruamel_yaml_clib-0.2.15-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:cb15a2e2a90c8475df45c0949793af1ff413acfb0a716b8b94e488ea95ce7cff", size = 149088, upload-time = "2025-11-16T16:13:22.836Z" }, + { url = "https://files.pythonhosted.org/packages/85/82/4d08ac65ecf0ef3b046421985e66301a242804eb9a62c93ca3437dc94ee0/ruamel_yaml_clib-0.2.15-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:64da03cbe93c1e91af133f5bec37fd24d0d4ba2418eaf970d7166b0a26a148a2", size = 134553, upload-time = "2025-11-16T16:13:24.151Z" }, + { url = "https://files.pythonhosted.org/packages/b9/cb/22366d68b280e281a932403b76da7a988108287adff2bfa5ce881200107a/ruamel_yaml_clib-0.2.15-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:f6d3655e95a80325b84c4e14c080b2470fe4f33b6846f288379ce36154993fb1", size = 737468, upload-time = "2025-11-16T20:22:47.335Z" }, + { url = "https://files.pythonhosted.org/packages/71/73/81230babf8c9e33770d43ed9056f603f6f5f9665aea4177a2c30ae48e3f3/ruamel_yaml_clib-0.2.15-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:71845d377c7a47afc6592aacfea738cc8a7e876d586dfba814501d8c53c1ba60", size = 753349, upload-time = "2025-11-16T16:13:26.269Z" }, + { url = "https://files.pythonhosted.org/packages/61/62/150c841f24cda9e30f588ef396ed83f64cfdc13b92d2f925bb96df337ba9/ruamel_yaml_clib-0.2.15-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:11e5499db1ccbc7f4b41f0565e4f799d863ea720e01d3e99fa0b7b5fcd7802c9", size = 788211, upload-time = "2025-11-16T16:13:27.441Z" }, + { url = "https://files.pythonhosted.org/packages/30/93/e79bd9cbecc3267499d9ead919bd61f7ddf55d793fb5ef2b1d7d92444f35/ruamel_yaml_clib-0.2.15-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4b293a37dc97e2b1e8a1aec62792d1e52027087c8eea4fc7b5abd2bdafdd6642", size = 743203, upload-time = "2025-11-16T16:13:28.671Z" }, + { url = "https://files.pythonhosted.org/packages/8d/06/1eb640065c3a27ce92d76157f8efddb184bd484ed2639b712396a20d6dce/ruamel_yaml_clib-0.2.15-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:512571ad41bba04eac7268fe33f7f4742210ca26a81fe0c75357fa682636c690", size = 747292, upload-time = "2025-11-16T20:22:48.584Z" }, + { url = "https://files.pythonhosted.org/packages/a5/21/ee353e882350beab65fcc47a91b6bdc512cace4358ee327af2962892ff16/ruamel_yaml_clib-0.2.15-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:e5e9f630c73a490b758bf14d859a39f375e6999aea5ddd2e2e9da89b9953486a", size = 771624, upload-time = "2025-11-16T16:13:29.853Z" }, + { url = "https://files.pythonhosted.org/packages/57/34/cc1b94057aa867c963ecf9ea92ac59198ec2ee3a8d22a126af0b4d4be712/ruamel_yaml_clib-0.2.15-cp312-cp312-win32.whl", hash = "sha256:f4421ab780c37210a07d138e56dd4b51f8642187cdfb433eb687fe8c11de0144", size = 100342, upload-time = "2025-11-16T16:13:31.067Z" }, + { url = "https://files.pythonhosted.org/packages/b3/e5/8925a4208f131b218f9a7e459c0d6fcac8324ae35da269cb437894576366/ruamel_yaml_clib-0.2.15-cp312-cp312-win_amd64.whl", hash = "sha256:2b216904750889133d9222b7b873c199d48ecbb12912aca78970f84a5aa1a4bc", size = 119013, upload-time = "2025-11-16T16:13:32.164Z" }, + { url = "https://files.pythonhosted.org/packages/17/5e/2f970ce4c573dc30c2f95825f2691c96d55560268ddc67603dc6ea2dd08e/ruamel_yaml_clib-0.2.15-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:4dcec721fddbb62e60c2801ba08c87010bd6b700054a09998c4d09c08147b8fb", size = 147450, upload-time = "2025-11-16T16:13:33.542Z" }, + { url = "https://files.pythonhosted.org/packages/d6/03/a1baa5b94f71383913f21b96172fb3a2eb5576a4637729adbf7cd9f797f8/ruamel_yaml_clib-0.2.15-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:65f48245279f9bb301d1276f9679b82e4c080a1ae25e679f682ac62446fac471", size = 133139, upload-time = "2025-11-16T16:13:34.587Z" }, + { url = "https://files.pythonhosted.org/packages/dc/19/40d676802390f85784235a05788fd28940923382e3f8b943d25febbb98b7/ruamel_yaml_clib-0.2.15-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:46895c17ead5e22bea5e576f1db7e41cb273e8d062c04a6a49013d9f60996c25", size = 731474, upload-time = "2025-11-16T20:22:49.934Z" }, + { url = "https://files.pythonhosted.org/packages/ce/bb/6ef5abfa43b48dd55c30d53e997f8f978722f02add61efba31380d73e42e/ruamel_yaml_clib-0.2.15-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:3eb199178b08956e5be6288ee0b05b2fb0b5c1f309725ad25d9c6ea7e27f962a", size = 748047, upload-time = "2025-11-16T16:13:35.633Z" }, + { url = "https://files.pythonhosted.org/packages/ff/5d/e4f84c9c448613e12bd62e90b23aa127ea4c46b697f3d760acc32cb94f25/ruamel_yaml_clib-0.2.15-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:4d1032919280ebc04a80e4fb1e93f7a738129857eaec9448310e638c8bccefcf", size = 782129, upload-time = "2025-11-16T16:13:36.781Z" }, + { url = "https://files.pythonhosted.org/packages/de/4b/e98086e88f76c00c88a6bcf15eae27a1454f661a9eb72b111e6bbb69024d/ruamel_yaml_clib-0.2.15-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:ab0df0648d86a7ecbd9c632e8f8d6b21bb21b5fc9d9e095c796cacf32a728d2d", size = 736848, upload-time = "2025-11-16T16:13:37.952Z" }, + { url = "https://files.pythonhosted.org/packages/0c/5c/5964fcd1fd9acc53b7a3a5d9a05ea4f95ead9495d980003a557deb9769c7/ruamel_yaml_clib-0.2.15-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:331fb180858dd8534f0e61aa243b944f25e73a4dae9962bd44c46d1761126bbf", size = 741630, upload-time = "2025-11-16T20:22:51.718Z" }, + { url = "https://files.pythonhosted.org/packages/07/1e/99660f5a30fceb58494598e7d15df883a07292346ef5696f0c0ae5dee8c6/ruamel_yaml_clib-0.2.15-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:fd4c928ddf6bce586285daa6d90680b9c291cfd045fc40aad34e445d57b1bf51", size = 766619, upload-time = "2025-11-16T16:13:39.178Z" }, + { url = "https://files.pythonhosted.org/packages/36/2f/fa0344a9327b58b54970e56a27b32416ffbcfe4dcc0700605516708579b2/ruamel_yaml_clib-0.2.15-cp313-cp313-win32.whl", hash = "sha256:bf0846d629e160223805db9fe8cc7aec16aaa11a07310c50c8c7164efa440aec", size = 100171, upload-time = "2025-11-16T16:13:40.456Z" }, + { url = "https://files.pythonhosted.org/packages/06/c4/c124fbcef0684fcf3c9b72374c2a8c35c94464d8694c50f37eef27f5a145/ruamel_yaml_clib-0.2.15-cp313-cp313-win_amd64.whl", hash = "sha256:45702dfbea1420ba3450bb3dd9a80b33f0badd57539c6aac09f42584303e0db6", size = 118845, upload-time = "2025-11-16T16:13:41.481Z" }, + { url = "https://files.pythonhosted.org/packages/3e/bd/ab8459c8bb759c14a146990bf07f632c1cbec0910d4853feeee4be2ab8bb/ruamel_yaml_clib-0.2.15-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:753faf20b3a5906faf1fc50e4ddb8c074cb9b251e00b14c18b28492f933ac8ef", size = 147248, upload-time = "2025-11-16T16:13:42.872Z" }, + { url = "https://files.pythonhosted.org/packages/69/f2/c4cec0a30f1955510fde498aac451d2e52b24afdbcb00204d3a951b772c3/ruamel_yaml_clib-0.2.15-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:480894aee0b29752560a9de46c0e5f84a82602f2bc5c6cde8db9a345319acfdf", size = 133764, upload-time = "2025-11-16T16:13:43.932Z" }, + { url = "https://files.pythonhosted.org/packages/82/c7/2480d062281385a2ea4f7cc9476712446e0c548cd74090bff92b4b49e898/ruamel_yaml_clib-0.2.15-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:4d3b58ab2454b4747442ac76fab66739c72b1e2bb9bd173d7694b9f9dbc9c000", size = 730537, upload-time = "2025-11-16T20:22:52.918Z" }, + { url = "https://files.pythonhosted.org/packages/75/08/e365ee305367559f57ba6179d836ecc3d31c7d3fdff2a40ebf6c32823a1f/ruamel_yaml_clib-0.2.15-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:bfd309b316228acecfa30670c3887dcedf9b7a44ea39e2101e75d2654522acd4", size = 746944, upload-time = "2025-11-16T16:13:45.338Z" }, + { url = "https://files.pythonhosted.org/packages/a1/5c/8b56b08db91e569d0a4fbfa3e492ed2026081bdd7e892f63ba1c88a2f548/ruamel_yaml_clib-0.2.15-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:2812ff359ec1f30129b62372e5f22a52936fac13d5d21e70373dbca5d64bb97c", size = 778249, upload-time = "2025-11-16T16:13:46.871Z" }, + { url = "https://files.pythonhosted.org/packages/6a/1d/70dbda370bd0e1a92942754c873bd28f513da6198127d1736fa98bb2a16f/ruamel_yaml_clib-0.2.15-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:7e74ea87307303ba91073b63e67f2c667e93f05a8c63079ee5b7a5c8d0d7b043", size = 737140, upload-time = "2025-11-16T16:13:48.349Z" }, + { url = "https://files.pythonhosted.org/packages/5b/87/822d95874216922e1120afb9d3fafa795a18fdd0c444f5c4c382f6dac761/ruamel_yaml_clib-0.2.15-cp314-cp314-musllinux_1_2_i686.whl", hash = "sha256:713cd68af9dfbe0bb588e144a61aad8dcc00ef92a82d2e87183ca662d242f524", size = 741070, upload-time = "2025-11-16T20:22:54.151Z" }, + { url = "https://files.pythonhosted.org/packages/b9/17/4e01a602693b572149f92c983c1f25bd608df02c3f5cf50fd1f94e124a59/ruamel_yaml_clib-0.2.15-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:542d77b72786a35563f97069b9379ce762944e67055bea293480f7734b2c7e5e", size = 765882, upload-time = "2025-11-16T16:13:49.526Z" }, + { url = "https://files.pythonhosted.org/packages/9f/17/7999399081d39ebb79e807314de6b611e1d1374458924eb2a489c01fc5ad/ruamel_yaml_clib-0.2.15-cp314-cp314-win32.whl", hash = "sha256:424ead8cef3939d690c4b5c85ef5b52155a231ff8b252961b6516ed7cf05f6aa", size = 102567, upload-time = "2025-11-16T16:13:50.78Z" }, + { url = "https://files.pythonhosted.org/packages/d2/67/be582a7370fdc9e6846c5be4888a530dcadd055eef5b932e0e85c33c7d73/ruamel_yaml_clib-0.2.15-cp314-cp314-win_amd64.whl", hash = "sha256:ac9b8d5fa4bb7fd2917ab5027f60d4234345fd366fe39aa711d5dca090aa1467", size = 122847, upload-time = "2025-11-16T16:13:51.807Z" }, ] [[package]] name = "ruff" -version = "0.11.13" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/ed/da/9c6f995903b4d9474b39da91d2d626659af3ff1eeb43e9ae7c119349dba6/ruff-0.11.13.tar.gz", hash = "sha256:26fa247dc68d1d4e72c179e08889a25ac0c7ba4d78aecfc835d49cbfd60bf514", size = 4282054, upload-time = "2025-06-05T21:00:15.721Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/7d/ce/a11d381192966e0b4290842cc8d4fac7dc9214ddf627c11c1afff87da29b/ruff-0.11.13-py3-none-linux_armv6l.whl", hash = "sha256:4bdfbf1240533f40042ec00c9e09a3aade6f8c10b6414cf11b519488d2635d46", size = 10292516, upload-time = "2025-06-05T20:59:32.944Z" }, - { url = "https://files.pythonhosted.org/packages/78/db/87c3b59b0d4e753e40b6a3b4a2642dfd1dcaefbff121ddc64d6c8b47ba00/ruff-0.11.13-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:aef9c9ed1b5ca28bb15c7eac83b8670cf3b20b478195bd49c8d756ba0a36cf48", size = 11106083, upload-time = "2025-06-05T20:59:37.03Z" }, - { url = "https://files.pythonhosted.org/packages/77/79/d8cec175856ff810a19825d09ce700265f905c643c69f45d2b737e4a470a/ruff-0.11.13-py3-none-macosx_11_0_arm64.whl", hash = "sha256:53b15a9dfdce029c842e9a5aebc3855e9ab7771395979ff85b7c1dedb53ddc2b", size = 10436024, upload-time = "2025-06-05T20:59:39.741Z" }, - { url = "https://files.pythonhosted.org/packages/8b/5b/f6d94f2980fa1ee854b41568368a2e1252681b9238ab2895e133d303538f/ruff-0.11.13-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ab153241400789138d13f362c43f7edecc0edfffce2afa6a68434000ecd8f69a", size = 10646324, upload-time = "2025-06-05T20:59:42.185Z" }, - { url = "https://files.pythonhosted.org/packages/6c/9c/b4c2acf24ea4426016d511dfdc787f4ce1ceb835f3c5fbdbcb32b1c63bda/ruff-0.11.13-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:6c51f93029d54a910d3d24f7dd0bb909e31b6cd989a5e4ac513f4eb41629f0dc", size = 10174416, upload-time = "2025-06-05T20:59:44.319Z" }, - { url = "https://files.pythonhosted.org/packages/f3/10/e2e62f77c65ede8cd032c2ca39c41f48feabedb6e282bfd6073d81bb671d/ruff-0.11.13-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1808b3ed53e1a777c2ef733aca9051dc9bf7c99b26ece15cb59a0320fbdbd629", size = 11724197, upload-time = "2025-06-05T20:59:46.935Z" }, - { url = "https://files.pythonhosted.org/packages/bb/f0/466fe8469b85c561e081d798c45f8a1d21e0b4a5ef795a1d7f1a9a9ec182/ruff-0.11.13-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:d28ce58b5ecf0f43c1b71edffabe6ed7f245d5336b17805803312ec9bc665933", size = 12511615, upload-time = "2025-06-05T20:59:49.534Z" }, - { url = "https://files.pythonhosted.org/packages/17/0e/cefe778b46dbd0cbcb03a839946c8f80a06f7968eb298aa4d1a4293f3448/ruff-0.11.13-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:55e4bc3a77842da33c16d55b32c6cac1ec5fb0fbec9c8c513bdce76c4f922165", size = 12117080, upload-time = "2025-06-05T20:59:51.654Z" }, - { url = "https://files.pythonhosted.org/packages/5d/2c/caaeda564cbe103bed145ea557cb86795b18651b0f6b3ff6a10e84e5a33f/ruff-0.11.13-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:633bf2c6f35678c56ec73189ba6fa19ff1c5e4807a78bf60ef487b9dd272cc71", size = 11326315, upload-time = "2025-06-05T20:59:54.469Z" }, - { url = "https://files.pythonhosted.org/packages/75/f0/782e7d681d660eda8c536962920c41309e6dd4ebcea9a2714ed5127d44bd/ruff-0.11.13-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4ffbc82d70424b275b089166310448051afdc6e914fdab90e08df66c43bb5ca9", size = 11555640, upload-time = "2025-06-05T20:59:56.986Z" }, - { url = "https://files.pythonhosted.org/packages/5d/d4/3d580c616316c7f07fb3c99dbecfe01fbaea7b6fd9a82b801e72e5de742a/ruff-0.11.13-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:4a9ddd3ec62a9a89578c85842b836e4ac832d4a2e0bfaad3b02243f930ceafcc", size = 10507364, upload-time = "2025-06-05T20:59:59.154Z" }, - { url = "https://files.pythonhosted.org/packages/5a/dc/195e6f17d7b3ea6b12dc4f3e9de575db7983db187c378d44606e5d503319/ruff-0.11.13-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:d237a496e0778d719efb05058c64d28b757c77824e04ffe8796c7436e26712b7", size = 10141462, upload-time = "2025-06-05T21:00:01.481Z" }, - { url = "https://files.pythonhosted.org/packages/f4/8e/39a094af6967faa57ecdeacb91bedfb232474ff8c3d20f16a5514e6b3534/ruff-0.11.13-py3-none-musllinux_1_2_i686.whl", hash = "sha256:26816a218ca6ef02142343fd24c70f7cd8c5aa6c203bca284407adf675984432", size = 11121028, upload-time = "2025-06-05T21:00:04.06Z" }, - { url = "https://files.pythonhosted.org/packages/5a/c0/b0b508193b0e8a1654ec683ebab18d309861f8bd64e3a2f9648b80d392cb/ruff-0.11.13-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:51c3f95abd9331dc5b87c47ac7f376db5616041173826dfd556cfe3d4977f492", size = 11602992, upload-time = "2025-06-05T21:00:06.249Z" }, - { url = "https://files.pythonhosted.org/packages/7c/91/263e33ab93ab09ca06ce4f8f8547a858cc198072f873ebc9be7466790bae/ruff-0.11.13-py3-none-win32.whl", hash = "sha256:96c27935418e4e8e77a26bb05962817f28b8ef3843a6c6cc49d8783b5507f250", size = 10474944, upload-time = "2025-06-05T21:00:08.459Z" }, - { url = "https://files.pythonhosted.org/packages/46/f4/7c27734ac2073aae8efb0119cae6931b6fb48017adf048fdf85c19337afc/ruff-0.11.13-py3-none-win_amd64.whl", hash = "sha256:29c3189895a8a6a657b7af4e97d330c8a3afd2c9c8f46c81e2fc5a31866517e3", size = 11548669, upload-time = "2025-06-05T21:00:11.147Z" }, - { url = "https://files.pythonhosted.org/packages/ec/bf/b273dd11673fed8a6bd46032c0ea2a04b2ac9bfa9c628756a5856ba113b0/ruff-0.11.13-py3-none-win_arm64.whl", hash = "sha256:b4385285e9179d608ff1d2fb9922062663c658605819a6876d8beef0c30b7f3b", size = 10683928, upload-time = "2025-06-05T21:00:13.758Z" }, +version = "0.14.7" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/b7/5b/dd7406afa6c95e3d8fa9d652b6d6dd17dd4a6bf63cb477014e8ccd3dcd46/ruff-0.14.7.tar.gz", hash = "sha256:3417deb75d23bd14a722b57b0a1435561db65f0ad97435b4cf9f85ffcef34ae5", size = 5727324, upload-time = "2025-11-28T20:55:10.525Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8c/b1/7ea5647aaf90106f6d102230e5df874613da43d1089864da1553b899ba5e/ruff-0.14.7-py3-none-linux_armv6l.whl", hash = "sha256:b9d5cb5a176c7236892ad7224bc1e63902e4842c460a0b5210701b13e3de4fca", size = 13414475, upload-time = "2025-11-28T20:54:54.569Z" }, + { url = "https://files.pythonhosted.org/packages/af/19/fddb4cd532299db9cdaf0efdc20f5c573ce9952a11cb532d3b859d6d9871/ruff-0.14.7-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:3f64fe375aefaf36ca7d7250292141e39b4cea8250427482ae779a2aa5d90015", size = 13634613, upload-time = "2025-11-28T20:55:17.54Z" }, + { url = "https://files.pythonhosted.org/packages/40/2b/469a66e821d4f3de0440676ed3e04b8e2a1dc7575cf6fa3ba6d55e3c8557/ruff-0.14.7-py3-none-macosx_11_0_arm64.whl", hash = "sha256:93e83bd3a9e1a3bda64cb771c0d47cda0e0d148165013ae2d3554d718632d554", size = 12765458, upload-time = "2025-11-28T20:55:26.128Z" }, + { url = "https://files.pythonhosted.org/packages/f1/05/0b001f734fe550bcfde4ce845948ac620ff908ab7241a39a1b39bb3c5f49/ruff-0.14.7-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3838948e3facc59a6070795de2ae16e5786861850f78d5914a03f12659e88f94", size = 13236412, upload-time = "2025-11-28T20:55:28.602Z" }, + { url = "https://files.pythonhosted.org/packages/11/36/8ed15d243f011b4e5da75cd56d6131c6766f55334d14ba31cce5461f28aa/ruff-0.14.7-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:24c8487194d38b6d71cd0fd17a5b6715cda29f59baca1defe1e3a03240f851d1", size = 13182949, upload-time = "2025-11-28T20:55:33.265Z" }, + { url = "https://files.pythonhosted.org/packages/3b/cf/fcb0b5a195455729834f2a6eadfe2e4519d8ca08c74f6d2b564a4f18f553/ruff-0.14.7-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:79c73db6833f058a4be8ffe4a0913b6d4ad41f6324745179bd2aa09275b01d0b", size = 13816470, upload-time = "2025-11-28T20:55:08.203Z" }, + { url = "https://files.pythonhosted.org/packages/7f/5d/34a4748577ff7a5ed2f2471456740f02e86d1568a18c9faccfc73bd9ca3f/ruff-0.14.7-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:12eb7014fccff10fc62d15c79d8a6be4d0c2d60fe3f8e4d169a0d2def75f5dad", size = 15289621, upload-time = "2025-11-28T20:55:30.837Z" }, + { url = "https://files.pythonhosted.org/packages/53/53/0a9385f047a858ba133d96f3f8e3c9c66a31cc7c4b445368ef88ebeac209/ruff-0.14.7-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6c623bbdc902de7ff715a93fa3bb377a4e42dd696937bf95669118773dbf0c50", size = 14975817, upload-time = "2025-11-28T20:55:24.107Z" }, + { url = "https://files.pythonhosted.org/packages/a8/d7/2f1c32af54c3b46e7fadbf8006d8b9bcfbea535c316b0bd8813d6fb25e5d/ruff-0.14.7-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f53accc02ed2d200fa621593cdb3c1ae06aa9b2c3cae70bc96f72f0000ae97a9", size = 14284549, upload-time = "2025-11-28T20:55:06.08Z" }, + { url = "https://files.pythonhosted.org/packages/92/05/434ddd86becd64629c25fb6b4ce7637dd52a45cc4a4415a3008fe61c27b9/ruff-0.14.7-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:281f0e61a23fcdcffca210591f0f53aafaa15f9025b5b3f9706879aaa8683bc4", size = 14071389, upload-time = "2025-11-28T20:55:35.617Z" }, + { url = "https://files.pythonhosted.org/packages/ff/50/fdf89d4d80f7f9d4f420d26089a79b3bb1538fe44586b148451bc2ba8d9c/ruff-0.14.7-py3-none-manylinux_2_31_riscv64.whl", hash = "sha256:dbbaa5e14148965b91cb090236931182ee522a5fac9bc5575bafc5c07b9f9682", size = 14202679, upload-time = "2025-11-28T20:55:01.472Z" }, + { url = "https://files.pythonhosted.org/packages/77/54/87b34988984555425ce967f08a36df0ebd339bb5d9d0e92a47e41151eafc/ruff-0.14.7-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:1464b6e54880c0fe2f2d6eaefb6db15373331414eddf89d6b903767ae2458143", size = 13147677, upload-time = "2025-11-28T20:55:19.933Z" }, + { url = "https://files.pythonhosted.org/packages/67/29/f55e4d44edfe053918a16a3299e758e1c18eef216b7a7092550d7a9ec51c/ruff-0.14.7-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:f217ed871e4621ea6128460df57b19ce0580606c23aeab50f5de425d05226784", size = 13151392, upload-time = "2025-11-28T20:55:21.967Z" }, + { url = "https://files.pythonhosted.org/packages/36/69/47aae6dbd4f1d9b4f7085f4d9dcc84e04561ee7ad067bf52e0f9b02e3209/ruff-0.14.7-py3-none-musllinux_1_2_i686.whl", hash = "sha256:6be02e849440ed3602d2eb478ff7ff07d53e3758f7948a2a598829660988619e", size = 13412230, upload-time = "2025-11-28T20:55:12.749Z" }, + { url = "https://files.pythonhosted.org/packages/b7/4b/6e96cb6ba297f2ba502a231cd732ed7c3de98b1a896671b932a5eefa3804/ruff-0.14.7-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:19a0f116ee5e2b468dfe80c41c84e2bbd6b74f7b719bee86c2ecde0a34563bcc", size = 14195397, upload-time = "2025-11-28T20:54:56.896Z" }, + { url = "https://files.pythonhosted.org/packages/69/82/251d5f1aa4dcad30aed491b4657cecd9fb4274214da6960ffec144c260f7/ruff-0.14.7-py3-none-win32.whl", hash = "sha256:e33052c9199b347c8937937163b9b149ef6ab2e4bb37b042e593da2e6f6cccfa", size = 13126751, upload-time = "2025-11-28T20:55:03.47Z" }, + { url = "https://files.pythonhosted.org/packages/a8/b5/d0b7d145963136b564806f6584647af45ab98946660d399ec4da79cae036/ruff-0.14.7-py3-none-win_amd64.whl", hash = "sha256:e17a20ad0d3fad47a326d773a042b924d3ac31c6ca6deb6c72e9e6b5f661a7c6", size = 14531726, upload-time = "2025-11-28T20:54:59.121Z" }, + { url = "https://files.pythonhosted.org/packages/1d/d2/1637f4360ada6a368d3265bf39f2cf737a0aaab15ab520fc005903e883f8/ruff-0.14.7-py3-none-win_arm64.whl", hash = "sha256:be4d653d3bea1b19742fcc6502354e32f65cd61ff2fbdb365803ef2c2aec6228", size = 13609215, upload-time = "2025-11-28T20:55:15.375Z" }, ] [[package]] name = "s3fs" -version = "2025.5.1" +version = "2025.12.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "aiobotocore" }, { name = "aiohttp" }, { name = "fsspec" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/7f/6f/d0ee452580d7d0643a1a776b95dfef2144023f3fc077038e07d651995d34/s3fs-2025.5.1.tar.gz", hash = "sha256:84beffa231b8ed94f8d667e93387b38351e1c4447aedea5c2c19dd88b7fcb658", size = 77276, upload-time = "2025-05-24T12:14:11.442Z" } +sdist = { url = "https://files.pythonhosted.org/packages/cf/26/fff848df6a76d6fec20208e61548244639c46a741e296244c3404d6e7df0/s3fs-2025.12.0.tar.gz", hash = "sha256:8612885105ce14d609c5b807553f9f9956b45541576a17ff337d9435ed3eb01f", size = 81217, upload-time = "2025-12-03T15:34:04.754Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/d5/c0/f5cc95ec88694429fcb841a37456be0a27463bc39d43edbd36e3164120ed/s3fs-2025.5.1-py3-none-any.whl", hash = "sha256:7475e7c40a3a112f17144907ffae50782ab6c03487fe0b45a9c3942bb7a5c606", size = 30476, upload-time = "2025-05-24T12:14:10.056Z" }, + { url = "https://files.pythonhosted.org/packages/44/8c/04797ebb53748b4d594d4c334b2d9a99f2d2e06e19ad505f1313ca5d56eb/s3fs-2025.12.0-py3-none-any.whl", hash = "sha256:89d51e0744256baad7ae5410304a368ca195affd93a07795bc8ba9c00c9effbb", size = 30726, upload-time = "2025-12-03T15:34:03.576Z" }, ] [[package]] name = "s3transfer" -version = "0.11.3" +version = "0.15.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "botocore" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/39/24/1390172471d569e281fcfd29b92f2f73774e95972c965d14b6c802ff2352/s3transfer-0.11.3.tar.gz", hash = "sha256:edae4977e3a122445660c7c114bba949f9d191bae3b34a096f18a1c8c354527a", size = 148042, upload-time = "2025-02-26T20:44:57.459Z" } +sdist = { url = "https://files.pythonhosted.org/packages/ca/bb/940d6af975948c1cc18f44545ffb219d3c35d78ec972b42ae229e8e37e08/s3transfer-0.15.0.tar.gz", hash = "sha256:d36fac8d0e3603eff9b5bfa4282c7ce6feb0301a633566153cbd0b93d11d8379", size = 152185, upload-time = "2025-11-20T20:28:56.327Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/e4/81/48c41b554a54d75d4407740abb60e3a102ae416284df04d1dbdcbe3dbf24/s3transfer-0.11.3-py3-none-any.whl", hash = "sha256:ca855bdeb885174b5ffa95b9913622459d4ad8e331fc98eb01e6d5eb6a30655d", size = 84246, upload-time = "2025-02-26T20:44:55.509Z" }, + { url = "https://files.pythonhosted.org/packages/5f/e1/5ef25f52973aa12a19cf4e1375d00932d7fb354ffd310487ba7d44225c1a/s3transfer-0.15.0-py3-none-any.whl", hash = "sha256:6f8bf5caa31a0865c4081186689db1b2534cef721d104eb26101de4b9d6a5852", size = 85984, upload-time = "2025-11-20T20:28:55.046Z" }, ] [[package]] name = "scikit-learn" -version = "1.7.0" +version = "1.7.2" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "joblib" }, - { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-5-mlipx-grace' or extra == 'extra-5-mlipx-matpes' or extra == 'extra-5-mlipx-mattersim' or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-5-mlipx-fairchem' or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'extra-5-mlipx-grace') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "numpy", version = "2.1.3", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform != 'linux' or extra == 'extra-5-mlipx-fairchem' or extra != 'extra-5-mlipx-grace' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, { name = "scipy" }, { name = "threadpoolctl" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/df/3b/29fa87e76b1d7b3b77cc1fcbe82e6e6b8cd704410705b008822de530277c/scikit_learn-1.7.0.tar.gz", hash = "sha256:c01e869b15aec88e2cdb73d27f15bdbe03bce8e2fb43afbe77c45d399e73a5a3", size = 7178217, upload-time = "2025-06-05T22:02:46.703Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/a4/70/e725b1da11e7e833f558eb4d3ea8b7ed7100edda26101df074f1ae778235/scikit_learn-1.7.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:9fe7f51435f49d97bd41d724bb3e11eeb939882af9c29c931a8002c357e8cdd5", size = 11728006, upload-time = "2025-06-05T22:01:43.007Z" }, - { url = "https://files.pythonhosted.org/packages/32/aa/43874d372e9dc51eb361f5c2f0a4462915c9454563b3abb0d9457c66b7e9/scikit_learn-1.7.0-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:d0c93294e1e1acbee2d029b1f2a064f26bd928b284938d51d412c22e0c977eb3", size = 10726255, upload-time = "2025-06-05T22:01:46.082Z" }, - { url = "https://files.pythonhosted.org/packages/f5/1a/da73cc18e00f0b9ae89f7e4463a02fb6e0569778120aeab138d9554ecef0/scikit_learn-1.7.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bf3755f25f145186ad8c403312f74fb90df82a4dfa1af19dc96ef35f57237a94", size = 12205657, upload-time = "2025-06-05T22:01:48.729Z" }, - { url = "https://files.pythonhosted.org/packages/fb/f6/800cb3243dd0137ca6d98df8c9d539eb567ba0a0a39ecd245c33fab93510/scikit_learn-1.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2726c8787933add436fb66fb63ad18e8ef342dfb39bbbd19dc1e83e8f828a85a", size = 12877290, upload-time = "2025-06-05T22:01:51.073Z" }, - { url = "https://files.pythonhosted.org/packages/4c/bd/99c3ccb49946bd06318fe194a1c54fb7d57ac4fe1c2f4660d86b3a2adf64/scikit_learn-1.7.0-cp310-cp310-win_amd64.whl", hash = "sha256:e2539bb58886a531b6e86a510c0348afaadd25005604ad35966a85c2ec378800", size = 10713211, upload-time = "2025-06-05T22:01:54.107Z" }, - { url = "https://files.pythonhosted.org/packages/5a/42/c6b41711c2bee01c4800ad8da2862c0b6d2956a399d23ce4d77f2ca7f0c7/scikit_learn-1.7.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:8ef09b1615e1ad04dc0d0054ad50634514818a8eb3ee3dee99af3bffc0ef5007", size = 11719657, upload-time = "2025-06-05T22:01:56.345Z" }, - { url = "https://files.pythonhosted.org/packages/a3/24/44acca76449e391b6b2522e67a63c0454b7c1f060531bdc6d0118fb40851/scikit_learn-1.7.0-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:7d7240c7b19edf6ed93403f43b0fcb0fe95b53bc0b17821f8fb88edab97085ef", size = 10712636, upload-time = "2025-06-05T22:01:59.093Z" }, - { url = "https://files.pythonhosted.org/packages/9f/1b/fcad1ccb29bdc9b96bcaa2ed8345d56afb77b16c0c47bafe392cc5d1d213/scikit_learn-1.7.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:80bd3bd4e95381efc47073a720d4cbab485fc483966f1709f1fd559afac57ab8", size = 12242817, upload-time = "2025-06-05T22:02:01.43Z" }, - { url = "https://files.pythonhosted.org/packages/c6/38/48b75c3d8d268a3f19837cb8a89155ead6e97c6892bb64837183ea41db2b/scikit_learn-1.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9dbe48d69aa38ecfc5a6cda6c5df5abef0c0ebdb2468e92437e2053f84abb8bc", size = 12873961, upload-time = "2025-06-05T22:02:03.951Z" }, - { url = "https://files.pythonhosted.org/packages/f4/5a/ba91b8c57aa37dbd80d5ff958576a9a8c14317b04b671ae7f0d09b00993a/scikit_learn-1.7.0-cp311-cp311-win_amd64.whl", hash = "sha256:8fa979313b2ffdfa049ed07252dc94038def3ecd49ea2a814db5401c07f1ecfa", size = 10717277, upload-time = "2025-06-05T22:02:06.77Z" }, - { url = "https://files.pythonhosted.org/packages/70/3a/bffab14e974a665a3ee2d79766e7389572ffcaad941a246931c824afcdb2/scikit_learn-1.7.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:c2c7243d34aaede0efca7a5a96d67fddaebb4ad7e14a70991b9abee9dc5c0379", size = 11646758, upload-time = "2025-06-05T22:02:09.51Z" }, - { url = "https://files.pythonhosted.org/packages/58/d8/f3249232fa79a70cb40595282813e61453c1e76da3e1a44b77a63dd8d0cb/scikit_learn-1.7.0-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:9f39f6a811bf3f15177b66c82cbe0d7b1ebad9f190737dcdef77cfca1ea3c19c", size = 10673971, upload-time = "2025-06-05T22:02:12.217Z" }, - { url = "https://files.pythonhosted.org/packages/67/93/eb14c50533bea2f77758abe7d60a10057e5f2e2cdcf0a75a14c6bc19c734/scikit_learn-1.7.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:63017a5f9a74963d24aac7590287149a8d0f1a0799bbe7173c0d8ba1523293c0", size = 11818428, upload-time = "2025-06-05T22:02:14.947Z" }, - { url = "https://files.pythonhosted.org/packages/08/17/804cc13b22a8663564bb0b55fb89e661a577e4e88a61a39740d58b909efe/scikit_learn-1.7.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0b2f8a0b1e73e9a08b7cc498bb2aeab36cdc1f571f8ab2b35c6e5d1c7115d97d", size = 12505887, upload-time = "2025-06-05T22:02:17.824Z" }, - { url = "https://files.pythonhosted.org/packages/68/c7/4e956281a077f4835458c3f9656c666300282d5199039f26d9de1dabd9be/scikit_learn-1.7.0-cp312-cp312-win_amd64.whl", hash = "sha256:34cc8d9d010d29fb2b7cbcd5ccc24ffdd80515f65fe9f1e4894ace36b267ce19", size = 10668129, upload-time = "2025-06-05T22:02:20.536Z" }, - { url = "https://files.pythonhosted.org/packages/9a/c3/a85dcccdaf1e807e6f067fa95788a6485b0491d9ea44fd4c812050d04f45/scikit_learn-1.7.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:5b7974f1f32bc586c90145df51130e02267e4b7e77cab76165c76cf43faca0d9", size = 11559841, upload-time = "2025-06-05T22:02:23.308Z" }, - { url = "https://files.pythonhosted.org/packages/d8/57/eea0de1562cc52d3196eae51a68c5736a31949a465f0b6bb3579b2d80282/scikit_learn-1.7.0-cp313-cp313-macosx_12_0_arm64.whl", hash = "sha256:014e07a23fe02e65f9392898143c542a50b6001dbe89cb867e19688e468d049b", size = 10616463, upload-time = "2025-06-05T22:02:26.068Z" }, - { url = "https://files.pythonhosted.org/packages/10/a4/39717ca669296dfc3a62928393168da88ac9d8cbec88b6321ffa62c6776f/scikit_learn-1.7.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e7e7ced20582d3a5516fb6f405fd1d254e1f5ce712bfef2589f51326af6346e8", size = 11766512, upload-time = "2025-06-05T22:02:28.689Z" }, - { url = "https://files.pythonhosted.org/packages/d5/cd/a19722241d5f7b51e08351e1e82453e0057aeb7621b17805f31fcb57bb6c/scikit_learn-1.7.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1babf2511e6ffd695da7a983b4e4d6de45dce39577b26b721610711081850906", size = 12461075, upload-time = "2025-06-05T22:02:31.233Z" }, - { url = "https://files.pythonhosted.org/packages/f3/bc/282514272815c827a9acacbe5b99f4f1a4bc5961053719d319480aee0812/scikit_learn-1.7.0-cp313-cp313-win_amd64.whl", hash = "sha256:5abd2acff939d5bd4701283f009b01496832d50ddafa83c90125a4e41c33e314", size = 10652517, upload-time = "2025-06-05T22:02:34.139Z" }, - { url = "https://files.pythonhosted.org/packages/ea/78/7357d12b2e4c6674175f9a09a3ba10498cde8340e622715bcc71e532981d/scikit_learn-1.7.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:e39d95a929b112047c25b775035c8c234c5ca67e681ce60d12413afb501129f7", size = 12111822, upload-time = "2025-06-05T22:02:36.904Z" }, - { url = "https://files.pythonhosted.org/packages/d0/0c/9c3715393343f04232f9d81fe540eb3831d0b4ec351135a145855295110f/scikit_learn-1.7.0-cp313-cp313t-macosx_12_0_arm64.whl", hash = "sha256:0521cb460426c56fee7e07f9365b0f45ec8ca7b2d696534ac98bfb85e7ae4775", size = 11325286, upload-time = "2025-06-05T22:02:39.739Z" }, - { url = "https://files.pythonhosted.org/packages/64/e0/42282ad3dd70b7c1a5f65c412ac3841f6543502a8d6263cae7b466612dc9/scikit_learn-1.7.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:317ca9f83acbde2883bd6bb27116a741bfcb371369706b4f9973cf30e9a03b0d", size = 12380865, upload-time = "2025-06-05T22:02:42.137Z" }, - { url = "https://files.pythonhosted.org/packages/4e/d0/3ef4ab2c6be4aa910445cd09c5ef0b44512e3de2cfb2112a88bb647d2cf7/scikit_learn-1.7.0-cp313-cp313t-win_amd64.whl", hash = "sha256:126c09740a6f016e815ab985b21e3a0656835414521c81fc1a8da78b679bdb75", size = 11549609, upload-time = "2025-06-05T22:02:44.483Z" }, +sdist = { url = "https://files.pythonhosted.org/packages/98/c2/a7855e41c9d285dfe86dc50b250978105dce513d6e459ea66a6aeb0e1e0c/scikit_learn-1.7.2.tar.gz", hash = "sha256:20e9e49ecd130598f1ca38a1d85090e1a600147b9c02fa6f15d69cb53d968fda", size = 7193136, upload-time = "2025-09-09T08:21:29.075Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/43/83/564e141eef908a5863a54da8ca342a137f45a0bfb71d1d79704c9894c9d1/scikit_learn-1.7.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c7509693451651cd7361d30ce4e86a1347493554f172b1c72a39300fa2aea79e", size = 9331967, upload-time = "2025-09-09T08:20:32.421Z" }, + { url = "https://files.pythonhosted.org/packages/18/d6/ba863a4171ac9d7314c4d3fc251f015704a2caeee41ced89f321c049ed83/scikit_learn-1.7.2-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:0486c8f827c2e7b64837c731c8feff72c0bd2b998067a8a9cbc10643c31f0fe1", size = 8648645, upload-time = "2025-09-09T08:20:34.436Z" }, + { url = "https://files.pythonhosted.org/packages/ef/0e/97dbca66347b8cf0ea8b529e6bb9367e337ba2e8be0ef5c1a545232abfde/scikit_learn-1.7.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:89877e19a80c7b11a2891a27c21c4894fb18e2c2e077815bcade10d34287b20d", size = 9715424, upload-time = "2025-09-09T08:20:36.776Z" }, + { url = "https://files.pythonhosted.org/packages/f7/32/1f3b22e3207e1d2c883a7e09abb956362e7d1bd2f14458c7de258a26ac15/scikit_learn-1.7.2-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:8da8bf89d4d79aaec192d2bda62f9b56ae4e5b4ef93b6a56b5de4977e375c1f1", size = 9509234, upload-time = "2025-09-09T08:20:38.957Z" }, + { url = "https://files.pythonhosted.org/packages/9f/71/34ddbd21f1da67c7a768146968b4d0220ee6831e4bcbad3e03dd3eae88b6/scikit_learn-1.7.2-cp311-cp311-win_amd64.whl", hash = "sha256:9b7ed8d58725030568523e937c43e56bc01cadb478fc43c042a9aca1dacb3ba1", size = 8894244, upload-time = "2025-09-09T08:20:41.166Z" }, + { url = "https://files.pythonhosted.org/packages/a7/aa/3996e2196075689afb9fce0410ebdb4a09099d7964d061d7213700204409/scikit_learn-1.7.2-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:8d91a97fa2b706943822398ab943cde71858a50245e31bc71dba62aab1d60a96", size = 9259818, upload-time = "2025-09-09T08:20:43.19Z" }, + { url = "https://files.pythonhosted.org/packages/43/5d/779320063e88af9c4a7c2cf463ff11c21ac9c8bd730c4a294b0000b666c9/scikit_learn-1.7.2-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:acbc0f5fd2edd3432a22c69bed78e837c70cf896cd7993d71d51ba6708507476", size = 8636997, upload-time = "2025-09-09T08:20:45.468Z" }, + { url = "https://files.pythonhosted.org/packages/5c/d0/0c577d9325b05594fdd33aa970bf53fb673f051a45496842caee13cfd7fe/scikit_learn-1.7.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:e5bf3d930aee75a65478df91ac1225ff89cd28e9ac7bd1196853a9229b6adb0b", size = 9478381, upload-time = "2025-09-09T08:20:47.982Z" }, + { url = "https://files.pythonhosted.org/packages/82/70/8bf44b933837ba8494ca0fc9a9ab60f1c13b062ad0197f60a56e2fc4c43e/scikit_learn-1.7.2-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b4d6e9deed1a47aca9fe2f267ab8e8fe82ee20b4526b2c0cd9e135cea10feb44", size = 9300296, upload-time = "2025-09-09T08:20:50.366Z" }, + { url = "https://files.pythonhosted.org/packages/c6/99/ed35197a158f1fdc2fe7c3680e9c70d0128f662e1fee4ed495f4b5e13db0/scikit_learn-1.7.2-cp312-cp312-win_amd64.whl", hash = "sha256:6088aa475f0785e01bcf8529f55280a3d7d298679f50c0bb70a2364a82d0b290", size = 8731256, upload-time = "2025-09-09T08:20:52.627Z" }, + { url = "https://files.pythonhosted.org/packages/ae/93/a3038cb0293037fd335f77f31fe053b89c72f17b1c8908c576c29d953e84/scikit_learn-1.7.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:0b7dacaa05e5d76759fb071558a8b5130f4845166d88654a0f9bdf3eb57851b7", size = 9212382, upload-time = "2025-09-09T08:20:54.731Z" }, + { url = "https://files.pythonhosted.org/packages/40/dd/9a88879b0c1104259136146e4742026b52df8540c39fec21a6383f8292c7/scikit_learn-1.7.2-cp313-cp313-macosx_12_0_arm64.whl", hash = "sha256:abebbd61ad9e1deed54cca45caea8ad5f79e1b93173dece40bb8e0c658dbe6fe", size = 8592042, upload-time = "2025-09-09T08:20:57.313Z" }, + { url = "https://files.pythonhosted.org/packages/46/af/c5e286471b7d10871b811b72ae794ac5fe2989c0a2df07f0ec723030f5f5/scikit_learn-1.7.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:502c18e39849c0ea1a5d681af1dbcf15f6cce601aebb657aabbfe84133c1907f", size = 9434180, upload-time = "2025-09-09T08:20:59.671Z" }, + { url = "https://files.pythonhosted.org/packages/f1/fd/df59faa53312d585023b2da27e866524ffb8faf87a68516c23896c718320/scikit_learn-1.7.2-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:7a4c328a71785382fe3fe676a9ecf2c86189249beff90bf85e22bdb7efaf9ae0", size = 9283660, upload-time = "2025-09-09T08:21:01.71Z" }, + { url = "https://files.pythonhosted.org/packages/a7/c7/03000262759d7b6f38c836ff9d512f438a70d8a8ddae68ee80de72dcfb63/scikit_learn-1.7.2-cp313-cp313-win_amd64.whl", hash = "sha256:63a9afd6f7b229aad94618c01c252ce9e6fa97918c5ca19c9a17a087d819440c", size = 8702057, upload-time = "2025-09-09T08:21:04.234Z" }, + { url = "https://files.pythonhosted.org/packages/55/87/ef5eb1f267084532c8e4aef98a28b6ffe7425acbfd64b5e2f2e066bc29b3/scikit_learn-1.7.2-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:9acb6c5e867447b4e1390930e3944a005e2cb115922e693c08a323421a6966e8", size = 9558731, upload-time = "2025-09-09T08:21:06.381Z" }, + { url = "https://files.pythonhosted.org/packages/93/f8/6c1e3fc14b10118068d7938878a9f3f4e6d7b74a8ddb1e5bed65159ccda8/scikit_learn-1.7.2-cp313-cp313t-macosx_12_0_arm64.whl", hash = "sha256:2a41e2a0ef45063e654152ec9d8bcfc39f7afce35b08902bfe290c2498a67a6a", size = 9038852, upload-time = "2025-09-09T08:21:08.628Z" }, + { url = "https://files.pythonhosted.org/packages/83/87/066cafc896ee540c34becf95d30375fe5cbe93c3b75a0ee9aa852cd60021/scikit_learn-1.7.2-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:98335fb98509b73385b3ab2bd0639b1f610541d3988ee675c670371d6a87aa7c", size = 9527094, upload-time = "2025-09-09T08:21:11.486Z" }, + { url = "https://files.pythonhosted.org/packages/9c/2b/4903e1ccafa1f6453b1ab78413938c8800633988c838aa0be386cbb33072/scikit_learn-1.7.2-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:191e5550980d45449126e23ed1d5e9e24b2c68329ee1f691a3987476e115e09c", size = 9367436, upload-time = "2025-09-09T08:21:13.602Z" }, + { url = "https://files.pythonhosted.org/packages/b5/aa/8444be3cfb10451617ff9d177b3c190288f4563e6c50ff02728be67ad094/scikit_learn-1.7.2-cp313-cp313t-win_amd64.whl", hash = "sha256:57dc4deb1d3762c75d685507fbd0bc17160144b2f2ba4ccea5dc285ab0d0e973", size = 9275749, upload-time = "2025-09-09T08:21:15.96Z" }, + { url = "https://files.pythonhosted.org/packages/d9/82/dee5acf66837852e8e68df6d8d3a6cb22d3df997b733b032f513d95205b7/scikit_learn-1.7.2-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:fa8f63940e29c82d1e67a45d5297bdebbcb585f5a5a50c4914cc2e852ab77f33", size = 9208906, upload-time = "2025-09-09T08:21:18.557Z" }, + { url = "https://files.pythonhosted.org/packages/3c/30/9029e54e17b87cb7d50d51a5926429c683d5b4c1732f0507a6c3bed9bf65/scikit_learn-1.7.2-cp314-cp314-macosx_12_0_arm64.whl", hash = "sha256:f95dc55b7902b91331fa4e5845dd5bde0580c9cd9612b1b2791b7e80c3d32615", size = 8627836, upload-time = "2025-09-09T08:21:20.695Z" }, + { url = "https://files.pythonhosted.org/packages/60/18/4a52c635c71b536879f4b971c2cedf32c35ee78f48367885ed8025d1f7ee/scikit_learn-1.7.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:9656e4a53e54578ad10a434dc1f993330568cfee176dff07112b8785fb413106", size = 9426236, upload-time = "2025-09-09T08:21:22.645Z" }, + { url = "https://files.pythonhosted.org/packages/99/7e/290362f6ab582128c53445458a5befd471ed1ea37953d5bcf80604619250/scikit_learn-1.7.2-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:96dc05a854add0e50d3f47a1ef21a10a595016da5b007c7d9cd9d0bffd1fcc61", size = 9312593, upload-time = "2025-09-09T08:21:24.65Z" }, + { url = "https://files.pythonhosted.org/packages/8e/87/24f541b6d62b1794939ae6422f8023703bbf6900378b2b34e0b4384dfefd/scikit_learn-1.7.2-cp314-cp314-win_amd64.whl", hash = "sha256:bb24510ed3f9f61476181e4db51ce801e2ba37541def12dc9333b946fc7a9cf8", size = 8820007, upload-time = "2025-09-09T08:21:26.713Z" }, ] [[package]] name = "scipy" -version = "1.15.3" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-5-mlipx-grace' or extra == 'extra-5-mlipx-matpes' or extra == 'extra-5-mlipx-mattersim' or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-5-mlipx-fairchem' or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/0f/37/6964b830433e654ec7485e45a00fc9a27cf868d622838f6b6d9c5ec0d532/scipy-1.15.3.tar.gz", hash = "sha256:eae3cf522bc7df64b42cad3925c876e1b0b6c35c1337c93e12c0f366f55b0eaf", size = 59419214, upload-time = "2025-05-08T16:13:05.955Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/78/2f/4966032c5f8cc7e6a60f1b2e0ad686293b9474b65246b0c642e3ef3badd0/scipy-1.15.3-cp310-cp310-macosx_10_13_x86_64.whl", hash = "sha256:a345928c86d535060c9c2b25e71e87c39ab2f22fc96e9636bd74d1dbf9de448c", size = 38702770, upload-time = "2025-05-08T16:04:20.849Z" }, - { url = "https://files.pythonhosted.org/packages/a0/6e/0c3bf90fae0e910c274db43304ebe25a6b391327f3f10b5dcc638c090795/scipy-1.15.3-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:ad3432cb0f9ed87477a8d97f03b763fd1d57709f1bbde3c9369b1dff5503b253", size = 30094511, upload-time = "2025-05-08T16:04:27.103Z" }, - { url = "https://files.pythonhosted.org/packages/ea/b1/4deb37252311c1acff7f101f6453f0440794f51b6eacb1aad4459a134081/scipy-1.15.3-cp310-cp310-macosx_14_0_arm64.whl", hash = "sha256:aef683a9ae6eb00728a542b796f52a5477b78252edede72b8327a886ab63293f", size = 22368151, upload-time = "2025-05-08T16:04:31.731Z" }, - { url = "https://files.pythonhosted.org/packages/38/7d/f457626e3cd3c29b3a49ca115a304cebb8cc6f31b04678f03b216899d3c6/scipy-1.15.3-cp310-cp310-macosx_14_0_x86_64.whl", hash = "sha256:1c832e1bd78dea67d5c16f786681b28dd695a8cb1fb90af2e27580d3d0967e92", size = 25121732, upload-time = "2025-05-08T16:04:36.596Z" }, - { url = "https://files.pythonhosted.org/packages/db/0a/92b1de4a7adc7a15dcf5bddc6e191f6f29ee663b30511ce20467ef9b82e4/scipy-1.15.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:263961f658ce2165bbd7b99fa5135195c3a12d9bef045345016b8b50c315cb82", size = 35547617, upload-time = "2025-05-08T16:04:43.546Z" }, - { url = "https://files.pythonhosted.org/packages/8e/6d/41991e503e51fc1134502694c5fa7a1671501a17ffa12716a4a9151af3df/scipy-1.15.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9e2abc762b0811e09a0d3258abee2d98e0c703eee49464ce0069590846f31d40", size = 37662964, upload-time = "2025-05-08T16:04:49.431Z" }, - { url = "https://files.pythonhosted.org/packages/25/e1/3df8f83cb15f3500478c889be8fb18700813b95e9e087328230b98d547ff/scipy-1.15.3-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:ed7284b21a7a0c8f1b6e5977ac05396c0d008b89e05498c8b7e8f4a1423bba0e", size = 37238749, upload-time = "2025-05-08T16:04:55.215Z" }, - { url = "https://files.pythonhosted.org/packages/93/3e/b3257cf446f2a3533ed7809757039016b74cd6f38271de91682aa844cfc5/scipy-1.15.3-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:5380741e53df2c566f4d234b100a484b420af85deb39ea35a1cc1be84ff53a5c", size = 40022383, upload-time = "2025-05-08T16:05:01.914Z" }, - { url = "https://files.pythonhosted.org/packages/d1/84/55bc4881973d3f79b479a5a2e2df61c8c9a04fcb986a213ac9c02cfb659b/scipy-1.15.3-cp310-cp310-win_amd64.whl", hash = "sha256:9d61e97b186a57350f6d6fd72640f9e99d5a4a2b8fbf4b9ee9a841eab327dc13", size = 41259201, upload-time = "2025-05-08T16:05:08.166Z" }, - { url = "https://files.pythonhosted.org/packages/96/ab/5cc9f80f28f6a7dff646c5756e559823614a42b1939d86dd0ed550470210/scipy-1.15.3-cp311-cp311-macosx_10_13_x86_64.whl", hash = "sha256:993439ce220d25e3696d1b23b233dd010169b62f6456488567e830654ee37a6b", size = 38714255, upload-time = "2025-05-08T16:05:14.596Z" }, - { url = "https://files.pythonhosted.org/packages/4a/4a/66ba30abe5ad1a3ad15bfb0b59d22174012e8056ff448cb1644deccbfed2/scipy-1.15.3-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:34716e281f181a02341ddeaad584205bd2fd3c242063bd3423d61ac259ca7eba", size = 30111035, upload-time = "2025-05-08T16:05:20.152Z" }, - { url = "https://files.pythonhosted.org/packages/4b/fa/a7e5b95afd80d24313307f03624acc65801846fa75599034f8ceb9e2cbf6/scipy-1.15.3-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:3b0334816afb8b91dab859281b1b9786934392aa3d527cd847e41bb6f45bee65", size = 22384499, upload-time = "2025-05-08T16:05:24.494Z" }, - { url = "https://files.pythonhosted.org/packages/17/99/f3aaddccf3588bb4aea70ba35328c204cadd89517a1612ecfda5b2dd9d7a/scipy-1.15.3-cp311-cp311-macosx_14_0_x86_64.whl", hash = "sha256:6db907c7368e3092e24919b5e31c76998b0ce1684d51a90943cb0ed1b4ffd6c1", size = 25152602, upload-time = "2025-05-08T16:05:29.313Z" }, - { url = "https://files.pythonhosted.org/packages/56/c5/1032cdb565f146109212153339f9cb8b993701e9fe56b1c97699eee12586/scipy-1.15.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:721d6b4ef5dc82ca8968c25b111e307083d7ca9091bc38163fb89243e85e3889", size = 35503415, upload-time = "2025-05-08T16:05:34.699Z" }, - { url = "https://files.pythonhosted.org/packages/bd/37/89f19c8c05505d0601ed5650156e50eb881ae3918786c8fd7262b4ee66d3/scipy-1.15.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:39cb9c62e471b1bb3750066ecc3a3f3052b37751c7c3dfd0fd7e48900ed52982", size = 37652622, upload-time = "2025-05-08T16:05:40.762Z" }, - { url = "https://files.pythonhosted.org/packages/7e/31/be59513aa9695519b18e1851bb9e487de66f2d31f835201f1b42f5d4d475/scipy-1.15.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:795c46999bae845966368a3c013e0e00947932d68e235702b5c3f6ea799aa8c9", size = 37244796, upload-time = "2025-05-08T16:05:48.119Z" }, - { url = "https://files.pythonhosted.org/packages/10/c0/4f5f3eeccc235632aab79b27a74a9130c6c35df358129f7ac8b29f562ac7/scipy-1.15.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:18aaacb735ab38b38db42cb01f6b92a2d0d4b6aabefeb07f02849e47f8fb3594", size = 40047684, upload-time = "2025-05-08T16:05:54.22Z" }, - { url = "https://files.pythonhosted.org/packages/ab/a7/0ddaf514ce8a8714f6ed243a2b391b41dbb65251affe21ee3077ec45ea9a/scipy-1.15.3-cp311-cp311-win_amd64.whl", hash = "sha256:ae48a786a28412d744c62fd7816a4118ef97e5be0bee968ce8f0a2fba7acf3bb", size = 41246504, upload-time = "2025-05-08T16:06:00.437Z" }, - { url = "https://files.pythonhosted.org/packages/37/4b/683aa044c4162e10ed7a7ea30527f2cbd92e6999c10a8ed8edb253836e9c/scipy-1.15.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:6ac6310fdbfb7aa6612408bd2f07295bcbd3fda00d2d702178434751fe48e019", size = 38766735, upload-time = "2025-05-08T16:06:06.471Z" }, - { url = "https://files.pythonhosted.org/packages/7b/7e/f30be3d03de07f25dc0ec926d1681fed5c732d759ac8f51079708c79e680/scipy-1.15.3-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:185cd3d6d05ca4b44a8f1595af87f9c372bb6acf9c808e99aa3e9aa03bd98cf6", size = 30173284, upload-time = "2025-05-08T16:06:11.686Z" }, - { url = "https://files.pythonhosted.org/packages/07/9c/0ddb0d0abdabe0d181c1793db51f02cd59e4901da6f9f7848e1f96759f0d/scipy-1.15.3-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:05dc6abcd105e1a29f95eada46d4a3f251743cfd7d3ae8ddb4088047f24ea477", size = 22446958, upload-time = "2025-05-08T16:06:15.97Z" }, - { url = "https://files.pythonhosted.org/packages/af/43/0bce905a965f36c58ff80d8bea33f1f9351b05fad4beaad4eae34699b7a1/scipy-1.15.3-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:06efcba926324df1696931a57a176c80848ccd67ce6ad020c810736bfd58eb1c", size = 25242454, upload-time = "2025-05-08T16:06:20.394Z" }, - { url = "https://files.pythonhosted.org/packages/56/30/a6f08f84ee5b7b28b4c597aca4cbe545535c39fe911845a96414700b64ba/scipy-1.15.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c05045d8b9bfd807ee1b9f38761993297b10b245f012b11b13b91ba8945f7e45", size = 35210199, upload-time = "2025-05-08T16:06:26.159Z" }, - { url = "https://files.pythonhosted.org/packages/0b/1f/03f52c282437a168ee2c7c14a1a0d0781a9a4a8962d84ac05c06b4c5b555/scipy-1.15.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:271e3713e645149ea5ea3e97b57fdab61ce61333f97cfae392c28ba786f9bb49", size = 37309455, upload-time = "2025-05-08T16:06:32.778Z" }, - { url = "https://files.pythonhosted.org/packages/89/b1/fbb53137f42c4bf630b1ffdfc2151a62d1d1b903b249f030d2b1c0280af8/scipy-1.15.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:6cfd56fc1a8e53f6e89ba3a7a7251f7396412d655bca2aa5611c8ec9a6784a1e", size = 36885140, upload-time = "2025-05-08T16:06:39.249Z" }, - { url = "https://files.pythonhosted.org/packages/2e/2e/025e39e339f5090df1ff266d021892694dbb7e63568edcfe43f892fa381d/scipy-1.15.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0ff17c0bb1cb32952c09217d8d1eed9b53d1463e5f1dd6052c7857f83127d539", size = 39710549, upload-time = "2025-05-08T16:06:45.729Z" }, - { url = "https://files.pythonhosted.org/packages/e6/eb/3bf6ea8ab7f1503dca3a10df2e4b9c3f6b3316df07f6c0ded94b281c7101/scipy-1.15.3-cp312-cp312-win_amd64.whl", hash = "sha256:52092bc0472cfd17df49ff17e70624345efece4e1a12b23783a1ac59a1b728ed", size = 40966184, upload-time = "2025-05-08T16:06:52.623Z" }, - { url = "https://files.pythonhosted.org/packages/73/18/ec27848c9baae6e0d6573eda6e01a602e5649ee72c27c3a8aad673ebecfd/scipy-1.15.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:2c620736bcc334782e24d173c0fdbb7590a0a436d2fdf39310a8902505008759", size = 38728256, upload-time = "2025-05-08T16:06:58.696Z" }, - { url = "https://files.pythonhosted.org/packages/74/cd/1aef2184948728b4b6e21267d53b3339762c285a46a274ebb7863c9e4742/scipy-1.15.3-cp313-cp313-macosx_12_0_arm64.whl", hash = "sha256:7e11270a000969409d37ed399585ee530b9ef6aa99d50c019de4cb01e8e54e62", size = 30109540, upload-time = "2025-05-08T16:07:04.209Z" }, - { url = "https://files.pythonhosted.org/packages/5b/d8/59e452c0a255ec352bd0a833537a3bc1bfb679944c4938ab375b0a6b3a3e/scipy-1.15.3-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:8c9ed3ba2c8a2ce098163a9bdb26f891746d02136995df25227a20e71c396ebb", size = 22383115, upload-time = "2025-05-08T16:07:08.998Z" }, - { url = "https://files.pythonhosted.org/packages/08/f5/456f56bbbfccf696263b47095291040655e3cbaf05d063bdc7c7517f32ac/scipy-1.15.3-cp313-cp313-macosx_14_0_x86_64.whl", hash = "sha256:0bdd905264c0c9cfa74a4772cdb2070171790381a5c4d312c973382fc6eaf730", size = 25163884, upload-time = "2025-05-08T16:07:14.091Z" }, - { url = "https://files.pythonhosted.org/packages/a2/66/a9618b6a435a0f0c0b8a6d0a2efb32d4ec5a85f023c2b79d39512040355b/scipy-1.15.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:79167bba085c31f38603e11a267d862957cbb3ce018d8b38f79ac043bc92d825", size = 35174018, upload-time = "2025-05-08T16:07:19.427Z" }, - { url = "https://files.pythonhosted.org/packages/b5/09/c5b6734a50ad4882432b6bb7c02baf757f5b2f256041da5df242e2d7e6b6/scipy-1.15.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c9deabd6d547aee2c9a81dee6cc96c6d7e9a9b1953f74850c179f91fdc729cb7", size = 37269716, upload-time = "2025-05-08T16:07:25.712Z" }, - { url = "https://files.pythonhosted.org/packages/77/0a/eac00ff741f23bcabd352731ed9b8995a0a60ef57f5fd788d611d43d69a1/scipy-1.15.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:dde4fc32993071ac0c7dd2d82569e544f0bdaff66269cb475e0f369adad13f11", size = 36872342, upload-time = "2025-05-08T16:07:31.468Z" }, - { url = "https://files.pythonhosted.org/packages/fe/54/4379be86dd74b6ad81551689107360d9a3e18f24d20767a2d5b9253a3f0a/scipy-1.15.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:f77f853d584e72e874d87357ad70f44b437331507d1c311457bed8ed2b956126", size = 39670869, upload-time = "2025-05-08T16:07:38.002Z" }, - { url = "https://files.pythonhosted.org/packages/87/2e/892ad2862ba54f084ffe8cc4a22667eaf9c2bcec6d2bff1d15713c6c0703/scipy-1.15.3-cp313-cp313-win_amd64.whl", hash = "sha256:b90ab29d0c37ec9bf55424c064312930ca5f4bde15ee8619ee44e69319aab163", size = 40988851, upload-time = "2025-05-08T16:08:33.671Z" }, - { url = "https://files.pythonhosted.org/packages/1b/e9/7a879c137f7e55b30d75d90ce3eb468197646bc7b443ac036ae3fe109055/scipy-1.15.3-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:3ac07623267feb3ae308487c260ac684b32ea35fd81e12845039952f558047b8", size = 38863011, upload-time = "2025-05-08T16:07:44.039Z" }, - { url = "https://files.pythonhosted.org/packages/51/d1/226a806bbd69f62ce5ef5f3ffadc35286e9fbc802f606a07eb83bf2359de/scipy-1.15.3-cp313-cp313t-macosx_12_0_arm64.whl", hash = "sha256:6487aa99c2a3d509a5227d9a5e889ff05830a06b2ce08ec30df6d79db5fcd5c5", size = 30266407, upload-time = "2025-05-08T16:07:49.891Z" }, - { url = "https://files.pythonhosted.org/packages/e5/9b/f32d1d6093ab9eeabbd839b0f7619c62e46cc4b7b6dbf05b6e615bbd4400/scipy-1.15.3-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:50f9e62461c95d933d5c5ef4a1f2ebf9a2b4e83b0db374cb3f1de104d935922e", size = 22540030, upload-time = "2025-05-08T16:07:54.121Z" }, - { url = "https://files.pythonhosted.org/packages/e7/29/c278f699b095c1a884f29fda126340fcc201461ee8bfea5c8bdb1c7c958b/scipy-1.15.3-cp313-cp313t-macosx_14_0_x86_64.whl", hash = "sha256:14ed70039d182f411ffc74789a16df3835e05dc469b898233a245cdfd7f162cb", size = 25218709, upload-time = "2025-05-08T16:07:58.506Z" }, - { url = "https://files.pythonhosted.org/packages/24/18/9e5374b617aba742a990581373cd6b68a2945d65cc588482749ef2e64467/scipy-1.15.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0a769105537aa07a69468a0eefcd121be52006db61cdd8cac8a0e68980bbb723", size = 34809045, upload-time = "2025-05-08T16:08:03.929Z" }, - { url = "https://files.pythonhosted.org/packages/e1/fe/9c4361e7ba2927074360856db6135ef4904d505e9b3afbbcb073c4008328/scipy-1.15.3-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9db984639887e3dffb3928d118145ffe40eff2fa40cb241a306ec57c219ebbbb", size = 36703062, upload-time = "2025-05-08T16:08:09.558Z" }, - { url = "https://files.pythonhosted.org/packages/b7/8e/038ccfe29d272b30086b25a4960f757f97122cb2ec42e62b460d02fe98e9/scipy-1.15.3-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:40e54d5c7e7ebf1aa596c374c49fa3135f04648a0caabcb66c52884b943f02b4", size = 36393132, upload-time = "2025-05-08T16:08:15.34Z" }, - { url = "https://files.pythonhosted.org/packages/10/7e/5c12285452970be5bdbe8352c619250b97ebf7917d7a9a9e96b8a8140f17/scipy-1.15.3-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:5e721fed53187e71d0ccf382b6bf977644c533e506c4d33c3fb24de89f5c3ed5", size = 38979503, upload-time = "2025-05-08T16:08:21.513Z" }, - { url = "https://files.pythonhosted.org/packages/81/06/0a5e5349474e1cbc5757975b21bd4fad0e72ebf138c5592f191646154e06/scipy-1.15.3-cp313-cp313t-win_amd64.whl", hash = "sha256:76ad1fb5f8752eabf0fa02e4cc0336b4e8f021e2d5f061ed37d6d264db35e3ca", size = 40308097, upload-time = "2025-05-08T16:08:27.627Z" }, +version = "1.16.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'extra-5-mlipx-grace') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "numpy", version = "2.1.3", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform != 'linux' or extra == 'extra-5-mlipx-fairchem' or extra != 'extra-5-mlipx-grace' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/0a/ca/d8ace4f98322d01abcd52d381134344bf7b431eba7ed8b42bdea5a3c2ac9/scipy-1.16.3.tar.gz", hash = "sha256:01e87659402762f43bd2fee13370553a17ada367d42e7487800bf2916535aecb", size = 30597883, upload-time = "2025-10-28T17:38:54.068Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9b/5f/6f37d7439de1455ce9c5a556b8d1db0979f03a796c030bafdf08d35b7bf9/scipy-1.16.3-cp311-cp311-macosx_10_14_x86_64.whl", hash = "sha256:40be6cf99e68b6c4321e9f8782e7d5ff8265af28ef2cd56e9c9b2638fa08ad97", size = 36630881, upload-time = "2025-10-28T17:31:47.104Z" }, + { url = "https://files.pythonhosted.org/packages/7c/89/d70e9f628749b7e4db2aa4cd89735502ff3f08f7b9b27d2e799485987cd9/scipy-1.16.3-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:8be1ca9170fcb6223cc7c27f4305d680ded114a1567c0bd2bfcbf947d1b17511", size = 28941012, upload-time = "2025-10-28T17:31:53.411Z" }, + { url = "https://files.pythonhosted.org/packages/a8/a8/0e7a9a6872a923505dbdf6bb93451edcac120363131c19013044a1e7cb0c/scipy-1.16.3-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:bea0a62734d20d67608660f69dcda23e7f90fb4ca20974ab80b6ed40df87a005", size = 20931935, upload-time = "2025-10-28T17:31:57.361Z" }, + { url = "https://files.pythonhosted.org/packages/bd/c7/020fb72bd79ad798e4dbe53938543ecb96b3a9ac3fe274b7189e23e27353/scipy-1.16.3-cp311-cp311-macosx_14_0_x86_64.whl", hash = "sha256:2a207a6ce9c24f1951241f4693ede2d393f59c07abc159b2cb2be980820e01fb", size = 23534466, upload-time = "2025-10-28T17:32:01.875Z" }, + { url = "https://files.pythonhosted.org/packages/be/a0/668c4609ce6dbf2f948e167836ccaf897f95fb63fa231c87da7558a374cd/scipy-1.16.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:532fb5ad6a87e9e9cd9c959b106b73145a03f04c7d57ea3e6f6bb60b86ab0876", size = 33593618, upload-time = "2025-10-28T17:32:06.902Z" }, + { url = "https://files.pythonhosted.org/packages/ca/6e/8942461cf2636cdae083e3eb72622a7fbbfa5cf559c7d13ab250a5dbdc01/scipy-1.16.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:0151a0749efeaaab78711c78422d413c583b8cdd2011a3c1d6c794938ee9fdb2", size = 35899798, upload-time = "2025-10-28T17:32:12.665Z" }, + { url = "https://files.pythonhosted.org/packages/79/e8/d0f33590364cdbd67f28ce79368b373889faa4ee959588beddf6daef9abe/scipy-1.16.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:b7180967113560cca57418a7bc719e30366b47959dd845a93206fbed693c867e", size = 36226154, upload-time = "2025-10-28T17:32:17.961Z" }, + { url = "https://files.pythonhosted.org/packages/39/c1/1903de608c0c924a1749c590064e65810f8046e437aba6be365abc4f7557/scipy-1.16.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:deb3841c925eeddb6afc1e4e4a45e418d19ec7b87c5df177695224078e8ec733", size = 38878540, upload-time = "2025-10-28T17:32:23.907Z" }, + { url = "https://files.pythonhosted.org/packages/f1/d0/22ec7036ba0b0a35bccb7f25ab407382ed34af0b111475eb301c16f8a2e5/scipy-1.16.3-cp311-cp311-win_amd64.whl", hash = "sha256:53c3844d527213631e886621df5695d35e4f6a75f620dca412bcd292f6b87d78", size = 38722107, upload-time = "2025-10-28T17:32:29.921Z" }, + { url = "https://files.pythonhosted.org/packages/7b/60/8a00e5a524bb3bf8898db1650d350f50e6cffb9d7a491c561dc9826c7515/scipy-1.16.3-cp311-cp311-win_arm64.whl", hash = "sha256:9452781bd879b14b6f055b26643703551320aa8d79ae064a71df55c00286a184", size = 25506272, upload-time = "2025-10-28T17:32:34.577Z" }, + { url = "https://files.pythonhosted.org/packages/40/41/5bf55c3f386b1643812f3a5674edf74b26184378ef0f3e7c7a09a7e2ca7f/scipy-1.16.3-cp312-cp312-macosx_10_14_x86_64.whl", hash = "sha256:81fc5827606858cf71446a5e98715ba0e11f0dbc83d71c7409d05486592a45d6", size = 36659043, upload-time = "2025-10-28T17:32:40.285Z" }, + { url = "https://files.pythonhosted.org/packages/1e/0f/65582071948cfc45d43e9870bf7ca5f0e0684e165d7c9ef4e50d783073eb/scipy-1.16.3-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:c97176013d404c7346bf57874eaac5187d969293bf40497140b0a2b2b7482e07", size = 28898986, upload-time = "2025-10-28T17:32:45.325Z" }, + { url = "https://files.pythonhosted.org/packages/96/5e/36bf3f0ac298187d1ceadde9051177d6a4fe4d507e8f59067dc9dd39e650/scipy-1.16.3-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:2b71d93c8a9936046866acebc915e2af2e292b883ed6e2cbe5c34beb094b82d9", size = 20889814, upload-time = "2025-10-28T17:32:49.277Z" }, + { url = "https://files.pythonhosted.org/packages/80/35/178d9d0c35394d5d5211bbff7ac4f2986c5488b59506fef9e1de13ea28d3/scipy-1.16.3-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:3d4a07a8e785d80289dfe66b7c27d8634a773020742ec7187b85ccc4b0e7b686", size = 23565795, upload-time = "2025-10-28T17:32:53.337Z" }, + { url = "https://files.pythonhosted.org/packages/fa/46/d1146ff536d034d02f83c8afc3c4bab2eddb634624d6529a8512f3afc9da/scipy-1.16.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:0553371015692a898e1aa858fed67a3576c34edefa6b7ebdb4e9dde49ce5c203", size = 33349476, upload-time = "2025-10-28T17:32:58.353Z" }, + { url = "https://files.pythonhosted.org/packages/79/2e/415119c9ab3e62249e18c2b082c07aff907a273741b3f8160414b0e9193c/scipy-1.16.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:72d1717fd3b5e6ec747327ce9bda32d5463f472c9dce9f54499e81fbd50245a1", size = 35676692, upload-time = "2025-10-28T17:33:03.88Z" }, + { url = "https://files.pythonhosted.org/packages/27/82/df26e44da78bf8d2aeaf7566082260cfa15955a5a6e96e6a29935b64132f/scipy-1.16.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:1fb2472e72e24d1530debe6ae078db70fb1605350c88a3d14bc401d6306dbffe", size = 36019345, upload-time = "2025-10-28T17:33:09.773Z" }, + { url = "https://files.pythonhosted.org/packages/82/31/006cbb4b648ba379a95c87262c2855cd0d09453e500937f78b30f02fa1cd/scipy-1.16.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:c5192722cffe15f9329a3948c4b1db789fbb1f05c97899187dcf009b283aea70", size = 38678975, upload-time = "2025-10-28T17:33:15.809Z" }, + { url = "https://files.pythonhosted.org/packages/c2/7f/acbd28c97e990b421af7d6d6cd416358c9c293fc958b8529e0bd5d2a2a19/scipy-1.16.3-cp312-cp312-win_amd64.whl", hash = "sha256:56edc65510d1331dae01ef9b658d428e33ed48b4f77b1d51caf479a0253f96dc", size = 38555926, upload-time = "2025-10-28T17:33:21.388Z" }, + { url = "https://files.pythonhosted.org/packages/ce/69/c5c7807fd007dad4f48e0a5f2153038dc96e8725d3345b9ee31b2b7bed46/scipy-1.16.3-cp312-cp312-win_arm64.whl", hash = "sha256:a8a26c78ef223d3e30920ef759e25625a0ecdd0d60e5a8818b7513c3e5384cf2", size = 25463014, upload-time = "2025-10-28T17:33:25.975Z" }, + { url = "https://files.pythonhosted.org/packages/72/f1/57e8327ab1508272029e27eeef34f2302ffc156b69e7e233e906c2a5c379/scipy-1.16.3-cp313-cp313-macosx_10_14_x86_64.whl", hash = "sha256:d2ec56337675e61b312179a1ad124f5f570c00f920cc75e1000025451b88241c", size = 36617856, upload-time = "2025-10-28T17:33:31.375Z" }, + { url = "https://files.pythonhosted.org/packages/44/13/7e63cfba8a7452eb756306aa2fd9b37a29a323b672b964b4fdeded9a3f21/scipy-1.16.3-cp313-cp313-macosx_12_0_arm64.whl", hash = "sha256:16b8bc35a4cc24db80a0ec836a9286d0e31b2503cb2fd7ff7fb0e0374a97081d", size = 28874306, upload-time = "2025-10-28T17:33:36.516Z" }, + { url = "https://files.pythonhosted.org/packages/15/65/3a9400efd0228a176e6ec3454b1fa998fbbb5a8defa1672c3f65706987db/scipy-1.16.3-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:5803c5fadd29de0cf27fa08ccbfe7a9e5d741bf63e4ab1085437266f12460ff9", size = 20865371, upload-time = "2025-10-28T17:33:42.094Z" }, + { url = "https://files.pythonhosted.org/packages/33/d7/eda09adf009a9fb81827194d4dd02d2e4bc752cef16737cc4ef065234031/scipy-1.16.3-cp313-cp313-macosx_14_0_x86_64.whl", hash = "sha256:b81c27fc41954319a943d43b20e07c40bdcd3ff7cf013f4fb86286faefe546c4", size = 23524877, upload-time = "2025-10-28T17:33:48.483Z" }, + { url = "https://files.pythonhosted.org/packages/7d/6b/3f911e1ebc364cb81320223a3422aab7d26c9c7973109a9cd0f27c64c6c0/scipy-1.16.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:0c3b4dd3d9b08dbce0f3440032c52e9e2ab9f96ade2d3943313dfe51a7056959", size = 33342103, upload-time = "2025-10-28T17:33:56.495Z" }, + { url = "https://files.pythonhosted.org/packages/21/f6/4bfb5695d8941e5c570a04d9fcd0d36bce7511b7d78e6e75c8f9791f82d0/scipy-1.16.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:7dc1360c06535ea6116a2220f760ae572db9f661aba2d88074fe30ec2aa1ff88", size = 35697297, upload-time = "2025-10-28T17:34:04.722Z" }, + { url = "https://files.pythonhosted.org/packages/04/e1/6496dadbc80d8d896ff72511ecfe2316b50313bfc3ebf07a3f580f08bd8c/scipy-1.16.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:663b8d66a8748051c3ee9c96465fb417509315b99c71550fda2591d7dd634234", size = 36021756, upload-time = "2025-10-28T17:34:13.482Z" }, + { url = "https://files.pythonhosted.org/packages/fe/bd/a8c7799e0136b987bda3e1b23d155bcb31aec68a4a472554df5f0937eef7/scipy-1.16.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:eab43fae33a0c39006a88096cd7b4f4ef545ea0447d250d5ac18202d40b6611d", size = 38696566, upload-time = "2025-10-28T17:34:22.384Z" }, + { url = "https://files.pythonhosted.org/packages/cd/01/1204382461fcbfeb05b6161b594f4007e78b6eba9b375382f79153172b4d/scipy-1.16.3-cp313-cp313-win_amd64.whl", hash = "sha256:062246acacbe9f8210de8e751b16fc37458213f124bef161a5a02c7a39284304", size = 38529877, upload-time = "2025-10-28T17:35:51.076Z" }, + { url = "https://files.pythonhosted.org/packages/7f/14/9d9fbcaa1260a94f4bb5b64ba9213ceb5d03cd88841fe9fd1ffd47a45b73/scipy-1.16.3-cp313-cp313-win_arm64.whl", hash = "sha256:50a3dbf286dbc7d84f176f9a1574c705f277cb6565069f88f60db9eafdbe3ee2", size = 25455366, upload-time = "2025-10-28T17:35:59.014Z" }, + { url = "https://files.pythonhosted.org/packages/e2/a3/9ec205bd49f42d45d77f1730dbad9ccf146244c1647605cf834b3a8c4f36/scipy-1.16.3-cp313-cp313t-macosx_10_14_x86_64.whl", hash = "sha256:fb4b29f4cf8cc5a8d628bc8d8e26d12d7278cd1f219f22698a378c3d67db5e4b", size = 37027931, upload-time = "2025-10-28T17:34:31.451Z" }, + { url = "https://files.pythonhosted.org/packages/25/06/ca9fd1f3a4589cbd825b1447e5db3a8ebb969c1eaf22c8579bd286f51b6d/scipy-1.16.3-cp313-cp313t-macosx_12_0_arm64.whl", hash = "sha256:8d09d72dc92742988b0e7750bddb8060b0c7079606c0d24a8cc8e9c9c11f9079", size = 29400081, upload-time = "2025-10-28T17:34:39.087Z" }, + { url = "https://files.pythonhosted.org/packages/6a/56/933e68210d92657d93fb0e381683bc0e53a965048d7358ff5fbf9e6a1b17/scipy-1.16.3-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:03192a35e661470197556de24e7cb1330d84b35b94ead65c46ad6f16f6b28f2a", size = 21391244, upload-time = "2025-10-28T17:34:45.234Z" }, + { url = "https://files.pythonhosted.org/packages/a8/7e/779845db03dc1418e215726329674b40576879b91814568757ff0014ad65/scipy-1.16.3-cp313-cp313t-macosx_14_0_x86_64.whl", hash = "sha256:57d01cb6f85e34f0946b33caa66e892aae072b64b034183f3d87c4025802a119", size = 23929753, upload-time = "2025-10-28T17:34:51.793Z" }, + { url = "https://files.pythonhosted.org/packages/4c/4b/f756cf8161d5365dcdef9e5f460ab226c068211030a175d2fc7f3f41ca64/scipy-1.16.3-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:96491a6a54e995f00a28a3c3badfff58fd093bf26cd5fb34a2188c8c756a3a2c", size = 33496912, upload-time = "2025-10-28T17:34:59.8Z" }, + { url = "https://files.pythonhosted.org/packages/09/b5/222b1e49a58668f23839ca1542a6322bb095ab8d6590d4f71723869a6c2c/scipy-1.16.3-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:cd13e354df9938598af2be05822c323e97132d5e6306b83a3b4ee6724c6e522e", size = 35802371, upload-time = "2025-10-28T17:35:08.173Z" }, + { url = "https://files.pythonhosted.org/packages/c1/8d/5964ef68bb31829bde27611f8c9deeac13764589fe74a75390242b64ca44/scipy-1.16.3-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:63d3cdacb8a824a295191a723ee5e4ea7768ca5ca5f2838532d9f2e2b3ce2135", size = 36190477, upload-time = "2025-10-28T17:35:16.7Z" }, + { url = "https://files.pythonhosted.org/packages/ab/f2/b31d75cb9b5fa4dd39a0a931ee9b33e7f6f36f23be5ef560bf72e0f92f32/scipy-1.16.3-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:e7efa2681ea410b10dde31a52b18b0154d66f2485328830e45fdf183af5aefc6", size = 38796678, upload-time = "2025-10-28T17:35:26.354Z" }, + { url = "https://files.pythonhosted.org/packages/b4/1e/b3723d8ff64ab548c38d87055483714fefe6ee20e0189b62352b5e015bb1/scipy-1.16.3-cp313-cp313t-win_amd64.whl", hash = "sha256:2d1ae2cf0c350e7705168ff2429962a89ad90c2d49d1dd300686d8b2a5af22fc", size = 38640178, upload-time = "2025-10-28T17:35:35.304Z" }, + { url = "https://files.pythonhosted.org/packages/8e/f3/d854ff38789aca9b0cc23008d607ced9de4f7ab14fa1ca4329f86b3758ca/scipy-1.16.3-cp313-cp313t-win_arm64.whl", hash = "sha256:0c623a54f7b79dd88ef56da19bc2873afec9673a48f3b85b18e4d402bdd29a5a", size = 25803246, upload-time = "2025-10-28T17:35:42.155Z" }, + { url = "https://files.pythonhosted.org/packages/99/f6/99b10fd70f2d864c1e29a28bbcaa0c6340f9d8518396542d9ea3b4aaae15/scipy-1.16.3-cp314-cp314-macosx_10_14_x86_64.whl", hash = "sha256:875555ce62743e1d54f06cdf22c1e0bc47b91130ac40fe5d783b6dfa114beeb6", size = 36606469, upload-time = "2025-10-28T17:36:08.741Z" }, + { url = "https://files.pythonhosted.org/packages/4d/74/043b54f2319f48ea940dd025779fa28ee360e6b95acb7cd188fad4391c6b/scipy-1.16.3-cp314-cp314-macosx_12_0_arm64.whl", hash = "sha256:bb61878c18a470021fb515a843dc7a76961a8daceaaaa8bad1332f1bf4b54657", size = 28872043, upload-time = "2025-10-28T17:36:16.599Z" }, + { url = "https://files.pythonhosted.org/packages/4d/e1/24b7e50cc1c4ee6ffbcb1f27fe9f4c8b40e7911675f6d2d20955f41c6348/scipy-1.16.3-cp314-cp314-macosx_14_0_arm64.whl", hash = "sha256:f2622206f5559784fa5c4b53a950c3c7c1cf3e84ca1b9c4b6c03f062f289ca26", size = 20862952, upload-time = "2025-10-28T17:36:22.966Z" }, + { url = "https://files.pythonhosted.org/packages/dd/3a/3e8c01a4d742b730df368e063787c6808597ccb38636ed821d10b39ca51b/scipy-1.16.3-cp314-cp314-macosx_14_0_x86_64.whl", hash = "sha256:7f68154688c515cdb541a31ef8eb66d8cd1050605be9dcd74199cbd22ac739bc", size = 23508512, upload-time = "2025-10-28T17:36:29.731Z" }, + { url = "https://files.pythonhosted.org/packages/1f/60/c45a12b98ad591536bfe5330cb3cfe1850d7570259303563b1721564d458/scipy-1.16.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:8b3c820ddb80029fe9f43d61b81d8b488d3ef8ca010d15122b152db77dc94c22", size = 33413639, upload-time = "2025-10-28T17:36:37.982Z" }, + { url = "https://files.pythonhosted.org/packages/71/bc/35957d88645476307e4839712642896689df442f3e53b0fa016ecf8a3357/scipy-1.16.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:d3837938ae715fc0fe3c39c0202de3a8853aff22ca66781ddc2ade7554b7e2cc", size = 35704729, upload-time = "2025-10-28T17:36:46.547Z" }, + { url = "https://files.pythonhosted.org/packages/3b/15/89105e659041b1ca11c386e9995aefacd513a78493656e57789f9d9eab61/scipy-1.16.3-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:aadd23f98f9cb069b3bd64ddc900c4d277778242e961751f77a8cb5c4b946fb0", size = 36086251, upload-time = "2025-10-28T17:36:55.161Z" }, + { url = "https://files.pythonhosted.org/packages/1a/87/c0ea673ac9c6cc50b3da2196d860273bc7389aa69b64efa8493bdd25b093/scipy-1.16.3-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:b7c5f1bda1354d6a19bc6af73a649f8285ca63ac6b52e64e658a5a11d4d69800", size = 38716681, upload-time = "2025-10-28T17:37:04.1Z" }, + { url = "https://files.pythonhosted.org/packages/91/06/837893227b043fb9b0d13e4bd7586982d8136cb249ffb3492930dab905b8/scipy-1.16.3-cp314-cp314-win_amd64.whl", hash = "sha256:e5d42a9472e7579e473879a1990327830493a7047506d58d73fc429b84c1d49d", size = 39358423, upload-time = "2025-10-28T17:38:20.005Z" }, + { url = "https://files.pythonhosted.org/packages/95/03/28bce0355e4d34a7c034727505a02d19548549e190bedd13a721e35380b7/scipy-1.16.3-cp314-cp314-win_arm64.whl", hash = "sha256:6020470b9d00245926f2d5bb93b119ca0340f0d564eb6fbaad843eaebf9d690f", size = 26135027, upload-time = "2025-10-28T17:38:24.966Z" }, + { url = "https://files.pythonhosted.org/packages/b2/6f/69f1e2b682efe9de8fe9f91040f0cd32f13cfccba690512ba4c582b0bc29/scipy-1.16.3-cp314-cp314t-macosx_10_14_x86_64.whl", hash = "sha256:e1d27cbcb4602680a49d787d90664fa4974063ac9d4134813332a8c53dbe667c", size = 37028379, upload-time = "2025-10-28T17:37:14.061Z" }, + { url = "https://files.pythonhosted.org/packages/7c/2d/e826f31624a5ebbab1cd93d30fd74349914753076ed0593e1d56a98c4fb4/scipy-1.16.3-cp314-cp314t-macosx_12_0_arm64.whl", hash = "sha256:9b9c9c07b6d56a35777a1b4cc8966118fb16cfd8daf6743867d17d36cfad2d40", size = 29400052, upload-time = "2025-10-28T17:37:21.709Z" }, + { url = "https://files.pythonhosted.org/packages/69/27/d24feb80155f41fd1f156bf144e7e049b4e2b9dd06261a242905e3bc7a03/scipy-1.16.3-cp314-cp314t-macosx_14_0_arm64.whl", hash = "sha256:3a4c460301fb2cffb7f88528f30b3127742cff583603aa7dc964a52c463b385d", size = 21391183, upload-time = "2025-10-28T17:37:29.559Z" }, + { url = "https://files.pythonhosted.org/packages/f8/d3/1b229e433074c5738a24277eca520a2319aac7465eea7310ea6ae0e98ae2/scipy-1.16.3-cp314-cp314t-macosx_14_0_x86_64.whl", hash = "sha256:f667a4542cc8917af1db06366d3f78a5c8e83badd56409f94d1eac8d8d9133fa", size = 23930174, upload-time = "2025-10-28T17:37:36.306Z" }, + { url = "https://files.pythonhosted.org/packages/16/9d/d9e148b0ec680c0f042581a2be79a28a7ab66c0c4946697f9e7553ead337/scipy-1.16.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:f379b54b77a597aa7ee5e697df0d66903e41b9c85a6dd7946159e356319158e8", size = 33497852, upload-time = "2025-10-28T17:37:42.228Z" }, + { url = "https://files.pythonhosted.org/packages/2f/22/4e5f7561e4f98b7bea63cf3fd7934bff1e3182e9f1626b089a679914d5c8/scipy-1.16.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:4aff59800a3b7f786b70bfd6ab551001cb553244988d7d6b8299cb1ea653b353", size = 35798595, upload-time = "2025-10-28T17:37:48.102Z" }, + { url = "https://files.pythonhosted.org/packages/83/42/6644d714c179429fc7196857866f219fef25238319b650bb32dde7bf7a48/scipy-1.16.3-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:da7763f55885045036fabcebd80144b757d3db06ab0861415d1c3b7c69042146", size = 36186269, upload-time = "2025-10-28T17:37:53.72Z" }, + { url = "https://files.pythonhosted.org/packages/ac/70/64b4d7ca92f9cf2e6fc6aaa2eecf80bb9b6b985043a9583f32f8177ea122/scipy-1.16.3-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:ffa6eea95283b2b8079b821dc11f50a17d0571c92b43e2b5b12764dc5f9b285d", size = 38802779, upload-time = "2025-10-28T17:37:59.393Z" }, + { url = "https://files.pythonhosted.org/packages/61/82/8d0e39f62764cce5ffd5284131e109f07cf8955aef9ab8ed4e3aa5e30539/scipy-1.16.3-cp314-cp314t-win_amd64.whl", hash = "sha256:d9f48cafc7ce94cf9b15c6bffdc443a81a27bf7075cf2dcd5c8b40f85d10c4e7", size = 39471128, upload-time = "2025-10-28T17:38:05.259Z" }, + { url = "https://files.pythonhosted.org/packages/64/47/a494741db7280eae6dc033510c319e34d42dd41b7ac0c7ead39354d1a2b5/scipy-1.16.3-cp314-cp314t-win_arm64.whl", hash = "sha256:21d9d6b197227a12dcbf9633320a4e34c6b0e51c57268df255a0942983bac562", size = 26464127, upload-time = "2025-10-28T17:38:11.34Z" }, ] [[package]] name = "scmrepo" -version = "3.3.11" +version = "3.5.9" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "aiohttp-retry" }, @@ -12959,9 +11890,9 @@ dependencies = [ { name = "pygtrie" }, { name = "tqdm" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/25/c9/a05b8ce93ce8470e44f430f664396396b6b183cbe899407e8cd286a29165/scmrepo-3.3.11.tar.gz", hash = "sha256:eb25424a7cc1290e3e0aeaa8a39bb8347b9abc5fab33356e8a70db530d7d06b6", size = 94532, upload-time = "2025-04-30T09:31:34.099Z" } +sdist = { url = "https://files.pythonhosted.org/packages/08/03/e0f2aab330b946750bf3281251fc695064a42a7a8326ab5c8a4efec0d0a2/scmrepo-3.5.9.tar.gz", hash = "sha256:8683299fb903325e45ecee1df944ede6f02535cf36ef6dea3302a0b4405d9c98", size = 97478, upload-time = "2025-12-02T15:11:10.992Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/98/08/45886c7be04da8ad65b8c943c28359678e99b0b1a9ff84c6d508950bd0fc/scmrepo-3.3.11-py3-none-any.whl", hash = "sha256:58b7948b218abecd3637d91ff937c442315052d3340bf7abc0a867ef2fb14e0c", size = 73115, upload-time = "2025-04-30T09:31:32.134Z" }, + { url = "https://files.pythonhosted.org/packages/7c/1e/ba8ffdf3028ca9545b15ad47362e5722ac06fb802817aab2b58082a6fffa/scmrepo-3.5.9-py3-none-any.whl", hash = "sha256:e7d4c86c904ceefb3e67c4eda0d348e4c7b7c78979b342f33fd8e28b813742e9", size = 74280, upload-time = "2025-12-02T15:11:09.783Z" }, ] [[package]] @@ -12969,7 +11900,8 @@ name = "seekpath" version = "2.1.0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" } }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb')" }, + { name = "numpy", version = "2.1.3", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'linux' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb')" }, { name = "spglib" }, ] sdist = { url = "https://files.pythonhosted.org/packages/55/6c/0a0525f78062d126f29930042d26478824d56fb7dca754373368309a02d2/seekpath-2.1.0.tar.gz", hash = "sha256:31cec579628262e6d4a4c3693fefa70d6ccae1ceeef7c9d10ea3cd48988452c4", size = 62257, upload-time = "2023-05-19T17:44:30.3Z" } @@ -12997,93 +11929,24 @@ wheels = [ [[package]] name = "sentinels" -version = "1.0.0" +version = "1.1.1" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/ac/b7/1af07a98390aba07da31807f3723e7bbd003d6441b4b3d67b20d97702b23/sentinels-1.0.0.tar.gz", hash = "sha256:7be0704d7fe1925e397e92d18669ace2f619c92b5d4eb21a89f31e026f9ff4b1", size = 4074, upload-time = "2016-08-30T07:19:19.963Z" } +sdist = { url = "https://files.pythonhosted.org/packages/6f/9b/07195878aa25fe6ed209ec74bc55ae3e3d263b60a489c6e73fdca3c8fe05/sentinels-1.1.1.tar.gz", hash = "sha256:3c2f64f754187c19e0a1a029b148b74cf58dd12ec27b4e19c0e5d6e22b5a9a86", size = 4393, upload-time = "2025-08-12T07:57:50.26Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/49/65/dea992c6a97074f6d8ff9eab34741298cac2ce23e2b6c74fb7d08afdf85c/sentinels-1.1.1-py3-none-any.whl", hash = "sha256:835d3b28f3b47f5284afa4bf2db6e00f2dc5f80f9923d4b7e7aeeeccf6146a11", size = 3744, upload-time = "2025-08-12T07:57:48.858Z" }, +] [[package]] name = "sentry-sdk" -version = "2.29.1" +version = "2.47.0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "certifi" }, - { name = "urllib3" }, + { name = "certifi", marker = "extra == 'extra-5-mlipx-fairchem' or extra == 'extra-5-mlipx-mattersim' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, + { name = "urllib3", marker = "extra == 'extra-5-mlipx-fairchem' or extra == 'extra-5-mlipx-mattersim' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/22/67/d552a5f8e5a6a56b2feea6529e2d8ccd54349084c84176d5a1f7295044bc/sentry_sdk-2.29.1.tar.gz", hash = "sha256:8d4a0206b95fa5fe85e5e7517ed662e3888374bdc342c00e435e10e6d831aa6d", size = 325518, upload-time = "2025-05-19T14:27:38.512Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/f0/e5/da07b0bd832cefd52d16f2b9bbbe31624d57552602c06631686b93ccb1bd/sentry_sdk-2.29.1-py2.py3-none-any.whl", hash = "sha256:90862fe0616ded4572da6c9dadb363121a1ae49a49e21c418f0634e9d10b4c19", size = 341553, upload-time = "2025-05-19T14:27:36.882Z" }, -] - -[[package]] -name = "setproctitle" -version = "1.3.6" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/9e/af/56efe21c53ac81ac87e000b15e60b3d8104224b4313b6eacac3597bd183d/setproctitle-1.3.6.tar.gz", hash = "sha256:c9f32b96c700bb384f33f7cf07954bb609d35dd82752cef57fb2ee0968409169", size = 26889, upload-time = "2025-04-29T13:35:00.184Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/7d/db/8214810cae49e2e474ea741aaa7d6111486f27377e864f0eb6d297c9be56/setproctitle-1.3.6-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:ebcf34b69df4ca0eabaaaf4a3d890f637f355fed00ba806f7ebdd2d040658c26", size = 17412, upload-time = "2025-04-29T13:32:38.795Z" }, - { url = "https://files.pythonhosted.org/packages/a4/45/909b0dcd68b16d2e58de0e861c0c0b67748ccc87ff9b59136e9710b528b1/setproctitle-1.3.6-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:1aa1935aa2195b76f377e5cb018290376b7bf085f0b53f5a95c0c21011b74367", size = 11966, upload-time = "2025-04-29T13:32:41.289Z" }, - { url = "https://files.pythonhosted.org/packages/8a/f4/f1cd54fedae1cdacf1d1db833dc096bfb1f029451f60e68563e4c26ed2f7/setproctitle-1.3.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:13624d9925bb481bc0ccfbc7f533da38bfbfe6e80652314f789abc78c2e513bd", size = 31350, upload-time = "2025-04-29T13:32:43.013Z" }, - { url = "https://files.pythonhosted.org/packages/5a/5f/f159b22d286a349633d4090090b8e6632fb84575a64f189b68e70a613c65/setproctitle-1.3.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:97a138fa875c6f281df7720dac742259e85518135cd0e3551aba1c628103d853", size = 32704, upload-time = "2025-04-29T13:32:44.215Z" }, - { url = "https://files.pythonhosted.org/packages/9c/25/e5ea2673d951dafc04b6544d7b33dd9283733d715c8f40e93d39ae35d6a0/setproctitle-1.3.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c86e9e82bfab579327dbe9b82c71475165fbc8b2134d24f9a3b2edaf200a5c3d", size = 29833, upload-time = "2025-04-29T13:32:45.882Z" }, - { url = "https://files.pythonhosted.org/packages/67/2b/c3cbd4a4462c1143465d8c151f1d51bbfb418e60a96a754329d28d416575/setproctitle-1.3.6-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6af330ddc2ec05a99c3933ab3cba9365357c0b8470a7f2fa054ee4b0984f57d1", size = 30884, upload-time = "2025-04-29T13:32:47.515Z" }, - { url = "https://files.pythonhosted.org/packages/27/04/b43a622a9fbf0f216a50b523067d3b07739ede2106a7226223e33abf6659/setproctitle-1.3.6-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:109fc07b1cd6cef9c245b2028e3e98e038283342b220def311d0239179810dbe", size = 30798, upload-time = "2025-04-29T13:32:48.717Z" }, - { url = "https://files.pythonhosted.org/packages/41/60/8eb197b56b0a3110eef2a1d2ddb61b3f5809dbab9d975aa40c86e5d4b312/setproctitle-1.3.6-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:7df5fcc48588f82b6cc8073db069609ddd48a49b1e9734a20d0efb32464753c4", size = 29758, upload-time = "2025-04-29T13:32:50.3Z" }, - { url = "https://files.pythonhosted.org/packages/db/1d/c394322a5425c12f4ada0696eb6d194768752d4e3acaca0c9d593025feb4/setproctitle-1.3.6-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:2407955dc359d735a20ac6e797ad160feb33d529a2ac50695c11a1ec680eafab", size = 32157, upload-time = "2025-04-29T13:32:52.026Z" }, - { url = "https://files.pythonhosted.org/packages/e7/24/ce080682b144f057814efbe95daac09149e90f7689e2515897817a941686/setproctitle-1.3.6-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:38ca045626af693da042ac35d7332e7b9dbd52e6351d6973b310612e3acee6d6", size = 30291, upload-time = "2025-04-29T13:32:53.737Z" }, - { url = "https://files.pythonhosted.org/packages/a7/4f/4db265493567865428dcec376f8142a9c65d27c10c3ac915d173b4053afb/setproctitle-1.3.6-cp310-cp310-win32.whl", hash = "sha256:9483aa336687463f5497dd37a070094f3dff55e2c888994f8440fcf426a1a844", size = 11492, upload-time = "2025-04-29T13:32:55.271Z" }, - { url = "https://files.pythonhosted.org/packages/38/b0/64c3948f7957db44b4c5edfe9c197de493144dc915ddf95cf36aeca0dc52/setproctitle-1.3.6-cp310-cp310-win_amd64.whl", hash = "sha256:4efc91b437f6ff2578e89e3f17d010c0a0ff01736606473d082913ecaf7859ba", size = 12204, upload-time = "2025-04-29T13:32:56.711Z" }, - { url = "https://files.pythonhosted.org/packages/27/3b/8288d0cd969a63500dd62fc2c99ce6980f9909ccef0770ab1f86c361e0bf/setproctitle-1.3.6-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:a1d856b0f4e4a33e31cdab5f50d0a14998f3a2d726a3fd5cb7c4d45a57b28d1b", size = 17412, upload-time = "2025-04-29T13:32:58.135Z" }, - { url = "https://files.pythonhosted.org/packages/39/37/43a5a3e25ca1048dbbf4db0d88d346226f5f1acd131bb8e660f4bfe2799f/setproctitle-1.3.6-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:50706b9c0eda55f7de18695bfeead5f28b58aa42fd5219b3b1692d554ecbc9ec", size = 11963, upload-time = "2025-04-29T13:32:59.17Z" }, - { url = "https://files.pythonhosted.org/packages/5b/47/f103c40e133154783c91a10ab08ac9fc410ed835aa85bcf7107cb882f505/setproctitle-1.3.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:af188f3305f0a65c3217c30c6d4c06891e79144076a91e8b454f14256acc7279", size = 31718, upload-time = "2025-04-29T13:33:00.36Z" }, - { url = "https://files.pythonhosted.org/packages/1f/13/7325dd1c008dd6c0ebd370ddb7505977054a87e406f142318e395031a792/setproctitle-1.3.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cce0ed8b3f64c71c140f0ec244e5fdf8ecf78ddf8d2e591d4a8b6aa1c1214235", size = 33027, upload-time = "2025-04-29T13:33:01.499Z" }, - { url = "https://files.pythonhosted.org/packages/0c/0a/6075bfea05a71379d77af98a9ac61163e8b6e5ef1ae58cd2b05871b2079c/setproctitle-1.3.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:70100e2087fe05359f249a0b5f393127b3a1819bf34dec3a3e0d4941138650c9", size = 30223, upload-time = "2025-04-29T13:33:03.259Z" }, - { url = "https://files.pythonhosted.org/packages/cc/41/fbf57ec52f4f0776193bd94334a841f0bc9d17e745f89c7790f336420c65/setproctitle-1.3.6-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1065ed36bd03a3fd4186d6c6de5f19846650b015789f72e2dea2d77be99bdca1", size = 31204, upload-time = "2025-04-29T13:33:04.455Z" }, - { url = "https://files.pythonhosted.org/packages/97/b5/f799fb7a00de29fb0ac1dfd015528dea425b9e31a8f1068a0b3df52d317f/setproctitle-1.3.6-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:4adf6a0013fe4e0844e3ba7583ec203ca518b9394c6cc0d3354df2bf31d1c034", size = 31181, upload-time = "2025-04-29T13:33:05.697Z" }, - { url = "https://files.pythonhosted.org/packages/b5/b7/81f101b612014ec61723436022c31146178813d6ca6b947f7b9c84e9daf4/setproctitle-1.3.6-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:eb7452849f6615871eabed6560ffedfe56bc8af31a823b6be4ce1e6ff0ab72c5", size = 30101, upload-time = "2025-04-29T13:33:07.223Z" }, - { url = "https://files.pythonhosted.org/packages/67/23/681232eed7640eab96719daa8647cc99b639e3daff5c287bd270ef179a73/setproctitle-1.3.6-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:a094b7ce455ca341b59a0f6ce6be2e11411ba6e2860b9aa3dbb37468f23338f4", size = 32438, upload-time = "2025-04-29T13:33:08.538Z" }, - { url = "https://files.pythonhosted.org/packages/19/f8/4d075a7bdc3609ac71535b849775812455e4c40aedfbf0778a6f123b1774/setproctitle-1.3.6-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:ad1c2c2baaba62823a7f348f469a967ece0062140ca39e7a48e4bbb1f20d54c4", size = 30625, upload-time = "2025-04-29T13:33:09.707Z" }, - { url = "https://files.pythonhosted.org/packages/5f/73/a2a8259ebee166aee1ca53eead75de0e190b3ddca4f716e5c7470ebb7ef6/setproctitle-1.3.6-cp311-cp311-win32.whl", hash = "sha256:8050c01331135f77ec99d99307bfbc6519ea24d2f92964b06f3222a804a3ff1f", size = 11488, upload-time = "2025-04-29T13:33:10.953Z" }, - { url = "https://files.pythonhosted.org/packages/c9/15/52cf5e1ff0727d53704cfdde2858eaf237ce523b0b04db65faa84ff83e13/setproctitle-1.3.6-cp311-cp311-win_amd64.whl", hash = "sha256:9b73cf0fe28009a04a35bb2522e4c5b5176cc148919431dcb73fdbdfaab15781", size = 12201, upload-time = "2025-04-29T13:33:12.389Z" }, - { url = "https://files.pythonhosted.org/packages/8f/fb/99456fd94d4207c5f6c40746a048a33a52b4239cd7d9c8d4889e2210ec82/setproctitle-1.3.6-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:af44bb7a1af163806bbb679eb8432fa7b4fb6d83a5d403b541b675dcd3798638", size = 17399, upload-time = "2025-04-29T13:33:13.406Z" }, - { url = "https://files.pythonhosted.org/packages/d5/48/9699191fe6062827683c43bfa9caac33a2c89f8781dd8c7253fa3dba85fd/setproctitle-1.3.6-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:3cca16fd055316a48f0debfcbfb6af7cea715429fc31515ab3fcac05abd527d8", size = 11966, upload-time = "2025-04-29T13:33:14.976Z" }, - { url = "https://files.pythonhosted.org/packages/33/03/b085d192b9ecb9c7ce6ad6ef30ecf4110b7f39430b58a56245569827fcf4/setproctitle-1.3.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ea002088d5554fd75e619742cefc78b84a212ba21632e59931b3501f0cfc8f67", size = 32017, upload-time = "2025-04-29T13:33:16.163Z" }, - { url = "https://files.pythonhosted.org/packages/ae/68/c53162e645816f97212002111420d1b2f75bf6d02632e37e961dc2cd6d8b/setproctitle-1.3.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:bb465dd5825356c1191a038a86ee1b8166e3562d6e8add95eec04ab484cfb8a2", size = 33419, upload-time = "2025-04-29T13:33:18.239Z" }, - { url = "https://files.pythonhosted.org/packages/ac/0d/119a45d15a816a6cf5ccc61b19729f82620095b27a47e0a6838216a95fae/setproctitle-1.3.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d2c8e20487b3b73c1fa72c56f5c89430617296cd380373e7af3a538a82d4cd6d", size = 30711, upload-time = "2025-04-29T13:33:19.571Z" }, - { url = "https://files.pythonhosted.org/packages/e3/fb/5e9b5068df9e9f31a722a775a5e8322a29a638eaaa3eac5ea7f0b35e6314/setproctitle-1.3.6-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a0d6252098e98129a1decb59b46920d4eca17b0395f3d71b0d327d086fefe77d", size = 31742, upload-time = "2025-04-29T13:33:21.172Z" }, - { url = "https://files.pythonhosted.org/packages/35/88/54de1e73e8fce87d587889c7eedb48fc4ee2bbe4e4ca6331690d03024f86/setproctitle-1.3.6-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:cf355fbf0d4275d86f9f57be705d8e5eaa7f8ddb12b24ced2ea6cbd68fdb14dc", size = 31925, upload-time = "2025-04-29T13:33:22.427Z" }, - { url = "https://files.pythonhosted.org/packages/f3/01/65948d7badd66e63e3db247b923143da142790fa293830fdecf832712c2d/setproctitle-1.3.6-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:e288f8a162d663916060beb5e8165a8551312b08efee9cf68302687471a6545d", size = 30981, upload-time = "2025-04-29T13:33:23.739Z" }, - { url = "https://files.pythonhosted.org/packages/22/20/c495e61786f1d38d5dc340b9d9077fee9be3dfc7e89f515afe12e1526dbc/setproctitle-1.3.6-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:b2e54f4a2dc6edf0f5ea5b1d0a608d2af3dcb5aa8c8eeab9c8841b23e1b054fe", size = 33209, upload-time = "2025-04-29T13:33:24.915Z" }, - { url = "https://files.pythonhosted.org/packages/98/3f/a457b8550fbd34d5b482fe20b8376b529e76bf1fbf9a474a6d9a641ab4ad/setproctitle-1.3.6-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:b6f4abde9a2946f57e8daaf1160b2351bcf64274ef539e6675c1d945dbd75e2a", size = 31587, upload-time = "2025-04-29T13:33:26.123Z" }, - { url = "https://files.pythonhosted.org/packages/44/fe/743517340e5a635e3f1c4310baea20c16c66202f96a6f4cead222ffd6d84/setproctitle-1.3.6-cp312-cp312-win32.whl", hash = "sha256:db608db98ccc21248370d30044a60843b3f0f3d34781ceeea67067c508cd5a28", size = 11487, upload-time = "2025-04-29T13:33:27.403Z" }, - { url = "https://files.pythonhosted.org/packages/60/9a/d88f1c1f0f4efff1bd29d9233583ee341114dda7d9613941453984849674/setproctitle-1.3.6-cp312-cp312-win_amd64.whl", hash = "sha256:082413db8a96b1f021088e8ec23f0a61fec352e649aba20881895815388b66d3", size = 12208, upload-time = "2025-04-29T13:33:28.852Z" }, - { url = "https://files.pythonhosted.org/packages/89/76/f1a2fdbf9b9602945a7489ba5c52e9863de37381ef1a85a2b9ed0ff8bc79/setproctitle-1.3.6-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e2a9e62647dc040a76d55563580bf3bb8fe1f5b6ead08447c2ed0d7786e5e794", size = 17392, upload-time = "2025-04-29T13:33:30.925Z" }, - { url = "https://files.pythonhosted.org/packages/5c/5b/4e0db8b10b4543afcb3dbc0827793d46e43ec1de6b377e313af3703d08e0/setproctitle-1.3.6-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:751ba352ed922e0af60458e961167fa7b732ac31c0ddd1476a2dfd30ab5958c5", size = 11951, upload-time = "2025-04-29T13:33:32.296Z" }, - { url = "https://files.pythonhosted.org/packages/dc/fe/d5d00aaa700fe1f6160b6e95c225b29c01f4d9292176d48fd968815163ea/setproctitle-1.3.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7890e291bf4708e3b61db9069ea39b3ab0651e42923a5e1f4d78a7b9e4b18301", size = 32087, upload-time = "2025-04-29T13:33:33.469Z" }, - { url = "https://files.pythonhosted.org/packages/9f/b3/894b827b93ef813c082479bebf88185860f01ac243df737823dd705e7fff/setproctitle-1.3.6-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b2b17855ed7f994f3f259cf2dfbfad78814538536fa1a91b50253d84d87fd88d", size = 33502, upload-time = "2025-04-29T13:33:34.831Z" }, - { url = "https://files.pythonhosted.org/packages/b2/cd/5330734cca1a4cfcb721432c22cb7899ff15a4101ba868b2ef452ffafea1/setproctitle-1.3.6-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2e51ec673513465663008ce402171192a053564865c2fc6dc840620871a9bd7c", size = 30713, upload-time = "2025-04-29T13:33:36.739Z" }, - { url = "https://files.pythonhosted.org/packages/fa/d3/c2590c5daa2e9a008d3f2b16c0f4a351826193be55f147cb32af49c6d814/setproctitle-1.3.6-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:63cc10352dc6cf35a33951656aa660d99f25f574eb78132ce41a85001a638aa7", size = 31792, upload-time = "2025-04-29T13:33:37.974Z" }, - { url = "https://files.pythonhosted.org/packages/e6/b1/c553ed5af8cfcecd5ae7737e63af58a17a03d26f3d61868c7eb20bf7e3cf/setproctitle-1.3.6-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:0dba8faee2e4a96e934797c9f0f2d093f8239bf210406a99060b3eabe549628e", size = 31927, upload-time = "2025-04-29T13:33:39.203Z" }, - { url = "https://files.pythonhosted.org/packages/70/78/2d5385206540127a3dca0ff83225b1ac66873f5cc89d4a6d3806c92f5ae2/setproctitle-1.3.6-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:e3e44d08b61de0dd6f205528498f834a51a5c06689f8fb182fe26f3a3ce7dca9", size = 30981, upload-time = "2025-04-29T13:33:40.431Z" }, - { url = "https://files.pythonhosted.org/packages/31/62/e3e4a4e006d0e549748e53cded4ff3b667be0602860fc61b7de8b412b667/setproctitle-1.3.6-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:de004939fc3fd0c1200d26ea9264350bfe501ffbf46c8cf5dc7f345f2d87a7f1", size = 33244, upload-time = "2025-04-29T13:33:41.817Z" }, - { url = "https://files.pythonhosted.org/packages/aa/05/4b223fd4ef94e105dc7aff27fa502fb7200cf52be2bb0c064bd2406b5611/setproctitle-1.3.6-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:3f8194b4d631b003a1176a75d1acd545e04b1f54b821638e098a93e6e62830ef", size = 31630, upload-time = "2025-04-29T13:33:43.093Z" }, - { url = "https://files.pythonhosted.org/packages/1b/ba/5f68eb969f7336f54b54a599fd3ffbd7662f9733b080bc8598705971b3dd/setproctitle-1.3.6-cp313-cp313-win32.whl", hash = "sha256:d714e002dd3638170fe7376dc1b686dbac9cb712cde3f7224440af722cc9866a", size = 11480, upload-time = "2025-04-29T13:34:01.257Z" }, - { url = "https://files.pythonhosted.org/packages/ba/f5/7f47f0ca35c9c357f16187cee9229f3eda0237bc6fdd3061441336f361c0/setproctitle-1.3.6-cp313-cp313-win_amd64.whl", hash = "sha256:b70c07409d465f3a8b34d52f863871fb8a00755370791d2bd1d4f82b3cdaf3d5", size = 12198, upload-time = "2025-04-29T13:34:02.293Z" }, - { url = "https://files.pythonhosted.org/packages/39/ad/c3941b8fc6b32a976c9e2d9615a90ae793b69cd010ca8c3575dbc822104f/setproctitle-1.3.6-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:23a57d3b8f1549515c2dbe4a2880ebc1f27780dc126c5e064167563e015817f5", size = 17401, upload-time = "2025-04-29T13:33:44.186Z" }, - { url = "https://files.pythonhosted.org/packages/04/38/a184f857b988d3a9c401e470a4e38182a5c99ee77bf90432d7665e9d35a3/setproctitle-1.3.6-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:81c443310831e29fabbd07b75ebbfa29d0740b56f5907c6af218482d51260431", size = 11959, upload-time = "2025-04-29T13:33:45.71Z" }, - { url = "https://files.pythonhosted.org/packages/b7/b9/4878ef9d8483adfd1edf6bf95151362aaec0d05aac306a97ff0383f491b5/setproctitle-1.3.6-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d88c63bd395c787b0aa81d8bbc22c1809f311032ce3e823a6517b711129818e4", size = 33463, upload-time = "2025-04-29T13:33:46.913Z" }, - { url = "https://files.pythonhosted.org/packages/cc/60/3ef49d1931aff2a36a7324a49cca10d77ef03e0278452fd468c33a52d7e3/setproctitle-1.3.6-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d73f14b86d0e2858ece6bf5807c9889670e392c001d414b4293d0d9b291942c3", size = 34959, upload-time = "2025-04-29T13:33:48.216Z" }, - { url = "https://files.pythonhosted.org/packages/81/c6/dee0a973acecefb0db6c9c2e0ea7f18b7e4db773a72e534741ebdee8bbb8/setproctitle-1.3.6-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3393859eb8f19f5804049a685bf286cb08d447e28ba5c6d8543c7bf5500d5970", size = 32055, upload-time = "2025-04-29T13:33:49.443Z" }, - { url = "https://files.pythonhosted.org/packages/ea/a5/5dd5c4192cf18d16349a32a07f728a9a48a2a05178e16966cabd6645903e/setproctitle-1.3.6-cp313-cp313t-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:785cd210c0311d9be28a70e281a914486d62bfd44ac926fcd70cf0b4d65dff1c", size = 32986, upload-time = "2025-04-29T13:33:51.519Z" }, - { url = "https://files.pythonhosted.org/packages/df/a6/1508d37eb8008670d33f13fcdb91cbd8ef54697276469abbfdd3d4428c59/setproctitle-1.3.6-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:c051f46ed1e13ba8214b334cbf21902102807582fbfaf0fef341b9e52f0fafbf", size = 32736, upload-time = "2025-04-29T13:33:52.852Z" }, - { url = "https://files.pythonhosted.org/packages/1a/73/c84ec8880d543766a12fcd6b65dbd013770974a40577889f357409b0441e/setproctitle-1.3.6-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:49498ebf68ca3e75321ffe634fcea5cc720502bfaa79bd6b03ded92ce0dc3c24", size = 31945, upload-time = "2025-04-29T13:33:54.665Z" }, - { url = "https://files.pythonhosted.org/packages/95/0a/126b9ff7a406a69a62825fe5bd6d1ba8671919a7018c4f9e2c63f49bfcb6/setproctitle-1.3.6-cp313-cp313t-musllinux_1_2_ppc64le.whl", hash = "sha256:4431629c178193f23c538cb1de3da285a99ccc86b20ee91d81eb5f1a80e0d2ba", size = 34333, upload-time = "2025-04-29T13:33:56.101Z" }, - { url = "https://files.pythonhosted.org/packages/9a/fd/5474b04f1c013ff460129d2bc774557dd6e186da4667865efef9a83bf378/setproctitle-1.3.6-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:d136fbf8ad4321716e44d6d6b3d8dffb4872626010884e07a1db54b7450836cf", size = 32508, upload-time = "2025-04-29T13:33:57.43Z" }, - { url = "https://files.pythonhosted.org/packages/32/21/2503e38520cb076a7ecaef6a35d6a6fa89cf02af3541c84c811fd7500d20/setproctitle-1.3.6-cp313-cp313t-win32.whl", hash = "sha256:d483cc23cc56ab32911ea0baa0d2d9ea7aa065987f47de847a0a93a58bf57905", size = 11482, upload-time = "2025-04-29T13:33:58.602Z" }, - { url = "https://files.pythonhosted.org/packages/65/23/7833d75a27fba25ddc5cd3b54cd03c4bf8e18b8e2dbec622eb6326278ce8/setproctitle-1.3.6-cp313-cp313t-win_amd64.whl", hash = "sha256:74973aebea3543ad033b9103db30579ec2b950a466e09f9c2180089e8346e0ec", size = 12209, upload-time = "2025-04-29T13:33:59.727Z" }, - { url = "https://files.pythonhosted.org/packages/d0/2b/f19977b646b64c1440dade2c385c89c39f74ce5254defa102dfd9c163e0b/setproctitle-1.3.6-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:3cde5b83ec4915cd5e6ae271937fd60d14113c8f7769b4a20d51769fe70d8717", size = 11471, upload-time = "2025-04-29T13:34:42.665Z" }, - { url = "https://files.pythonhosted.org/packages/78/46/db58cf700f1408cf0f63d3f939f7b077bd450da8e037310f70e74c41262f/setproctitle-1.3.6-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:797f2846b546a8741413c57d9fb930ad5aa939d925c9c0fa6186d77580035af7", size = 13520, upload-time = "2025-04-29T13:34:44.287Z" }, - { url = "https://files.pythonhosted.org/packages/5c/46/0b89e7ebe77543e721c67077ad93fc8c7c3c31a8db3b12e00d02950f6adc/setproctitle-1.3.6-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4ac3eb04bcf0119aadc6235a2c162bae5ed5f740e3d42273a7228b915722de20", size = 13094, upload-time = "2025-04-29T13:34:45.605Z" }, - { url = "https://files.pythonhosted.org/packages/f7/78/03f2e42eb83bce6f853d7751ae95f8a3ae7408145a0b6cdd717be01497d7/setproctitle-1.3.6-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:0e6b5633c94c5111f7137f875e8f1ff48f53b991d5d5b90932f27dc8c1fa9ae4", size = 12241, upload-time = "2025-04-29T13:34:46.996Z" }, +sdist = { url = "https://files.pythonhosted.org/packages/4a/2a/d225cbf87b6c8ecce5664db7bcecb82c317e448e3b24a2dcdaacb18ca9a7/sentry_sdk-2.47.0.tar.gz", hash = "sha256:8218891d5e41b4ea8d61d2aed62ed10c80e39d9f2959d6f939efbf056857e050", size = 381895, upload-time = "2025-12-03T14:06:36.846Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/bd/ac/d6286ea0d49e7b58847faf67b00e56bb4ba3d525281e2ac306e1f1f353da/sentry_sdk-2.47.0-py2.py3-none-any.whl", hash = "sha256:d72f8c61025b7d1d9e52510d03a6247b280094a327dd900d987717a4fce93412", size = 411088, upload-time = "2025-12-03T14:06:35.374Z" }, ] [[package]] @@ -13102,11 +11965,11 @@ source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "ase" }, { name = "braceexpand" }, - { name = "e3nn", version = "0.5.6", source = { registry = "https://pypi.org/simple" } }, - { name = "matscipy", version = "1.1.0", source = { registry = "https://pypi.org/simple" }, marker = "(extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "matscipy", version = "1.1.1", source = { registry = "https://pypi.org/simple" }, marker = "(extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-sevenn')" }, + { name = "e3nn", version = "0.5.8", source = { registry = "https://pypi.org/simple" } }, + { name = "matscipy", version = "1.1.1", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "matscipy", version = "1.2.0", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'linux' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-sevenn')" }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "numpy", version = "2.1.3", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'linux' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-sevenn')" }, { name = "pandas" }, { name = "pyyaml" }, { name = "requests" }, @@ -13140,11 +12003,11 @@ wheels = [ [[package]] name = "shtab" -version = "1.7.2" +version = "1.8.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/5a/3e/837067b970c1d2ffa936c72f384a63fdec4e186b74da781e921354a94024/shtab-1.7.2.tar.gz", hash = "sha256:8c16673ade76a2d42417f03e57acf239bfb5968e842204c17990cae357d07d6f", size = 45751, upload-time = "2025-04-12T20:28:03.271Z" } +sdist = { url = "https://files.pythonhosted.org/packages/b0/7a/7f131b6082d8b592c32e4312d0a6da3d0b28b8f0d305ddd93e49c9d89929/shtab-1.8.0.tar.gz", hash = "sha256:75f16d42178882b7f7126a0c2cb3c848daed2f4f5a276dd1ded75921cc4d073a", size = 46062, upload-time = "2025-11-18T10:57:47.601Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/74/03/3271b7bb470fbab4adf5bd30b0d32143909d96f3608d815b447357f47f2b/shtab-1.7.2-py3-none-any.whl", hash = "sha256:858a5805f6c137bb0cda4f282d27d08fd44ca487ab4a6a36d2a400263cd0b5c1", size = 14214, upload-time = "2025-04-12T20:28:01.82Z" }, + { url = "https://files.pythonhosted.org/packages/8e/e1/202a31727b0d096a04380f78e809074d7a1d0a22d9d5a39fea1d2353fd02/shtab-1.8.0-py3-none-any.whl", hash = "sha256:f0922a82174b4007e06ac0bac4f79abd826c5cca88e201bfd927f889803c571d", size = 14457, upload-time = "2025-11-18T10:57:45.906Z" }, ] [[package]] @@ -13161,63 +12024,50 @@ wheels = [ [[package]] name = "simplejson" -version = "3.20.1" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/af/92/51b417685abd96b31308b61b9acce7ec50d8e1de8fbc39a7fd4962c60689/simplejson-3.20.1.tar.gz", hash = "sha256:e64139b4ec4f1f24c142ff7dcafe55a22b811a74d86d66560c8815687143037d", size = 85591, upload-time = "2025-02-15T05:18:53.15Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/25/c4/627214fb418cd4a17fb0230ff0b6c3bb4a85cbb48dd69c85dcc3b85df828/simplejson-3.20.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:e580aa65d5f6c3bf41b9b4afe74be5d5ddba9576701c107c772d936ea2b5043a", size = 93790, upload-time = "2025-02-15T05:15:32.954Z" }, - { url = "https://files.pythonhosted.org/packages/15/ca/56a6a2a33cbcf330c4d71af3f827c47e4e0ba791e78f2642f3d1ab02ff31/simplejson-3.20.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:4a586ce4f78cec11f22fe55c5bee0f067e803aab9bad3441afe2181693b5ebb5", size = 75707, upload-time = "2025-02-15T05:15:34.954Z" }, - { url = "https://files.pythonhosted.org/packages/a9/c8/3d92b67e03a3b6207d97202669f9454ed700b35ade9bd4428265a078fb6c/simplejson-3.20.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:74a1608f9e6e8c27a4008d70a54270868306d80ed48c9df7872f9f4b8ac87808", size = 75700, upload-time = "2025-02-15T05:15:37.144Z" }, - { url = "https://files.pythonhosted.org/packages/74/30/20001219d6fdca4aaa3974c96dfb6955a766b4e2cc950505a5b51fd050b0/simplejson-3.20.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:03db8cb64154189a92a7786209f24e391644f3a3fa335658be2df2af1960b8d8", size = 138672, upload-time = "2025-02-15T05:15:38.547Z" }, - { url = "https://files.pythonhosted.org/packages/21/47/50157810876c2a7ebbd6e6346ec25eda841fe061fecaa02538a7742a3d2a/simplejson-3.20.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:eea7e2b7d858f6fdfbf0fe3cb846d6bd8a45446865bc09960e51f3d473c2271b", size = 146616, upload-time = "2025-02-15T05:15:39.871Z" }, - { url = "https://files.pythonhosted.org/packages/95/60/8c97cdc93096437b0aca2745aca63c880fe2315fd7f6a6ce6edbb344a2ae/simplejson-3.20.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e66712b17d8425bb7ff8968d4c7c7fd5a2dd7bd63728b28356223c000dd2f91f", size = 134344, upload-time = "2025-02-15T05:15:42.091Z" }, - { url = "https://files.pythonhosted.org/packages/bb/9e/da184f0e9bb3a5d7ffcde713bd41b4fe46cca56b6f24d9bd155fac56805a/simplejson-3.20.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a2cc4f6486f9f515b62f5831ff1888886619b84fc837de68f26d919ba7bbdcbc", size = 138017, upload-time = "2025-02-15T05:15:43.542Z" }, - { url = "https://files.pythonhosted.org/packages/31/db/00d1a8d9b036db98f678c8a3c69ed17d2894d1768d7a00576e787ad3e546/simplejson-3.20.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:a3c2df555ee4016148fa192e2b9cd9e60bc1d40769366134882685e90aee2a1e", size = 140118, upload-time = "2025-02-15T05:15:45.7Z" }, - { url = "https://files.pythonhosted.org/packages/52/21/57fc47eab8c1c73390b933a5ba9271f08e3e1ec83162c580357f28f5b97c/simplejson-3.20.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:78520f04b7548a5e476b5396c0847e066f1e0a4c0c5e920da1ad65e95f410b11", size = 140314, upload-time = "2025-02-15T05:16:07.949Z" }, - { url = "https://files.pythonhosted.org/packages/ad/cc/7cfd78d1e0fa5e57350b98cfe77353b6dfa13dce21afa4060e1019223852/simplejson-3.20.1-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:f4bd49ecde87b0fe9f55cc971449a32832bca9910821f7072bbfae1155eaa007", size = 148544, upload-time = "2025-02-15T05:16:09.455Z" }, - { url = "https://files.pythonhosted.org/packages/63/26/1c894a1c2bd95dc8be0cf5a2fa73b0d173105b6ca18c90cb981ff10443d0/simplejson-3.20.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:7eaae2b88eb5da53caaffdfa50e2e12022553949b88c0df4f9a9663609373f72", size = 141172, upload-time = "2025-02-15T05:16:10.966Z" }, - { url = "https://files.pythonhosted.org/packages/93/27/0717dccc10cd9988dbf1314def52ab32678a95a95328bb37cafacf499400/simplejson-3.20.1-cp310-cp310-win32.whl", hash = "sha256:e836fb88902799eac8debc2b642300748f4860a197fa3d9ea502112b6bb8e142", size = 74181, upload-time = "2025-02-15T05:16:12.361Z" }, - { url = "https://files.pythonhosted.org/packages/5f/af/593f896573f306519332d4287b1ab8b7b888c239bbd5159f7054d7055c2d/simplejson-3.20.1-cp310-cp310-win_amd64.whl", hash = "sha256:b122a19b552b212fc3b5b96fc5ce92333d4a9ac0a800803e1f17ebb16dac4be5", size = 75738, upload-time = "2025-02-15T05:16:14.438Z" }, - { url = "https://files.pythonhosted.org/packages/76/59/74bc90d1c051bc2432c96b34bd4e8036875ab58b4fcbe4d6a5a76985f853/simplejson-3.20.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:325b8c107253d3217e89d7b50c71015b5b31e2433e6c5bf38967b2f80630a8ca", size = 92132, upload-time = "2025-02-15T05:16:15.743Z" }, - { url = "https://files.pythonhosted.org/packages/71/c7/1970916e0c51794fff89f76da2f632aaf0b259b87753c88a8c409623d3e1/simplejson-3.20.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:88a7baa8211089b9e58d78fbc1b0b322103f3f3d459ff16f03a36cece0d0fcf0", size = 74956, upload-time = "2025-02-15T05:16:17.062Z" }, - { url = "https://files.pythonhosted.org/packages/c8/0d/98cc5909180463f1d75fac7180de62d4cdb4e82c4fef276b9e591979372c/simplejson-3.20.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:299b1007b8101d50d95bc0db1bf5c38dc372e85b504cf77f596462083ee77e3f", size = 74772, upload-time = "2025-02-15T05:16:19.204Z" }, - { url = "https://files.pythonhosted.org/packages/e1/94/a30a5211a90d67725a3e8fcc1c788189f2ae2ed2b96b63ed15d0b7f5d6bb/simplejson-3.20.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:03ec618ed65caab48e81e3ed29586236a8e57daef792f1f3bb59504a7e98cd10", size = 143575, upload-time = "2025-02-15T05:16:21.337Z" }, - { url = "https://files.pythonhosted.org/packages/ee/08/cdb6821f1058eb5db46d252de69ff7e6c53f05f1bae6368fe20d5b51d37e/simplejson-3.20.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cd2cdead1d3197f0ff43373cf4730213420523ba48697743e135e26f3d179f38", size = 153241, upload-time = "2025-02-15T05:16:22.859Z" }, - { url = "https://files.pythonhosted.org/packages/4c/2d/ca3caeea0bdc5efc5503d5f57a2dfb56804898fb196dfada121323ee0ccb/simplejson-3.20.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3466d2839fdc83e1af42e07b90bc8ff361c4e8796cd66722a40ba14e458faddd", size = 141500, upload-time = "2025-02-15T05:16:25.068Z" }, - { url = "https://files.pythonhosted.org/packages/e1/33/d3e0779d5c58245e7370c98eb969275af6b7a4a5aec3b97cbf85f09ad328/simplejson-3.20.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d492ed8e92f3a9f9be829205f44b1d0a89af6582f0cf43e0d129fa477b93fe0c", size = 144757, upload-time = "2025-02-15T05:16:28.301Z" }, - { url = "https://files.pythonhosted.org/packages/54/53/2d93128bb55861b2fa36c5944f38da51a0bc6d83e513afc6f7838440dd15/simplejson-3.20.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:f924b485537b640dc69434565463fd6fc0c68c65a8c6e01a823dd26c9983cf79", size = 144409, upload-time = "2025-02-15T05:16:29.687Z" }, - { url = "https://files.pythonhosted.org/packages/99/4c/dac310a98f897ad3435b4bdc836d92e78f09e38c5dbf28211ed21dc59fa2/simplejson-3.20.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:9e8eacf6a3491bf76ea91a8d46726368a6be0eb94993f60b8583550baae9439e", size = 146082, upload-time = "2025-02-15T05:16:31.064Z" }, - { url = "https://files.pythonhosted.org/packages/ee/22/d7ba958cfed39827335b82656b1c46f89678faecda9a7677b47e87b48ee6/simplejson-3.20.1-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:d34d04bf90b4cea7c22d8b19091633908f14a096caa301b24c2f3d85b5068fb8", size = 154339, upload-time = "2025-02-15T05:16:32.719Z" }, - { url = "https://files.pythonhosted.org/packages/b8/c8/b072b741129406a7086a0799c6f5d13096231bf35fdd87a0cffa789687fc/simplejson-3.20.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:69dd28d4ce38390ea4aaf212902712c0fd1093dc4c1ff67e09687c3c3e15a749", size = 147915, upload-time = "2025-02-15T05:16:34.291Z" }, - { url = "https://files.pythonhosted.org/packages/6c/46/8347e61e9cf3db5342a42f7fd30a81b4f5cf85977f916852d7674a540907/simplejson-3.20.1-cp311-cp311-win32.whl", hash = "sha256:dfe7a9da5fd2a3499436cd350f31539e0a6ded5da6b5b3d422df016444d65e43", size = 73972, upload-time = "2025-02-15T05:16:35.712Z" }, - { url = "https://files.pythonhosted.org/packages/01/85/b52f24859237b4e9d523d5655796d911ba3d46e242eb1959c45b6af5aedd/simplejson-3.20.1-cp311-cp311-win_amd64.whl", hash = "sha256:896a6c04d7861d507d800da7642479c3547060bf97419d9ef73d98ced8258766", size = 75595, upload-time = "2025-02-15T05:16:36.957Z" }, - { url = "https://files.pythonhosted.org/packages/8d/eb/34c16a1ac9ba265d024dc977ad84e1659d931c0a700967c3e59a98ed7514/simplejson-3.20.1-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:f31c4a3a7ab18467ee73a27f3e59158255d1520f3aad74315edde7a940f1be23", size = 93100, upload-time = "2025-02-15T05:16:38.801Z" }, - { url = "https://files.pythonhosted.org/packages/41/fc/2c2c007d135894971e6814e7c0806936e5bade28f8db4dd7e2a58b50debd/simplejson-3.20.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:884e6183d16b725e113b83a6fc0230152ab6627d4d36cb05c89c2c5bccfa7bc6", size = 75464, upload-time = "2025-02-15T05:16:40.905Z" }, - { url = "https://files.pythonhosted.org/packages/0f/05/2b5ecb33b776c34bb5cace5de5d7669f9b60e3ca13c113037b2ca86edfbd/simplejson-3.20.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:03d7a426e416fe0d3337115f04164cd9427eb4256e843a6b8751cacf70abc832", size = 75112, upload-time = "2025-02-15T05:16:42.246Z" }, - { url = "https://files.pythonhosted.org/packages/fe/36/1f3609a2792f06cd4b71030485f78e91eb09cfd57bebf3116bf2980a8bac/simplejson-3.20.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:000602141d0bddfcff60ea6a6e97d5e10c9db6b17fd2d6c66199fa481b6214bb", size = 150182, upload-time = "2025-02-15T05:16:43.557Z" }, - { url = "https://files.pythonhosted.org/packages/2f/b0/053fbda38b8b602a77a4f7829def1b4f316cd8deb5440a6d3ee90790d2a4/simplejson-3.20.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:af8377a8af78226e82e3a4349efdde59ffa421ae88be67e18cef915e4023a595", size = 158363, upload-time = "2025-02-15T05:16:45.748Z" }, - { url = "https://files.pythonhosted.org/packages/d1/4b/2eb84ae867539a80822e92f9be4a7200dffba609275faf99b24141839110/simplejson-3.20.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:15c7de4c88ab2fbcb8781a3b982ef883696736134e20b1210bca43fb42ff1acf", size = 148415, upload-time = "2025-02-15T05:16:47.861Z" }, - { url = "https://files.pythonhosted.org/packages/e0/bd/400b0bd372a5666addf2540c7358bfc3841b9ce5cdbc5cc4ad2f61627ad8/simplejson-3.20.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:455a882ff3f97d810709f7b620007d4e0aca8da71d06fc5c18ba11daf1c4df49", size = 152213, upload-time = "2025-02-15T05:16:49.25Z" }, - { url = "https://files.pythonhosted.org/packages/50/12/143f447bf6a827ee9472693768dc1a5eb96154f8feb140a88ce6973a3cfa/simplejson-3.20.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:fc0f523ce923e7f38eb67804bc80e0a028c76d7868500aa3f59225574b5d0453", size = 150048, upload-time = "2025-02-15T05:16:51.5Z" }, - { url = "https://files.pythonhosted.org/packages/5e/ea/dd9b3e8e8ed710a66f24a22c16a907c9b539b6f5f45fd8586bd5c231444e/simplejson-3.20.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:76461ec929282dde4a08061071a47281ad939d0202dc4e63cdd135844e162fbc", size = 151668, upload-time = "2025-02-15T05:16:53Z" }, - { url = "https://files.pythonhosted.org/packages/99/af/ee52a8045426a0c5b89d755a5a70cc821815ef3c333b56fbcad33c4435c0/simplejson-3.20.1-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:ab19c2da8c043607bde4d4ef3a6b633e668a7d2e3d56f40a476a74c5ea71949f", size = 158840, upload-time = "2025-02-15T05:16:54.851Z" }, - { url = "https://files.pythonhosted.org/packages/68/db/ab32869acea6b5de7d75fa0dac07a112ded795d41eaa7e66c7813b17be95/simplejson-3.20.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:b2578bedaedf6294415197b267d4ef678fea336dd78ee2a6d2f4b028e9d07be3", size = 154212, upload-time = "2025-02-15T05:16:56.318Z" }, - { url = "https://files.pythonhosted.org/packages/fa/7a/e3132d454977d75a3bf9a6d541d730f76462ebf42a96fea2621498166f41/simplejson-3.20.1-cp312-cp312-win32.whl", hash = "sha256:339f407373325a36b7fd744b688ba5bae0666b5d340ec6d98aebc3014bf3d8ea", size = 74101, upload-time = "2025-02-15T05:16:57.746Z" }, - { url = "https://files.pythonhosted.org/packages/bc/5d/4e243e937fa3560107c69f6f7c2eed8589163f5ed14324e864871daa2dd9/simplejson-3.20.1-cp312-cp312-win_amd64.whl", hash = "sha256:627d4486a1ea7edf1f66bb044ace1ce6b4c1698acd1b05353c97ba4864ea2e17", size = 75736, upload-time = "2025-02-15T05:16:59.017Z" }, - { url = "https://files.pythonhosted.org/packages/c4/03/0f453a27877cb5a5fff16a975925f4119102cc8552f52536b9a98ef0431e/simplejson-3.20.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:71e849e7ceb2178344998cbe5ade101f1b329460243c79c27fbfc51c0447a7c3", size = 93109, upload-time = "2025-02-15T05:17:00.377Z" }, - { url = "https://files.pythonhosted.org/packages/74/1f/a729f4026850cabeaff23e134646c3f455e86925d2533463420635ae54de/simplejson-3.20.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:b63fdbab29dc3868d6f009a59797cefaba315fd43cd32ddd998ee1da28e50e29", size = 75475, upload-time = "2025-02-15T05:17:02.544Z" }, - { url = "https://files.pythonhosted.org/packages/e2/14/50a2713fee8ff1f8d655b1a14f4a0f1c0c7246768a1b3b3d12964a4ed5aa/simplejson-3.20.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:1190f9a3ce644fd50ec277ac4a98c0517f532cfebdcc4bd975c0979a9f05e1fb", size = 75112, upload-time = "2025-02-15T05:17:03.875Z" }, - { url = "https://files.pythonhosted.org/packages/45/86/ea9835abb646755140e2d482edc9bc1e91997ed19a59fd77ae4c6a0facea/simplejson-3.20.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c1336ba7bcb722ad487cd265701ff0583c0bb6de638364ca947bb84ecc0015d1", size = 150245, upload-time = "2025-02-15T05:17:06.899Z" }, - { url = "https://files.pythonhosted.org/packages/12/b4/53084809faede45da829fe571c65fbda8479d2a5b9c633f46b74124d56f5/simplejson-3.20.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e975aac6a5acd8b510eba58d5591e10a03e3d16c1cf8a8624ca177491f7230f0", size = 158465, upload-time = "2025-02-15T05:17:08.707Z" }, - { url = "https://files.pythonhosted.org/packages/a9/7d/d56579468d1660b3841e1f21c14490d103e33cf911886b22652d6e9683ec/simplejson-3.20.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6a6dd11ee282937ad749da6f3b8d87952ad585b26e5edfa10da3ae2536c73078", size = 148514, upload-time = "2025-02-15T05:17:11.323Z" }, - { url = "https://files.pythonhosted.org/packages/19/e3/874b1cca3d3897b486d3afdccc475eb3a09815bf1015b01cf7fcb52a55f0/simplejson-3.20.1-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ab980fcc446ab87ea0879edad41a5c28f2d86020014eb035cf5161e8de4474c6", size = 152262, upload-time = "2025-02-15T05:17:13.543Z" }, - { url = "https://files.pythonhosted.org/packages/32/84/f0fdb3625292d945c2bd13a814584603aebdb38cfbe5fe9be6b46fe598c4/simplejson-3.20.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:f5aee2a4cb6b146bd17333ac623610f069f34e8f31d2f4f0c1a2186e50c594f0", size = 150164, upload-time = "2025-02-15T05:17:15.021Z" }, - { url = "https://files.pythonhosted.org/packages/95/51/6d625247224f01eaaeabace9aec75ac5603a42f8ebcce02c486fbda8b428/simplejson-3.20.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:652d8eecbb9a3b6461b21ec7cf11fd0acbab144e45e600c817ecf18e4580b99e", size = 151795, upload-time = "2025-02-15T05:17:16.542Z" }, - { url = "https://files.pythonhosted.org/packages/7f/d9/bb921df6b35be8412f519e58e86d1060fddf3ad401b783e4862e0a74c4c1/simplejson-3.20.1-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:8c09948f1a486a89251ee3a67c9f8c969b379f6ffff1a6064b41fea3bce0a112", size = 159027, upload-time = "2025-02-15T05:17:18.083Z" }, - { url = "https://files.pythonhosted.org/packages/03/c5/5950605e4ad023a6621cf4c931b29fd3d2a9c1f36be937230bfc83d7271d/simplejson-3.20.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:cbbd7b215ad4fc6f058b5dd4c26ee5c59f72e031dfda3ac183d7968a99e4ca3a", size = 154380, upload-time = "2025-02-15T05:17:20.334Z" }, - { url = "https://files.pythonhosted.org/packages/66/ad/b74149557c5ec1e4e4d55758bda426f5d2ec0123cd01a53ae63b8de51fa3/simplejson-3.20.1-cp313-cp313-win32.whl", hash = "sha256:ae81e482476eaa088ef9d0120ae5345de924f23962c0c1e20abbdff597631f87", size = 74102, upload-time = "2025-02-15T05:17:22.475Z" }, - { url = "https://files.pythonhosted.org/packages/db/a9/25282fdd24493e1022f30b7f5cdf804255c007218b2bfaa655bd7ad34b2d/simplejson-3.20.1-cp313-cp313-win_amd64.whl", hash = "sha256:1b9fd15853b90aec3b1739f4471efbf1ac05066a2c7041bf8db821bb73cd2ddc", size = 75736, upload-time = "2025-02-15T05:17:24.122Z" }, - { url = "https://files.pythonhosted.org/packages/4b/30/00f02a0a921556dd5a6db1ef2926a1bc7a8bbbfb1c49cfed68a275b8ab2b/simplejson-3.20.1-py3-none-any.whl", hash = "sha256:8a6c1bbac39fa4a79f83cbf1df6ccd8ff7069582a9fd8db1e52cea073bc2c697", size = 57121, upload-time = "2025-02-15T05:18:51.243Z" }, +version = "3.20.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/41/f4/a1ac5ed32f7ed9a088d62a59d410d4c204b3b3815722e2ccfb491fa8251b/simplejson-3.20.2.tar.gz", hash = "sha256:5fe7a6ce14d1c300d80d08695b7f7e633de6cd72c80644021874d985b3393649", size = 85784, upload-time = "2025-09-26T16:29:36.64Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b9/3e/96898c6c66d9dca3f9bd14d7487bf783b4acc77471b42f979babbb68d4ca/simplejson-3.20.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:06190b33cd7849efc413a5738d3da00b90e4a5382fd3d584c841ac20fb828c6f", size = 92633, upload-time = "2025-09-26T16:27:45.028Z" }, + { url = "https://files.pythonhosted.org/packages/6b/a2/cd2e10b880368305d89dd540685b8bdcc136df2b3c76b5ddd72596254539/simplejson-3.20.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:4ad4eac7d858947a30d2c404e61f16b84d16be79eb6fb316341885bdde864fa8", size = 75309, upload-time = "2025-09-26T16:27:46.142Z" }, + { url = "https://files.pythonhosted.org/packages/5d/02/290f7282eaa6ebe945d35c47e6534348af97472446951dce0d144e013f4c/simplejson-3.20.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b392e11c6165d4a0fde41754a0e13e1d88a5ad782b245a973dd4b2bdb4e5076a", size = 75308, upload-time = "2025-09-26T16:27:47.542Z" }, + { url = "https://files.pythonhosted.org/packages/43/91/43695f17b69e70c4b0b03247aa47fb3989d338a70c4b726bbdc2da184160/simplejson-3.20.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:51eccc4e353eed3c50e0ea2326173acdc05e58f0c110405920b989d481287e51", size = 143733, upload-time = "2025-09-26T16:27:48.673Z" }, + { url = "https://files.pythonhosted.org/packages/9b/4b/fdcaf444ac1c3cbf1c52bf00320c499e1cf05d373a58a3731ae627ba5e2d/simplejson-3.20.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:306e83d7c331ad833d2d43c76a67f476c4b80c4a13334f6e34bb110e6105b3bd", size = 153397, upload-time = "2025-09-26T16:27:49.89Z" }, + { url = "https://files.pythonhosted.org/packages/c4/83/21550f81a50cd03599f048a2d588ffb7f4c4d8064ae091511e8e5848eeaa/simplejson-3.20.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f820a6ac2ef0bc338ae4963f4f82ccebdb0824fe9caf6d660670c578abe01013", size = 141654, upload-time = "2025-09-26T16:27:51.168Z" }, + { url = "https://files.pythonhosted.org/packages/cf/54/d76c0e72ad02450a3e723b65b04f49001d0e73218ef6a220b158a64639cb/simplejson-3.20.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:21e7a066528a5451433eb3418184f05682ea0493d14e9aae690499b7e1eb6b81", size = 144913, upload-time = "2025-09-26T16:27:52.331Z" }, + { url = "https://files.pythonhosted.org/packages/3f/49/976f59b42a6956d4aeb075ada16ad64448a985704bc69cd427a2245ce835/simplejson-3.20.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:438680ddde57ea87161a4824e8de04387b328ad51cfdf1eaf723623a3014b7aa", size = 144568, upload-time = "2025-09-26T16:27:53.41Z" }, + { url = "https://files.pythonhosted.org/packages/60/c7/30bae30424ace8cd791ca660fed454ed9479233810fe25c3f3eab3d9dc7b/simplejson-3.20.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:cac78470ae68b8d8c41b6fca97f5bf8e024ca80d5878c7724e024540f5cdaadb", size = 146239, upload-time = "2025-09-26T16:27:54.502Z" }, + { url = "https://files.pythonhosted.org/packages/79/3e/7f3b7b97351c53746e7b996fcd106986cda1954ab556fd665314756618d2/simplejson-3.20.2-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:7524e19c2da5ef281860a3d74668050c6986be15c9dd99966034ba47c68828c2", size = 154497, upload-time = "2025-09-26T16:27:55.885Z" }, + { url = "https://files.pythonhosted.org/packages/1d/48/7241daa91d0bf19126589f6a8dcbe8287f4ed3d734e76fd4a092708947be/simplejson-3.20.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0e9b6d845a603b2eef3394eb5e21edb8626cd9ae9a8361d14e267eb969dbe413", size = 148069, upload-time = "2025-09-26T16:27:57.039Z" }, + { url = "https://files.pythonhosted.org/packages/e6/f4/ef18d2962fe53e7be5123d3784e623859eec7ed97060c9c8536c69d34836/simplejson-3.20.2-cp311-cp311-win32.whl", hash = "sha256:47d8927e5ac927fdd34c99cc617938abb3624b06ff86e8e219740a86507eb961", size = 74158, upload-time = "2025-09-26T16:27:58.265Z" }, + { url = "https://files.pythonhosted.org/packages/35/fd/3d1158ecdc573fdad81bf3cc78df04522bf3959758bba6597ba4c956c74d/simplejson-3.20.2-cp311-cp311-win_amd64.whl", hash = "sha256:ba4edf3be8e97e4713d06c3d302cba1ff5c49d16e9d24c209884ac1b8455520c", size = 75911, upload-time = "2025-09-26T16:27:59.292Z" }, + { url = "https://files.pythonhosted.org/packages/9d/9e/1a91e7614db0416885eab4136d49b7303de20528860ffdd798ce04d054db/simplejson-3.20.2-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:4376d5acae0d1e91e78baeba4ee3cf22fbf6509d81539d01b94e0951d28ec2b6", size = 93523, upload-time = "2025-09-26T16:28:00.356Z" }, + { url = "https://files.pythonhosted.org/packages/5e/2b/d2413f5218fc25608739e3d63fe321dfa85c5f097aa6648dbe72513a5f12/simplejson-3.20.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:f8fe6de652fcddae6dec8f281cc1e77e4e8f3575249e1800090aab48f73b4259", size = 75844, upload-time = "2025-09-26T16:28:01.756Z" }, + { url = "https://files.pythonhosted.org/packages/ad/f1/efd09efcc1e26629e120fef59be059ce7841cc6e1f949a4db94f1ae8a918/simplejson-3.20.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:25ca2663d99328d51e5a138f22018e54c9162438d831e26cfc3458688616eca8", size = 75655, upload-time = "2025-09-26T16:28:03.037Z" }, + { url = "https://files.pythonhosted.org/packages/97/ec/5c6db08e42f380f005d03944be1af1a6bd501cc641175429a1cbe7fb23b9/simplejson-3.20.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:12a6b2816b6cab6c3fd273d43b1948bc9acf708272074c8858f579c394f4cbc9", size = 150335, upload-time = "2025-09-26T16:28:05.027Z" }, + { url = "https://files.pythonhosted.org/packages/81/f5/808a907485876a9242ec67054da7cbebefe0ee1522ef1c0be3bfc90f96f6/simplejson-3.20.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac20dc3fcdfc7b8415bfc3d7d51beccd8695c3f4acb7f74e3a3b538e76672868", size = 158519, upload-time = "2025-09-26T16:28:06.5Z" }, + { url = "https://files.pythonhosted.org/packages/66/af/b8a158246834645ea890c36136584b0cc1c0e4b83a73b11ebd9c2a12877c/simplejson-3.20.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:db0804d04564e70862ef807f3e1ace2cc212ef0e22deb1b3d6f80c45e5882c6b", size = 148571, upload-time = "2025-09-26T16:28:07.715Z" }, + { url = "https://files.pythonhosted.org/packages/20/05/ed9b2571bbf38f1a2425391f18e3ac11cb1e91482c22d644a1640dea9da7/simplejson-3.20.2-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:979ce23ea663895ae39106946ef3d78527822d918a136dbc77b9e2b7f006237e", size = 152367, upload-time = "2025-09-26T16:28:08.921Z" }, + { url = "https://files.pythonhosted.org/packages/81/2c/bad68b05dd43e93f77994b920505634d31ed239418eb6a88997d06599983/simplejson-3.20.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:a2ba921b047bb029805726800819675249ef25d2f65fd0edb90639c5b1c3033c", size = 150205, upload-time = "2025-09-26T16:28:10.086Z" }, + { url = "https://files.pythonhosted.org/packages/69/46/90c7fc878061adafcf298ce60cecdee17a027486e9dce507e87396d68255/simplejson-3.20.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:12d3d4dc33770069b780cc8f5abef909fe4a3f071f18f55f6d896a370fd0f970", size = 151823, upload-time = "2025-09-26T16:28:11.329Z" }, + { url = "https://files.pythonhosted.org/packages/ab/27/b85b03349f825ae0f5d4f780cdde0bbccd4f06c3d8433f6a3882df887481/simplejson-3.20.2-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:aff032a59a201b3683a34be1169e71ddda683d9c3b43b261599c12055349251e", size = 158997, upload-time = "2025-09-26T16:28:12.917Z" }, + { url = "https://files.pythonhosted.org/packages/71/ad/d7f3c331fb930638420ac6d236db68e9f4c28dab9c03164c3cd0e7967e15/simplejson-3.20.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:30e590e133b06773f0dc9c3f82e567463df40598b660b5adf53eb1c488202544", size = 154367, upload-time = "2025-09-26T16:28:14.393Z" }, + { url = "https://files.pythonhosted.org/packages/f0/46/5c67324addd40fa2966f6e886cacbbe0407c03a500db94fb8bb40333fcdf/simplejson-3.20.2-cp312-cp312-win32.whl", hash = "sha256:8d7be7c99939cc58e7c5bcf6bb52a842a58e6c65e1e9cdd2a94b697b24cddb54", size = 74285, upload-time = "2025-09-26T16:28:15.931Z" }, + { url = "https://files.pythonhosted.org/packages/fa/c9/5cc2189f4acd3a6e30ffa9775bf09b354302dbebab713ca914d7134d0f29/simplejson-3.20.2-cp312-cp312-win_amd64.whl", hash = "sha256:2c0b4a67e75b945489052af6590e7dca0ed473ead5d0f3aad61fa584afe814ab", size = 75969, upload-time = "2025-09-26T16:28:17.017Z" }, + { url = "https://files.pythonhosted.org/packages/5e/9e/f326d43f6bf47f4e7704a4426c36e044c6bedfd24e072fb8e27589a373a5/simplejson-3.20.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:90d311ba8fcd733a3677e0be21804827226a57144130ba01c3c6a325e887dd86", size = 93530, upload-time = "2025-09-26T16:28:18.07Z" }, + { url = "https://files.pythonhosted.org/packages/35/28/5a4b8f3483fbfb68f3f460bc002cef3a5735ef30950e7c4adce9c8da15c7/simplejson-3.20.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:feed6806f614bdf7f5cb6d0123cb0c1c5f40407ef103aa935cffaa694e2e0c74", size = 75846, upload-time = "2025-09-26T16:28:19.12Z" }, + { url = "https://files.pythonhosted.org/packages/7a/4d/30dfef83b9ac48afae1cf1ab19c2867e27b8d22b5d9f8ca7ce5a0a157d8c/simplejson-3.20.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:6b1d8d7c3e1a205c49e1aee6ba907dcb8ccea83651e6c3e2cb2062f1e52b0726", size = 75661, upload-time = "2025-09-26T16:28:20.219Z" }, + { url = "https://files.pythonhosted.org/packages/09/1d/171009bd35c7099d72ef6afd4bb13527bab469965c968a17d69a203d62a6/simplejson-3.20.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:552f55745044a24c3cb7ec67e54234be56d5d6d0e054f2e4cf4fb3e297429be5", size = 150579, upload-time = "2025-09-26T16:28:21.337Z" }, + { url = "https://files.pythonhosted.org/packages/61/ae/229bbcf90a702adc6bfa476e9f0a37e21d8c58e1059043038797cbe75b8c/simplejson-3.20.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c2da97ac65165d66b0570c9e545786f0ac7b5de5854d3711a16cacbcaa8c472d", size = 158797, upload-time = "2025-09-26T16:28:22.53Z" }, + { url = "https://files.pythonhosted.org/packages/90/c5/fefc0ac6b86b9108e302e0af1cf57518f46da0baedd60a12170791d56959/simplejson-3.20.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f59a12966daa356bf68927fca5a67bebac0033cd18b96de9c2d426cd11756cd0", size = 148851, upload-time = "2025-09-26T16:28:23.733Z" }, + { url = "https://files.pythonhosted.org/packages/43/f1/b392952200f3393bb06fbc4dd975fc63a6843261705839355560b7264eb2/simplejson-3.20.2-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:133ae2098a8e162c71da97cdab1f383afdd91373b7ff5fe65169b04167da976b", size = 152598, upload-time = "2025-09-26T16:28:24.962Z" }, + { url = "https://files.pythonhosted.org/packages/f4/b4/d6b7279e52a3e9c0fa8c032ce6164e593e8d9cf390698ee981ed0864291b/simplejson-3.20.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:7977640af7b7d5e6a852d26622057d428706a550f7f5083e7c4dd010a84d941f", size = 150498, upload-time = "2025-09-26T16:28:26.114Z" }, + { url = "https://files.pythonhosted.org/packages/62/22/ec2490dd859224326d10c2fac1353e8ad5c84121be4837a6dd6638ba4345/simplejson-3.20.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:b530ad6d55e71fa9e93e1109cf8182f427a6355848a4ffa09f69cc44e1512522", size = 152129, upload-time = "2025-09-26T16:28:27.552Z" }, + { url = "https://files.pythonhosted.org/packages/33/ce/b60214d013e93dd9e5a705dcb2b88b6c72bada442a97f79828332217f3eb/simplejson-3.20.2-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:bd96a7d981bf64f0e42345584768da4435c05b24fd3c364663f5fbc8fabf82e3", size = 159359, upload-time = "2025-09-26T16:28:28.667Z" }, + { url = "https://files.pythonhosted.org/packages/99/21/603709455827cdf5b9d83abe726343f542491ca8dc6a2528eb08de0cf034/simplejson-3.20.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:f28ee755fadb426ba2e464d6fcf25d3f152a05eb6b38e0b4f790352f5540c769", size = 154717, upload-time = "2025-09-26T16:28:30.288Z" }, + { url = "https://files.pythonhosted.org/packages/3c/f9/dc7f7a4bac16cf7eb55a4df03ad93190e11826d2a8950052949d3dfc11e2/simplejson-3.20.2-cp313-cp313-win32.whl", hash = "sha256:472785b52e48e3eed9b78b95e26a256f59bb1ee38339be3075dad799e2e1e661", size = 74289, upload-time = "2025-09-26T16:28:31.809Z" }, + { url = "https://files.pythonhosted.org/packages/87/10/d42ad61230436735c68af1120622b28a782877146a83d714da7b6a2a1c4e/simplejson-3.20.2-cp313-cp313-win_amd64.whl", hash = "sha256:a1a85013eb33e4820286139540accbe2c98d2da894b2dcefd280209db508e608", size = 75972, upload-time = "2025-09-26T16:28:32.883Z" }, + { url = "https://files.pythonhosted.org/packages/05/5b/83e1ff87eb60ca706972f7e02e15c0b33396e7bdbd080069a5d1b53cf0d8/simplejson-3.20.2-py3-none-any.whl", hash = "sha256:3b6bb7fb96efd673eac2e4235200bfffdc2353ad12c54117e1e4e2fc485ac017", size = 57309, upload-time = "2025-09-26T16:29:35.312Z" }, ] [[package]] @@ -13231,14 +12081,14 @@ wheels = [ [[package]] name = "smart-open" -version = "7.1.0" +version = "7.5.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "wrapt" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/21/30/1f41c3d3b8cec82024b4b277bfd4e5b18b765ae7279eb9871fa25c503778/smart_open-7.1.0.tar.gz", hash = "sha256:a4f09f84f0f6d3637c6543aca7b5487438877a21360e7368ccf1f704789752ba", size = 72044, upload-time = "2024-12-17T13:19:17.71Z" } +sdist = { url = "https://files.pythonhosted.org/packages/67/9a/0a7acb748b86e2922982366d780ca4b16c33f7246fa5860d26005c97e4f3/smart_open-7.5.0.tar.gz", hash = "sha256:f394b143851d8091011832ac8113ea4aba6b92e6c35f6e677ddaaccb169d7cb9", size = 53920, upload-time = "2025-11-08T21:38:40.698Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/7a/18/9a8d9f01957aa1f8bbc5676d54c2e33102d247e146c1a3679d3bd5cc2e3a/smart_open-7.1.0-py3-none-any.whl", hash = "sha256:4b8489bb6058196258bafe901730c7db0dcf4f083f316e97269c66f45502055b", size = 61746, upload-time = "2024-12-17T13:19:21.076Z" }, + { url = "https://files.pythonhosted.org/packages/ad/95/bc978be7ea0babf2fb48a414b6afaad414c6a9e8b1eafc5b8a53c030381a/smart_open-7.5.0-py3-none-any.whl", hash = "sha256:87e695c5148bbb988f15cec00971602765874163be85acb1c9fb8abc012e6599", size = 63940, upload-time = "2025-11-08T21:38:39.024Z" }, ] [[package]] @@ -13261,11 +12111,11 @@ wheels = [ [[package]] name = "soupsieve" -version = "2.7" +version = "2.8" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/3f/f4/4a80cd6ef364b2e8b65b15816a843c0980f7a5a2b4dc701fc574952aa19f/soupsieve-2.7.tar.gz", hash = "sha256:ad282f9b6926286d2ead4750552c8a6142bc4c783fd66b0293547c8fe6ae126a", size = 103418, upload-time = "2025-04-20T18:50:08.518Z" } +sdist = { url = "https://files.pythonhosted.org/packages/6d/e6/21ccce3262dd4889aa3332e5a119a3491a95e8f60939870a3a035aabac0d/soupsieve-2.8.tar.gz", hash = "sha256:e2dd4a40a628cb5f28f6d4b0db8800b8f581b65bb380b97de22ba5ca8d72572f", size = 103472, upload-time = "2025-08-27T15:39:51.78Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/e7/9c/0e6afc12c269578be5c0c1c9f4b49a8d32770a080260c333ac04cc1c832d/soupsieve-2.7-py3-none-any.whl", hash = "sha256:6e60cc5c1ffaf1cebcc12e8188320b72071e922c2e897f737cadce79ad5d30c4", size = 36677, upload-time = "2025-04-20T18:50:07.196Z" }, + { url = "https://files.pythonhosted.org/packages/14/a0/bb38d3b76b8cae341dad93a2dd83ab7462e6dbcdd84d43f54ee60a8dc167/soupsieve-2.8-py3-none-any.whl", hash = "sha256:0cc76456a30e20f5d7f2e14a98a4ae2ee4e5abdc7c5ea0aafe795f344bc7984c", size = 36679, upload-time = "2025-08-27T15:39:50.179Z" }, ] [[package]] @@ -13273,17 +12123,12 @@ name = "spglib" version = "2.6.0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-5-mlipx-grace' or extra == 'extra-5-mlipx-matpes' or extra == 'extra-5-mlipx-mattersim' or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-5-mlipx-fairchem' or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "typing-extensions", marker = "python_full_version < '3.13'" }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'extra-5-mlipx-grace') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "numpy", version = "2.1.3", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform != 'linux' or extra == 'extra-5-mlipx-fairchem' or extra != 'extra-5-mlipx-grace' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "typing-extensions", marker = "python_full_version < '3.13' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/bf/34/1fe99124be59579ebd24316522e1da780979c856977b142c0dcd878b0a2d/spglib-2.6.0.tar.gz", hash = "sha256:d66eda2ba00a1e14fd96ec9c3b4dbf8ab0fb3f124643e35785c71ee455b408eb", size = 2360880, upload-time = "2025-03-10T05:59:00.386Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/80/c9/e13567a05086275fc386b176073515ace929cff3e2a371f7cce4f10e9eb3/spglib-2.6.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:32412b0e1287e3ae59758d5ce8f91a35f377e53eb2931341e4e9a1e1be187a54", size = 796254, upload-time = "2025-03-10T05:58:20.809Z" }, - { url = "https://files.pythonhosted.org/packages/1c/13/c1636179c0cc83bf70e26b9936a165429606a0520a81fe0350f74259b822/spglib-2.6.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:0c5410f73e7455372309309444541fd7a8c6e72b0536185d5b8e95dc5e0b949d", size = 798728, upload-time = "2025-03-10T05:58:22.912Z" }, - { url = "https://files.pythonhosted.org/packages/c1/41/62c7412c8674647ff26b7cb2d06f70a203eaf22f7197cc00d55d179b9bc3/spglib-2.6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:231af497fa2c7cec7943291d07e61e67c4202acecc3f79876bf7c48a86432202", size = 805041, upload-time = "2025-03-10T05:58:25.181Z" }, - { url = "https://files.pythonhosted.org/packages/e1/65/453e04e8311ccb65794aae8550934b405d19e883956904358f92ba061206/spglib-2.6.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a7b8a6415b02a3bd5c69fb6bc8a8f7a01e28a3376e579819c10f12c9ac875bcb", size = 809048, upload-time = "2025-03-10T05:58:27.608Z" }, - { url = "https://files.pythonhosted.org/packages/d1/d4/55a5dcda747b595fc5a2398f93a7a44764b22ca5ee8c5be8bfb9304b7431/spglib-2.6.0-cp310-cp310-win_amd64.whl", hash = "sha256:94675831b99433a09cd1aa29b5212d1c87e611bd92cb31f37ea73a5509219aef", size = 561119, upload-time = "2025-03-10T05:58:29.128Z" }, { url = "https://files.pythonhosted.org/packages/6c/44/30888e2a5b2fa2e6df18606b442cb8b126b0bea5a2f1ec4a2a82538ffecf/spglib-2.6.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c22d87849e1086cbe88399c08c93b4e7babec92c1db49f15ef8b081339b67e25", size = 796254, upload-time = "2025-03-10T05:58:30.743Z" }, { url = "https://files.pythonhosted.org/packages/f6/ca/270d463f6c34f539bb55acdab14099c092d3be28c8af64d61399aa07610c/spglib-2.6.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:02d2e730a3b2cb43e318944493d0c288592b0e2ddbab0d222a548312659ee22a", size = 798729, upload-time = "2025-03-10T05:58:32.076Z" }, { url = "https://files.pythonhosted.org/packages/9f/20/5e230660425b03b9a43d10e8d8c29d2242c0ba839919ae37a0a5120df137/spglib-2.6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:046b72f67f0a6e47ea2ec43c160c8f223f5bb557311617aa2043c5d0bb3b39fa", size = 805043, upload-time = "2025-03-10T05:58:33.608Z" }, @@ -13303,7 +12148,7 @@ wheels = [ [[package]] name = "sphinx" -version = "8.1.3" +version = "8.2.3" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "alabaster" }, @@ -13315,6 +12160,7 @@ dependencies = [ { name = "packaging" }, { name = "pygments" }, { name = "requests" }, + { name = "roman-numerals-py" }, { name = "snowballstemmer" }, { name = "sphinxcontrib-applehelp" }, { name = "sphinxcontrib-devhelp" }, @@ -13322,11 +12168,10 @@ dependencies = [ { name = "sphinxcontrib-jsmath" }, { name = "sphinxcontrib-qthelp" }, { name = "sphinxcontrib-serializinghtml" }, - { name = "tomli", marker = "python_full_version < '3.11' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/6f/6d/be0b61178fe2cdcb67e2a92fc9ebb488e3c51c4f74a36a7824c0adf23425/sphinx-8.1.3.tar.gz", hash = "sha256:43c1911eecb0d3e161ad78611bc905d1ad0e523e4ddc202a58a821773dc4c927", size = 8184611, upload-time = "2024-10-13T20:27:13.93Z" } +sdist = { url = "https://files.pythonhosted.org/packages/38/ad/4360e50ed56cb483667b8e6dadf2d3fda62359593faabbe749a27c4eaca6/sphinx-8.2.3.tar.gz", hash = "sha256:398ad29dee7f63a75888314e9424d40f52ce5a6a87ae88e7071e80af296ec348", size = 8321876, upload-time = "2025-03-02T22:31:59.658Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/26/60/1ddff83a56d33aaf6f10ec8ce84b4c007d9368b21008876fceda7e7381ef/sphinx-8.1.3-py3-none-any.whl", hash = "sha256:09719015511837b76bf6e03e42eb7595ac8c2e41eeb9c29c5b755c6b677992a2", size = 3487125, upload-time = "2024-10-13T20:27:10.448Z" }, + { url = "https://files.pythonhosted.org/packages/31/53/136e9eca6e0b9dc0e1962e2c908fbea2e5ac000c2a2fbd9a35797958c48b/sphinx-8.2.3-py3-none-any.whl", hash = "sha256:4405915165f13521d875a8c29c8970800a0141c14cc5416a38feca4ea5d9b9c3", size = 3589741, upload-time = "2025-03-02T22:31:56.836Z" }, ] [[package]] @@ -13404,18 +12249,17 @@ wheels = [ [[package]] name = "sphinxcontrib-bibtex" -version = "2.6.3" +version = "2.6.5" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "docutils" }, { name = "pybtex" }, { name = "pybtex-docutils" }, - { name = "setuptools", marker = "python_full_version >= '3.12' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, { name = "sphinx" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/c1/ce/054a8ec04063f9a27772fea7188f796edbfa382e656d3b76428323861f0e/sphinxcontrib_bibtex-2.6.3.tar.gz", hash = "sha256:7c790347ef1cb0edf30de55fc324d9782d085e89c52c2b8faafa082e08e23946", size = 117177, upload-time = "2024-09-12T14:23:44.662Z" } +sdist = { url = "https://files.pythonhosted.org/packages/de/83/1488c9879f2fa3c2cbd6f666c7a3a42a1fa9e08462bec73281fa6c092cba/sphinxcontrib_bibtex-2.6.5.tar.gz", hash = "sha256:9b3224dd6fece9268ebd8c905dc0a83ff2f6c54148a9235fe70e9d1e9ff149c0", size = 118462, upload-time = "2025-06-27T10:40:14.061Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/8e/49/c23f9493c0a5d5881fb7ed3002e87708454fef860aa96a48e755d27bf6f0/sphinxcontrib_bibtex-2.6.3-py3-none-any.whl", hash = "sha256:ff016b738fcc867df0f75c29e139b3b2158d26a2c802db27963cb128be3b75fb", size = 40340, upload-time = "2024-09-12T14:23:43.593Z" }, + { url = "https://files.pythonhosted.org/packages/9e/a0/3a612da94f828f26cabb247817393e79472c32b12c49222bf85fb6d7b6c8/sphinxcontrib_bibtex-2.6.5-py3-none-any.whl", hash = "sha256:455ea4509642ea0b28ede3721550273626f85af65af01f161bfd8e19dc1edd7d", size = 40410, upload-time = "2025-06-27T10:40:12.274Z" }, ] [[package]] @@ -13459,15 +12303,15 @@ wheels = [ [[package]] name = "sphinxcontrib-mermaid" -version = "1.0.0" +version = "1.2.3" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "pyyaml" }, { name = "sphinx" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/97/69/bf039237ad260073e8c02f820b3e00dc34f3a2de20aff7861e6b19d2f8c5/sphinxcontrib_mermaid-1.0.0.tar.gz", hash = "sha256:2e8ab67d3e1e2816663f9347d026a8dee4a858acdd4ad32dd1c808893db88146", size = 15153, upload-time = "2024-10-12T16:33:03.863Z" } +sdist = { url = "https://files.pythonhosted.org/packages/f5/49/c6ddfe709a4ab76ac6e5a00e696f73626b2c189dc1e1965a361ec102e6cc/sphinxcontrib_mermaid-1.2.3.tar.gz", hash = "sha256:358699d0ec924ef679b41873d9edd97d0773446daf9760c75e18dc0adfd91371", size = 18885, upload-time = "2025-11-26T04:18:32.43Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/cd/c8/784b9ac6ea08aa594c1a4becbd0dbe77186785362e31fd633b8c6ae0197a/sphinxcontrib_mermaid-1.0.0-py3-none-any.whl", hash = "sha256:60b72710ea02087f212028feb09711225fbc2e343a10d34822fe787510e1caa3", size = 9597, upload-time = "2024-10-12T16:33:02.303Z" }, + { url = "https://files.pythonhosted.org/packages/d1/39/8b54299ffa00e597d3b0b4d042241a0a0b22cb429ad007ccfb9c1745b4d1/sphinxcontrib_mermaid-1.2.3-py3-none-any.whl", hash = "sha256:5be782b27026bef97bfb15ccb2f7868b674a1afc0982b54cb149702cfc25aa02", size = 13413, upload-time = "2025-11-26T04:18:31.269Z" }, ] [[package]] @@ -13490,60 +12334,52 @@ wheels = [ [[package]] name = "splines" -version = "0.3.2" +version = "0.3.3" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-5-mlipx-grace' or extra == 'extra-5-mlipx-matpes' or extra == 'extra-5-mlipx-mattersim' or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-5-mlipx-fairchem' or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'extra-5-mlipx-grace') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "numpy", version = "2.1.3", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform != 'linux' or extra == 'extra-5-mlipx-fairchem' or extra != 'extra-5-mlipx-grace' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/0c/d1/aa246988f8ba7a1c205b51af6a943fd04da5895ef9f50df40b59bb356b0d/splines-0.3.2.tar.gz", hash = "sha256:89258b3b08c8f7f3bf79f4147920bb4c11c2f334e4c69cb9b79cd9a61c32fcc5", size = 128505, upload-time = "2024-05-25T18:12:15.129Z" } +sdist = { url = "https://files.pythonhosted.org/packages/f8/3d/3a20cbef41deec4597e5a442297900f8c4f9fa8d92d6bbca71b11f639e5e/splines-0.3.3.tar.gz", hash = "sha256:9d9108303f0f3b0e1be8e014c4a724c674a6c0558ab101e14dd04c74505c4eb9", size = 128819, upload-time = "2025-06-25T17:55:43.801Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/56/5e/d927cf781a65325189c177c5d5954c30a58a02c1024a96c81bd4e2f34583/splines-0.3.2-py3-none-any.whl", hash = "sha256:e3db5dd771213d6cbb37a81859b372350d1263caa147806b08d709d5a99d0d67", size = 17595, upload-time = "2024-05-25T18:12:12.802Z" }, + { url = "https://files.pythonhosted.org/packages/d7/a5/2a1c72741acd5383ff320496ba7d449407491f1513a7dba72ed053e7142e/splines-0.3.3-py3-none-any.whl", hash = "sha256:47b68f370b17c68d9ebe24fc6525532f61d5796bb655c3b9e7e8a76d2518ff09", size = 17699, upload-time = "2025-06-25T17:55:42.352Z" }, ] [[package]] name = "sqlalchemy" -version = "2.0.41" +version = "2.0.44" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "greenlet", marker = "(python_full_version < '3.14' and platform_machine == 'AMD64') or (python_full_version < '3.14' and platform_machine == 'WIN32') or (python_full_version < '3.14' and platform_machine == 'aarch64') or (python_full_version < '3.14' and platform_machine == 'amd64') or (python_full_version < '3.14' and platform_machine == 'ppc64le') or (python_full_version < '3.14' and platform_machine == 'win32') or (python_full_version < '3.14' and platform_machine == 'x86_64') or (platform_machine != 'AMD64' and platform_machine != 'WIN32' and platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'ppc64le' and platform_machine != 'win32' and platform_machine != 'x86_64' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (platform_machine != 'AMD64' and platform_machine != 'WIN32' and platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'ppc64le' and platform_machine != 'win32' and platform_machine != 'x86_64' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (platform_machine != 'AMD64' and platform_machine != 'WIN32' and platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'ppc64le' and platform_machine != 'win32' and platform_machine != 'x86_64' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (platform_machine != 'AMD64' and platform_machine != 'WIN32' and platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'ppc64le' and platform_machine != 'win32' and platform_machine != 'x86_64' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (platform_machine != 'AMD64' and platform_machine != 'WIN32' and platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'ppc64le' and platform_machine != 'win32' and platform_machine != 'x86_64' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (platform_machine != 'AMD64' and platform_machine != 'WIN32' and platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'ppc64le' and platform_machine != 'win32' and platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (platform_machine != 'AMD64' and platform_machine != 'WIN32' and platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'ppc64le' and platform_machine != 'win32' and platform_machine != 'x86_64' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (platform_machine != 'AMD64' and platform_machine != 'WIN32' and platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'ppc64le' and platform_machine != 'win32' and platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (platform_machine != 'AMD64' and platform_machine != 'WIN32' and platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'ppc64le' and platform_machine != 'win32' and platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (platform_machine == 'AMD64' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (platform_machine == 'AMD64' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (platform_machine == 'AMD64' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (platform_machine == 'AMD64' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (platform_machine == 'AMD64' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (platform_machine == 'AMD64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (platform_machine == 'AMD64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (platform_machine == 'AMD64' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (platform_machine == 'WIN32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (platform_machine == 'WIN32' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (platform_machine == 'WIN32' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (platform_machine == 'WIN32' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (platform_machine == 'WIN32' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (platform_machine == 'WIN32' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (platform_machine == 'WIN32' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (platform_machine == 'WIN32' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (platform_machine == 'aarch64' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (platform_machine == 'aarch64' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (platform_machine == 'aarch64' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (platform_machine == 'aarch64' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (platform_machine == 'aarch64' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (platform_machine == 'aarch64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (platform_machine == 'aarch64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (platform_machine == 'aarch64' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (platform_machine == 'amd64' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (platform_machine == 'amd64' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (platform_machine == 'amd64' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (platform_machine == 'amd64' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (platform_machine == 'amd64' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (platform_machine == 'amd64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (platform_machine == 'amd64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (platform_machine == 'amd64' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (platform_machine == 'ppc64le' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (platform_machine == 'ppc64le' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (platform_machine == 'ppc64le' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (platform_machine == 'ppc64le' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (platform_machine == 'ppc64le' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (platform_machine == 'ppc64le' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (platform_machine == 'ppc64le' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (platform_machine == 'ppc64le' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (platform_machine == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (platform_machine == 'win32' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (platform_machine == 'win32' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (platform_machine == 'win32' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (platform_machine == 'win32' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (platform_machine == 'win32' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (platform_machine == 'win32' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (platform_machine == 'win32' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (platform_machine == 'x86_64' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (platform_machine == 'x86_64' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (platform_machine == 'x86_64' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (platform_machine == 'x86_64' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (platform_machine == 'x86_64' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (platform_machine == 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (platform_machine == 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (platform_machine == 'x86_64' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "greenlet", marker = "platform_machine == 'AMD64' or platform_machine == 'WIN32' or platform_machine == 'aarch64' or platform_machine == 'amd64' or platform_machine == 'ppc64le' or platform_machine == 'win32' or platform_machine == 'x86_64' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, { name = "typing-extensions" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/63/66/45b165c595ec89aa7dcc2c1cd222ab269bc753f1fc7a1e68f8481bd957bf/sqlalchemy-2.0.41.tar.gz", hash = "sha256:edba70118c4be3c2b1f90754d308d0b79c6fe2c0fdc52d8ddf603916f83f4db9", size = 9689424, upload-time = "2025-05-14T17:10:32.339Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/e9/12/d7c445b1940276a828efce7331cb0cb09d6e5f049651db22f4ebb0922b77/sqlalchemy-2.0.41-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:b1f09b6821406ea1f94053f346f28f8215e293344209129a9c0fcc3578598d7b", size = 2117967, upload-time = "2025-05-14T17:48:15.841Z" }, - { url = "https://files.pythonhosted.org/packages/6f/b8/cb90f23157e28946b27eb01ef401af80a1fab7553762e87df51507eaed61/sqlalchemy-2.0.41-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:1936af879e3db023601196a1684d28e12f19ccf93af01bf3280a3262c4b6b4e5", size = 2107583, upload-time = "2025-05-14T17:48:18.688Z" }, - { url = "https://files.pythonhosted.org/packages/9e/c2/eef84283a1c8164a207d898e063edf193d36a24fb6a5bb3ce0634b92a1e8/sqlalchemy-2.0.41-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b2ac41acfc8d965fb0c464eb8f44995770239668956dc4cdf502d1b1ffe0d747", size = 3186025, upload-time = "2025-05-14T17:51:51.226Z" }, - { url = "https://files.pythonhosted.org/packages/bd/72/49d52bd3c5e63a1d458fd6d289a1523a8015adedbddf2c07408ff556e772/sqlalchemy-2.0.41-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:81c24e0c0fde47a9723c81d5806569cddef103aebbf79dbc9fcbb617153dea30", size = 3186259, upload-time = "2025-05-14T17:55:22.526Z" }, - { url = "https://files.pythonhosted.org/packages/4f/9e/e3ffc37d29a3679a50b6bbbba94b115f90e565a2b4545abb17924b94c52d/sqlalchemy-2.0.41-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:23a8825495d8b195c4aa9ff1c430c28f2c821e8c5e2d98089228af887e5d7e29", size = 3126803, upload-time = "2025-05-14T17:51:53.277Z" }, - { url = "https://files.pythonhosted.org/packages/8a/76/56b21e363f6039978ae0b72690237b38383e4657281285a09456f313dd77/sqlalchemy-2.0.41-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:60c578c45c949f909a4026b7807044e7e564adf793537fc762b2489d522f3d11", size = 3148566, upload-time = "2025-05-14T17:55:24.398Z" }, - { url = "https://files.pythonhosted.org/packages/3b/92/11b8e1b69bf191bc69e300a99badbbb5f2f1102f2b08b39d9eee2e21f565/sqlalchemy-2.0.41-cp310-cp310-win32.whl", hash = "sha256:118c16cd3f1b00c76d69343e38602006c9cfb9998fa4f798606d28d63f23beda", size = 2086696, upload-time = "2025-05-14T17:55:59.136Z" }, - { url = "https://files.pythonhosted.org/packages/5c/88/2d706c9cc4502654860f4576cd54f7db70487b66c3b619ba98e0be1a4642/sqlalchemy-2.0.41-cp310-cp310-win_amd64.whl", hash = "sha256:7492967c3386df69f80cf67efd665c0f667cee67032090fe01d7d74b0e19bb08", size = 2110200, upload-time = "2025-05-14T17:56:00.757Z" }, - { url = "https://files.pythonhosted.org/packages/37/4e/b00e3ffae32b74b5180e15d2ab4040531ee1bef4c19755fe7926622dc958/sqlalchemy-2.0.41-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6375cd674fe82d7aa9816d1cb96ec592bac1726c11e0cafbf40eeee9a4516b5f", size = 2121232, upload-time = "2025-05-14T17:48:20.444Z" }, - { url = "https://files.pythonhosted.org/packages/ef/30/6547ebb10875302074a37e1970a5dce7985240665778cfdee2323709f749/sqlalchemy-2.0.41-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:9f8c9fdd15a55d9465e590a402f42082705d66b05afc3ffd2d2eb3c6ba919560", size = 2110897, upload-time = "2025-05-14T17:48:21.634Z" }, - { url = "https://files.pythonhosted.org/packages/9e/21/59df2b41b0f6c62da55cd64798232d7349a9378befa7f1bb18cf1dfd510a/sqlalchemy-2.0.41-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:32f9dc8c44acdee06c8fc6440db9eae8b4af8b01e4b1aee7bdd7241c22edff4f", size = 3273313, upload-time = "2025-05-14T17:51:56.205Z" }, - { url = "https://files.pythonhosted.org/packages/62/e4/b9a7a0e5c6f79d49bcd6efb6e90d7536dc604dab64582a9dec220dab54b6/sqlalchemy-2.0.41-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:90c11ceb9a1f482c752a71f203a81858625d8df5746d787a4786bca4ffdf71c6", size = 3273807, upload-time = "2025-05-14T17:55:26.928Z" }, - { url = "https://files.pythonhosted.org/packages/39/d8/79f2427251b44ddee18676c04eab038d043cff0e764d2d8bb08261d6135d/sqlalchemy-2.0.41-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:911cc493ebd60de5f285bcae0491a60b4f2a9f0f5c270edd1c4dbaef7a38fc04", size = 3209632, upload-time = "2025-05-14T17:51:59.384Z" }, - { url = "https://files.pythonhosted.org/packages/d4/16/730a82dda30765f63e0454918c982fb7193f6b398b31d63c7c3bd3652ae5/sqlalchemy-2.0.41-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:03968a349db483936c249f4d9cd14ff2c296adfa1290b660ba6516f973139582", size = 3233642, upload-time = "2025-05-14T17:55:29.901Z" }, - { url = "https://files.pythonhosted.org/packages/04/61/c0d4607f7799efa8b8ea3c49b4621e861c8f5c41fd4b5b636c534fcb7d73/sqlalchemy-2.0.41-cp311-cp311-win32.whl", hash = "sha256:293cd444d82b18da48c9f71cd7005844dbbd06ca19be1ccf6779154439eec0b8", size = 2086475, upload-time = "2025-05-14T17:56:02.095Z" }, - { url = "https://files.pythonhosted.org/packages/9d/8e/8344f8ae1cb6a479d0741c02cd4f666925b2bf02e2468ddaf5ce44111f30/sqlalchemy-2.0.41-cp311-cp311-win_amd64.whl", hash = "sha256:3d3549fc3e40667ec7199033a4e40a2f669898a00a7b18a931d3efb4c7900504", size = 2110903, upload-time = "2025-05-14T17:56:03.499Z" }, - { url = "https://files.pythonhosted.org/packages/3e/2a/f1f4e068b371154740dd10fb81afb5240d5af4aa0087b88d8b308b5429c2/sqlalchemy-2.0.41-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:81f413674d85cfd0dfcd6512e10e0f33c19c21860342a4890c3a2b59479929f9", size = 2119645, upload-time = "2025-05-14T17:55:24.854Z" }, - { url = "https://files.pythonhosted.org/packages/9b/e8/c664a7e73d36fbfc4730f8cf2bf930444ea87270f2825efbe17bf808b998/sqlalchemy-2.0.41-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:598d9ebc1e796431bbd068e41e4de4dc34312b7aa3292571bb3674a0cb415dd1", size = 2107399, upload-time = "2025-05-14T17:55:28.097Z" }, - { url = "https://files.pythonhosted.org/packages/5c/78/8a9cf6c5e7135540cb682128d091d6afa1b9e48bd049b0d691bf54114f70/sqlalchemy-2.0.41-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a104c5694dfd2d864a6f91b0956eb5d5883234119cb40010115fd45a16da5e70", size = 3293269, upload-time = "2025-05-14T17:50:38.227Z" }, - { url = "https://files.pythonhosted.org/packages/3c/35/f74add3978c20de6323fb11cb5162702670cc7a9420033befb43d8d5b7a4/sqlalchemy-2.0.41-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6145afea51ff0af7f2564a05fa95eb46f542919e6523729663a5d285ecb3cf5e", size = 3303364, upload-time = "2025-05-14T17:51:49.829Z" }, - { url = "https://files.pythonhosted.org/packages/6a/d4/c990f37f52c3f7748ebe98883e2a0f7d038108c2c5a82468d1ff3eec50b7/sqlalchemy-2.0.41-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:b46fa6eae1cd1c20e6e6f44e19984d438b6b2d8616d21d783d150df714f44078", size = 3229072, upload-time = "2025-05-14T17:50:39.774Z" }, - { url = "https://files.pythonhosted.org/packages/15/69/cab11fecc7eb64bc561011be2bd03d065b762d87add52a4ca0aca2e12904/sqlalchemy-2.0.41-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:41836fe661cc98abfae476e14ba1906220f92c4e528771a8a3ae6a151242d2ae", size = 3268074, upload-time = "2025-05-14T17:51:51.736Z" }, - { url = "https://files.pythonhosted.org/packages/5c/ca/0c19ec16858585d37767b167fc9602593f98998a68a798450558239fb04a/sqlalchemy-2.0.41-cp312-cp312-win32.whl", hash = "sha256:a8808d5cf866c781150d36a3c8eb3adccfa41a8105d031bf27e92c251e3969d6", size = 2084514, upload-time = "2025-05-14T17:55:49.915Z" }, - { url = "https://files.pythonhosted.org/packages/7f/23/4c2833d78ff3010a4e17f984c734f52b531a8c9060a50429c9d4b0211be6/sqlalchemy-2.0.41-cp312-cp312-win_amd64.whl", hash = "sha256:5b14e97886199c1f52c14629c11d90c11fbb09e9334fa7bb5f6d068d9ced0ce0", size = 2111557, upload-time = "2025-05-14T17:55:51.349Z" }, - { url = "https://files.pythonhosted.org/packages/d3/ad/2e1c6d4f235a97eeef52d0200d8ddda16f6c4dd70ae5ad88c46963440480/sqlalchemy-2.0.41-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:4eeb195cdedaf17aab6b247894ff2734dcead6c08f748e617bfe05bd5a218443", size = 2115491, upload-time = "2025-05-14T17:55:31.177Z" }, - { url = "https://files.pythonhosted.org/packages/cf/8d/be490e5db8400dacc89056f78a52d44b04fbf75e8439569d5b879623a53b/sqlalchemy-2.0.41-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:d4ae769b9c1c7757e4ccce94b0641bc203bbdf43ba7a2413ab2523d8d047d8dc", size = 2102827, upload-time = "2025-05-14T17:55:34.921Z" }, - { url = "https://files.pythonhosted.org/packages/a0/72/c97ad430f0b0e78efaf2791342e13ffeafcbb3c06242f01a3bb8fe44f65d/sqlalchemy-2.0.41-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a62448526dd9ed3e3beedc93df9bb6b55a436ed1474db31a2af13b313a70a7e1", size = 3225224, upload-time = "2025-05-14T17:50:41.418Z" }, - { url = "https://files.pythonhosted.org/packages/5e/51/5ba9ea3246ea068630acf35a6ba0d181e99f1af1afd17e159eac7e8bc2b8/sqlalchemy-2.0.41-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dc56c9788617b8964ad02e8fcfeed4001c1f8ba91a9e1f31483c0dffb207002a", size = 3230045, upload-time = "2025-05-14T17:51:54.722Z" }, - { url = "https://files.pythonhosted.org/packages/78/2f/8c14443b2acea700c62f9b4a8bad9e49fc1b65cfb260edead71fd38e9f19/sqlalchemy-2.0.41-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c153265408d18de4cc5ded1941dcd8315894572cddd3c58df5d5b5705b3fa28d", size = 3159357, upload-time = "2025-05-14T17:50:43.483Z" }, - { url = "https://files.pythonhosted.org/packages/fc/b2/43eacbf6ccc5276d76cea18cb7c3d73e294d6fb21f9ff8b4eef9b42bbfd5/sqlalchemy-2.0.41-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:4f67766965996e63bb46cfbf2ce5355fc32d9dd3b8ad7e536a920ff9ee422e23", size = 3197511, upload-time = "2025-05-14T17:51:57.308Z" }, - { url = "https://files.pythonhosted.org/packages/fa/2e/677c17c5d6a004c3c45334ab1dbe7b7deb834430b282b8a0f75ae220c8eb/sqlalchemy-2.0.41-cp313-cp313-win32.whl", hash = "sha256:bfc9064f6658a3d1cadeaa0ba07570b83ce6801a1314985bf98ec9b95d74e15f", size = 2082420, upload-time = "2025-05-14T17:55:52.69Z" }, - { url = "https://files.pythonhosted.org/packages/e9/61/e8c1b9b6307c57157d328dd8b8348ddc4c47ffdf1279365a13b2b98b8049/sqlalchemy-2.0.41-cp313-cp313-win_amd64.whl", hash = "sha256:82ca366a844eb551daff9d2e6e7a9e5e76d2612c8564f58db6c19a726869c1df", size = 2108329, upload-time = "2025-05-14T17:55:54.495Z" }, - { url = "https://files.pythonhosted.org/packages/1c/fc/9ba22f01b5cdacc8f5ed0d22304718d2c758fce3fd49a5372b886a86f37c/sqlalchemy-2.0.41-py3-none-any.whl", hash = "sha256:57df5dc6fdb5ed1a88a1ed2195fd31927e705cad62dedd86b46972752a80f576", size = 1911224, upload-time = "2025-05-14T17:39:42.154Z" }, +sdist = { url = "https://files.pythonhosted.org/packages/f0/f2/840d7b9496825333f532d2e3976b8eadbf52034178aac53630d09fe6e1ef/sqlalchemy-2.0.44.tar.gz", hash = "sha256:0ae7454e1ab1d780aee69fd2aae7d6b8670a581d8847f2d1e0f7ddfbf47e5a22", size = 9819830, upload-time = "2025-10-10T14:39:12.935Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e3/81/15d7c161c9ddf0900b076b55345872ed04ff1ed6a0666e5e94ab44b0163c/sqlalchemy-2.0.44-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:0fe3917059c7ab2ee3f35e77757062b1bea10a0b6ca633c58391e3f3c6c488dd", size = 2140517, upload-time = "2025-10-10T15:36:15.64Z" }, + { url = "https://files.pythonhosted.org/packages/d4/d5/4abd13b245c7d91bdf131d4916fd9e96a584dac74215f8b5bc945206a974/sqlalchemy-2.0.44-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:de4387a354ff230bc979b46b2207af841dc8bf29847b6c7dbe60af186d97aefa", size = 2130738, upload-time = "2025-10-10T15:36:16.91Z" }, + { url = "https://files.pythonhosted.org/packages/cb/3c/8418969879c26522019c1025171cefbb2a8586b6789ea13254ac602986c0/sqlalchemy-2.0.44-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c3678a0fb72c8a6a29422b2732fe423db3ce119c34421b5f9955873eb9b62c1e", size = 3304145, upload-time = "2025-10-10T15:34:19.569Z" }, + { url = "https://files.pythonhosted.org/packages/94/2d/fdb9246d9d32518bda5d90f4b65030b9bf403a935cfe4c36a474846517cb/sqlalchemy-2.0.44-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3cf6872a23601672d61a68f390e44703442639a12ee9dd5a88bbce52a695e46e", size = 3304511, upload-time = "2025-10-10T15:47:05.088Z" }, + { url = "https://files.pythonhosted.org/packages/7d/fb/40f2ad1da97d5c83f6c1269664678293d3fe28e90ad17a1093b735420549/sqlalchemy-2.0.44-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:329aa42d1be9929603f406186630135be1e7a42569540577ba2c69952b7cf399", size = 3235161, upload-time = "2025-10-10T15:34:21.193Z" }, + { url = "https://files.pythonhosted.org/packages/95/cb/7cf4078b46752dca917d18cf31910d4eff6076e5b513c2d66100c4293d83/sqlalchemy-2.0.44-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:70e03833faca7166e6a9927fbee7c27e6ecde436774cd0b24bbcc96353bce06b", size = 3261426, upload-time = "2025-10-10T15:47:07.196Z" }, + { url = "https://files.pythonhosted.org/packages/f8/3b/55c09b285cb2d55bdfa711e778bdffdd0dc3ffa052b0af41f1c5d6e582fa/sqlalchemy-2.0.44-cp311-cp311-win32.whl", hash = "sha256:253e2f29843fb303eca6b2fc645aca91fa7aa0aa70b38b6950da92d44ff267f3", size = 2105392, upload-time = "2025-10-10T15:38:20.051Z" }, + { url = "https://files.pythonhosted.org/packages/c7/23/907193c2f4d680aedbfbdf7bf24c13925e3c7c292e813326c1b84a0b878e/sqlalchemy-2.0.44-cp311-cp311-win_amd64.whl", hash = "sha256:7a8694107eb4308a13b425ca8c0e67112f8134c846b6e1f722698708741215d5", size = 2130293, upload-time = "2025-10-10T15:38:21.601Z" }, + { url = "https://files.pythonhosted.org/packages/62/c4/59c7c9b068e6813c898b771204aad36683c96318ed12d4233e1b18762164/sqlalchemy-2.0.44-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:72fea91746b5890f9e5e0997f16cbf3d53550580d76355ba2d998311b17b2250", size = 2139675, upload-time = "2025-10-10T16:03:31.064Z" }, + { url = "https://files.pythonhosted.org/packages/d6/ae/eeb0920537a6f9c5a3708e4a5fc55af25900216bdb4847ec29cfddf3bf3a/sqlalchemy-2.0.44-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:585c0c852a891450edbb1eaca8648408a3cc125f18cf433941fa6babcc359e29", size = 2127726, upload-time = "2025-10-10T16:03:35.934Z" }, + { url = "https://files.pythonhosted.org/packages/d8/d5/2ebbabe0379418eda8041c06b0b551f213576bfe4c2f09d77c06c07c8cc5/sqlalchemy-2.0.44-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9b94843a102efa9ac68a7a30cd46df3ff1ed9c658100d30a725d10d9c60a2f44", size = 3327603, upload-time = "2025-10-10T15:35:28.322Z" }, + { url = "https://files.pythonhosted.org/packages/45/e5/5aa65852dadc24b7d8ae75b7efb8d19303ed6ac93482e60c44a585930ea5/sqlalchemy-2.0.44-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:119dc41e7a7defcefc57189cfa0e61b1bf9c228211aba432b53fb71ef367fda1", size = 3337842, upload-time = "2025-10-10T15:43:45.431Z" }, + { url = "https://files.pythonhosted.org/packages/41/92/648f1afd3f20b71e880ca797a960f638d39d243e233a7082c93093c22378/sqlalchemy-2.0.44-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:0765e318ee9179b3718c4fd7ba35c434f4dd20332fbc6857a5e8df17719c24d7", size = 3264558, upload-time = "2025-10-10T15:35:29.93Z" }, + { url = "https://files.pythonhosted.org/packages/40/cf/e27d7ee61a10f74b17740918e23cbc5bc62011b48282170dc4c66da8ec0f/sqlalchemy-2.0.44-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:2e7b5b079055e02d06a4308d0481658e4f06bc7ef211567edc8f7d5dce52018d", size = 3301570, upload-time = "2025-10-10T15:43:48.407Z" }, + { url = "https://files.pythonhosted.org/packages/3b/3d/3116a9a7b63e780fb402799b6da227435be878b6846b192f076d2f838654/sqlalchemy-2.0.44-cp312-cp312-win32.whl", hash = "sha256:846541e58b9a81cce7dee8329f352c318de25aa2f2bbe1e31587eb1f057448b4", size = 2103447, upload-time = "2025-10-10T15:03:21.678Z" }, + { url = "https://files.pythonhosted.org/packages/25/83/24690e9dfc241e6ab062df82cc0df7f4231c79ba98b273fa496fb3dd78ed/sqlalchemy-2.0.44-cp312-cp312-win_amd64.whl", hash = "sha256:7cbcb47fd66ab294703e1644f78971f6f2f1126424d2b300678f419aa73c7b6e", size = 2130912, upload-time = "2025-10-10T15:03:24.656Z" }, + { url = "https://files.pythonhosted.org/packages/45/d3/c67077a2249fdb455246e6853166360054c331db4613cda3e31ab1cadbef/sqlalchemy-2.0.44-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:ff486e183d151e51b1d694c7aa1695747599bb00b9f5f604092b54b74c64a8e1", size = 2135479, upload-time = "2025-10-10T16:03:37.671Z" }, + { url = "https://files.pythonhosted.org/packages/2b/91/eabd0688330d6fd114f5f12c4f89b0d02929f525e6bf7ff80aa17ca802af/sqlalchemy-2.0.44-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:0b1af8392eb27b372ddb783b317dea0f650241cea5bd29199b22235299ca2e45", size = 2123212, upload-time = "2025-10-10T16:03:41.755Z" }, + { url = "https://files.pythonhosted.org/packages/b0/bb/43e246cfe0e81c018076a16036d9b548c4cc649de241fa27d8d9ca6f85ab/sqlalchemy-2.0.44-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2b61188657e3a2b9ac4e8f04d6cf8e51046e28175f79464c67f2fd35bceb0976", size = 3255353, upload-time = "2025-10-10T15:35:31.221Z" }, + { url = "https://files.pythonhosted.org/packages/b9/96/c6105ed9a880abe346b64d3b6ddef269ddfcab04f7f3d90a0bf3c5a88e82/sqlalchemy-2.0.44-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b87e7b91a5d5973dda5f00cd61ef72ad75a1db73a386b62877d4875a8840959c", size = 3260222, upload-time = "2025-10-10T15:43:50.124Z" }, + { url = "https://files.pythonhosted.org/packages/44/16/1857e35a47155b5ad927272fee81ae49d398959cb749edca6eaa399b582f/sqlalchemy-2.0.44-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:15f3326f7f0b2bfe406ee562e17f43f36e16167af99c4c0df61db668de20002d", size = 3189614, upload-time = "2025-10-10T15:35:32.578Z" }, + { url = "https://files.pythonhosted.org/packages/88/ee/4afb39a8ee4fc786e2d716c20ab87b5b1fb33d4ac4129a1aaa574ae8a585/sqlalchemy-2.0.44-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:1e77faf6ff919aa8cd63f1c4e561cac1d9a454a191bb864d5dd5e545935e5a40", size = 3226248, upload-time = "2025-10-10T15:43:51.862Z" }, + { url = "https://files.pythonhosted.org/packages/32/d5/0e66097fc64fa266f29a7963296b40a80d6a997b7ac13806183700676f86/sqlalchemy-2.0.44-cp313-cp313-win32.whl", hash = "sha256:ee51625c2d51f8baadf2829fae817ad0b66b140573939dd69284d2ba3553ae73", size = 2101275, upload-time = "2025-10-10T15:03:26.096Z" }, + { url = "https://files.pythonhosted.org/packages/03/51/665617fe4f8c6450f42a6d8d69243f9420f5677395572c2fe9d21b493b7b/sqlalchemy-2.0.44-cp313-cp313-win_amd64.whl", hash = "sha256:c1c80faaee1a6c3428cecf40d16a2365bcf56c424c92c2b6f0f9ad204b899e9e", size = 2127901, upload-time = "2025-10-10T15:03:27.548Z" }, + { url = "https://files.pythonhosted.org/packages/9c/5e/6a29fa884d9fb7ddadf6b69490a9d45fded3b38541713010dad16b77d015/sqlalchemy-2.0.44-py3-none-any.whl", hash = "sha256:19de7ca1246fbef9f9d1bff8f1ab25641569df226364a0e40457dc5457c54b05", size = 1928718, upload-time = "2025-10-10T15:29:45.32Z" }, ] [[package]] @@ -13616,16 +12452,17 @@ wheels = [ [[package]] name = "symfc" -version = "1.4.0" +version = "1.6.0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" } }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb')" }, + { name = "numpy", version = "2.1.3", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'linux' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb')" }, { name = "scipy" }, { name = "spglib" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/a9/87/5d585ced4c78599b1401d8acc7e2224c80b1ede999894e898cce51167921/symfc-1.4.0.tar.gz", hash = "sha256:ac5bb7401bc87f91d3b78314dfaa8a5acbddbd8745d085dc0fd8b6c65d59dde4", size = 841250, upload-time = "2025-05-31T00:38:01.707Z" } +sdist = { url = "https://files.pythonhosted.org/packages/01/8c/dd300c269c61930b258089809834c51018c6181894442964a3bbe0fb2ddc/symfc-1.6.0.tar.gz", hash = "sha256:973645d648561542ac04e65bc337466529095a6602eee088566ee4347eaccbb9", size = 846065, upload-time = "2025-11-30T07:17:53.985Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/d2/ff/37c88a73b7cb2791ee51280454cc704d3fb0121f9889c434857704e21bbf/symfc-1.4.0-py3-none-any.whl", hash = "sha256:041af15b59e45a777ec9a9bb0bb7b2ad6d8ca13ab6d75761959a27ea51506ec3", size = 86327, upload-time = "2025-05-31T00:38:00.395Z" }, + { url = "https://files.pythonhosted.org/packages/e5/88/87ef065507f7d93977eb6fb59fb5cfc235ca1d5d252fdc19c8f1e8ac8312/symfc-1.6.0-py3-none-any.whl", hash = "sha256:c16c3a32bdd9e062ab5065a8ba8cccd657753f12af100ab6b06fe1bccf49a8bc", size = 88823, upload-time = "2025-11-30T07:17:52.724Z" }, ] [[package]] @@ -13635,88 +12472,64 @@ source = { registry = "https://pypi.org/simple" } resolution-markers = [ "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", ] dependencies = [ { name = "mpmath", marker = "extra == 'extra-5-mlipx-fairchem' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, @@ -13731,462 +12544,450 @@ name = "sympy" version = "1.14.0" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", ] dependencies = [ { name = "mpmath", marker = "extra == 'extra-5-mlipx-grace' or extra == 'extra-5-mlipx-mace' or extra == 'extra-5-mlipx-matpes' or extra == 'extra-5-mlipx-mattersim' or extra != 'extra-5-mlipx-fairchem'" }, @@ -14209,22 +13010,407 @@ wheels = [ name = "tensorboard" version = "2.16.2" source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "absl-py" }, - { name = "grpcio" }, - { name = "markdown" }, - { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-5-mlipx-grace' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-5-mlipx-fairchem' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "protobuf" }, - { name = "setuptools" }, - { name = "six" }, - { name = "tensorboard-data-server" }, - { name = "werkzeug" }, +resolution-markers = [ + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", +] +dependencies = [ + { name = "absl-py", marker = "(sys_platform == 'linux' and extra == 'extra-5-mlipx-fairchem') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-grace') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "grpcio", marker = "(sys_platform == 'linux' and extra == 'extra-5-mlipx-fairchem') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-grace') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "markdown", marker = "(sys_platform == 'linux' and extra == 'extra-5-mlipx-fairchem') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-grace') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'extra-5-mlipx-grace') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "numpy", version = "2.1.3", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'extra-5-mlipx-fairchem') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "protobuf", version = "4.25.8", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'extra-5-mlipx-grace') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "protobuf", version = "5.29.5", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'extra-5-mlipx-fairchem') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "setuptools", marker = "(sys_platform == 'linux' and extra == 'extra-5-mlipx-fairchem') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-grace') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "six", marker = "(sys_platform == 'linux' and extra == 'extra-5-mlipx-fairchem') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-grace') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "tensorboard-data-server", marker = "(sys_platform == 'linux' and extra == 'extra-5-mlipx-fairchem') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-grace') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "werkzeug", marker = "(sys_platform == 'linux' and extra == 'extra-5-mlipx-fairchem') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-grace') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, ] wheels = [ { url = "https://files.pythonhosted.org/packages/3a/d0/b97889ffa769e2d1fdebb632084d5e8b53fc299d43a537acee7ec0c021a3/tensorboard-2.16.2-py3-none-any.whl", hash = "sha256:9f2b4e7dad86667615c0e5cd072f1ea8403fc032a299f0072d6f74855775cc45", size = 5490335, upload-time = "2024-02-16T19:56:55.912Z" }, ] +[[package]] +name = "tensorboard" +version = "2.19.0" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", +] +dependencies = [ + { name = "absl-py", marker = "(sys_platform != 'linux' and extra == 'extra-5-mlipx-fairchem') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-grace') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes')" }, + { name = "grpcio", marker = "(sys_platform != 'linux' and extra == 'extra-5-mlipx-fairchem') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-grace') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes')" }, + { name = "markdown", marker = "(sys_platform != 'linux' and extra == 'extra-5-mlipx-fairchem') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-grace') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes')" }, + { name = "numpy", version = "2.1.3", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'linux' and extra == 'extra-5-mlipx-fairchem') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-grace') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes')" }, + { name = "packaging", marker = "(sys_platform != 'linux' and extra == 'extra-5-mlipx-fairchem') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-grace') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes')" }, + { name = "protobuf", version = "5.29.5", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'linux' and extra == 'extra-5-mlipx-fairchem') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-grace') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes')" }, + { name = "setuptools", marker = "(sys_platform != 'linux' and extra == 'extra-5-mlipx-fairchem') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-grace') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes')" }, + { name = "six", marker = "(sys_platform != 'linux' and extra == 'extra-5-mlipx-fairchem') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-grace') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes')" }, + { name = "tensorboard-data-server", marker = "(sys_platform != 'linux' and extra == 'extra-5-mlipx-fairchem') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-grace') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes')" }, + { name = "werkzeug", marker = "(sys_platform != 'linux' and extra == 'extra-5-mlipx-fairchem') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-grace') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes')" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/5d/12/4f70e8e2ba0dbe72ea978429d8530b0333f0ed2140cc571a48802878ef99/tensorboard-2.19.0-py3-none-any.whl", hash = "sha256:5e71b98663a641a7ce8a6e70b0be8e1a4c0c45d48760b076383ac4755c35b9a0", size = 5503412, upload-time = "2025-02-12T08:17:27.21Z" }, +] + [[package]] name = "tensorboard-data-server" version = "0.7.2" @@ -14239,36 +13425,36 @@ wheels = [ name = "tensorflow" version = "2.16.2" source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "absl-py" }, - { name = "astunparse" }, - { name = "flatbuffers" }, - { name = "gast" }, - { name = "google-pasta" }, - { name = "grpcio" }, - { name = "h5py" }, - { name = "keras" }, - { name = "libclang" }, - { name = "ml-dtypes" }, - { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" } }, - { name = "opt-einsum" }, - { name = "packaging" }, - { name = "protobuf" }, - { name = "requests" }, - { name = "setuptools" }, - { name = "six" }, - { name = "tensorboard" }, - { name = "tensorflow-io-gcs-filesystem", marker = "python_full_version < '3.12' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, - { name = "termcolor" }, - { name = "typing-extensions" }, - { name = "wrapt" }, +resolution-markers = [ + "python_full_version >= '3.13' and sys_platform == 'linux'", + "python_full_version == '3.12.*' and sys_platform == 'linux'", + "python_full_version < '3.12' and sys_platform == 'linux'", +] +dependencies = [ + { name = "absl-py", marker = "sys_platform == 'linux' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "astunparse", marker = "sys_platform == 'linux' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "flatbuffers", marker = "sys_platform == 'linux' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "gast", marker = "sys_platform == 'linux' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "google-pasta", marker = "sys_platform == 'linux' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "grpcio", marker = "sys_platform == 'linux' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "h5py", marker = "sys_platform == 'linux' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "keras", marker = "sys_platform == 'linux' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "libclang", marker = "sys_platform == 'linux' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "ml-dtypes", version = "0.3.2", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "opt-einsum", marker = "sys_platform == 'linux' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "packaging", marker = "sys_platform == 'linux' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "protobuf", version = "4.25.8", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "requests", marker = "sys_platform == 'linux' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "setuptools", marker = "sys_platform == 'linux' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "six", marker = "sys_platform == 'linux' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "tensorboard", version = "2.16.2", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "tensorflow-io-gcs-filesystem", marker = "(python_full_version < '3.12' and sys_platform == 'linux') or (python_full_version >= '3.12' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (python_full_version >= '3.12' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (python_full_version >= '3.12' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (python_full_version >= '3.12' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, + { name = "termcolor", marker = "sys_platform == 'linux' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "typing-extensions", marker = "sys_platform == 'linux' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "wrapt", marker = "sys_platform == 'linux' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, ] wheels = [ - { url = "https://files.pythonhosted.org/packages/f0/da/f242771de50d12dc1816cc9a66dfa5b377e8cd6ea316a6ffc9a7d2c6dfb8/tensorflow-2.16.2-cp310-cp310-macosx_10_15_x86_64.whl", hash = "sha256:546dc68d0740fb4b75593a6bfa308da9526fe31f65c2181d48c8551c4a0ad02f", size = 259544836, upload-time = "2024-06-28T18:50:15.936Z" }, - { url = "https://files.pythonhosted.org/packages/ea/49/0ba9a26146b93666d9d0a1207b0dbdff24caf96a2102dc1124aa1bcc0c5f/tensorflow-2.16.2-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:72c84f0e0f8ad0e7cb7b4b3fe9d1c899e6cbebc51c0e64df42a2a32a904aacd7", size = 226983658, upload-time = "2024-06-28T18:50:27.278Z" }, - { url = "https://files.pythonhosted.org/packages/ac/08/8581c785a9eedb54b67a5155934291f8cbd631baa0b494b45d80b3a33401/tensorflow-2.16.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7a0aee52797cd58870e3bb9c2b4bc0fc2a57eae29a334282bcc08943ca582718", size = 218861820, upload-time = "2024-06-28T18:50:36.753Z" }, - { url = "https://files.pythonhosted.org/packages/5f/da/e687850cc8077fc8326c02ee51867baa34389ff132a3b82be6579303fafb/tensorflow-2.16.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4ed24662a3625b2eaa89a02ea177aadad840d6eb91445091fe1f7ad5fa528db3", size = 590618421, upload-time = "2024-06-28T18:50:50.528Z" }, - { url = "https://files.pythonhosted.org/packages/32/de/914fddc617b032c074099eb92135f4d16d0a427593c01e8b5f03bafa5f6d/tensorflow-2.16.2-cp310-cp310-win_amd64.whl", hash = "sha256:e340de5abf4d7dc1d8a5782559aa41757f8a84aeb2d4c490c0fa538a7521fae6", size = 2070, upload-time = "2024-06-28T18:51:04.223Z" }, { url = "https://files.pythonhosted.org/packages/6d/69/9999c2d9e8a3b08dfcfc7e9259a05fb1da5f700936091d2eb4a7985c2776/tensorflow-2.16.2-cp311-cp311-macosx_10_15_x86_64.whl", hash = "sha256:ec06570d57bfa0e2be804405e3cdc2960e94887e7619ffb6bc053e9775b695aa", size = 259588062, upload-time = "2024-06-28T18:51:09.316Z" }, { url = "https://files.pythonhosted.org/packages/9d/72/6f09443493b9df2fd8a9585c9af4d9453762906a8e5735a8a5efa6e3d1e3/tensorflow-2.16.2-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:2c8a0e79395639b762e62002db99b2f6cc608f744312c9940899c1128f325331", size = 227025342, upload-time = "2024-06-28T18:51:19.421Z" }, { url = "https://files.pythonhosted.org/packages/b5/01/c03e98c8e97d151d9ce075fae210f838832eb53d8aa55669d384cb72925b/tensorflow-2.16.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8728b12bc86941d90d0a927c40d4b21f8820964a80439a7c45f850eb37d57067", size = 218904025, upload-time = "2024-06-28T18:51:29.52Z" }, @@ -14281,15 +13467,61 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/9b/cb/d3d450d41bd66813933b85f49bb872c66409852370e55d04bf426b8980f4/tensorflow-2.16.2-cp312-cp312-win_amd64.whl", hash = "sha256:505df82fde3b9c6a2a78bf679efb4d0a2e84f4f925202130477ca519ae1514e4", size = 2070, upload-time = "2024-06-28T18:52:47.621Z" }, ] +[[package]] +name = "tensorflow" +version = "2.19.1" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version >= '3.13' and sys_platform == 'win32'", + "python_full_version == '3.12.*' and sys_platform == 'win32'", + "python_full_version < '3.12' and sys_platform == 'win32'", + "python_full_version >= '3.13' and sys_platform == 'darwin'", + "python_full_version == '3.12.*' and sys_platform == 'darwin'", + "python_full_version < '3.12' and sys_platform == 'darwin'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32'", +] +dependencies = [ + { name = "absl-py", marker = "sys_platform != 'linux' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "astunparse", marker = "sys_platform != 'linux' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "flatbuffers", marker = "sys_platform != 'linux' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "gast", marker = "sys_platform != 'linux' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "google-pasta", marker = "sys_platform != 'linux' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "grpcio", marker = "sys_platform != 'linux' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "h5py", marker = "sys_platform != 'linux' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "keras", marker = "sys_platform != 'linux' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "libclang", marker = "sys_platform != 'linux' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "ml-dtypes", version = "0.5.4", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform != 'linux' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "numpy", version = "2.1.3", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform != 'linux' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "opt-einsum", marker = "sys_platform != 'linux' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "packaging", marker = "sys_platform != 'linux' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "protobuf", version = "5.29.5", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform != 'linux' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "requests", marker = "sys_platform != 'linux' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "setuptools", marker = "sys_platform != 'linux' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "six", marker = "sys_platform != 'linux' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "tensorboard", version = "2.19.0", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform != 'linux' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "tensorflow-io-gcs-filesystem", marker = "(python_full_version < '3.12' and sys_platform != 'linux') or (python_full_version >= '3.12' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (python_full_version >= '3.12' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (python_full_version >= '3.12' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (python_full_version >= '3.12' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, + { name = "termcolor", marker = "sys_platform != 'linux' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "typing-extensions", marker = "sys_platform != 'linux' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "wrapt", marker = "sys_platform != 'linux' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/c6/91/70ff01474ff0f2266f47ab292819b97088b512d7e9093e416d16c7aac5ea/tensorflow-2.19.1-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:8a274a1336051bef0e7e042fa5818a9d342e300d9c311c5d7933eb60e2269770", size = 252591021, upload-time = "2025-08-13T16:28:08.623Z" }, + { url = "https://files.pythonhosted.org/packages/7e/c6/fc6416ac841106f3b6f2b4d16f50793a71d675c3558c482fd4b3cb44f95e/tensorflow-2.19.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:22deedc251837f2382d2b287c705705cb089bfaf79b2274b78c08740e02bf188", size = 252660426, upload-time = "2025-08-13T16:28:17.267Z" }, + { url = "https://files.pythonhosted.org/packages/f6/58/34f49a802d6d1f1eb6fe89bc9ff52e2bee19d5c3461059a55702fb7e5fb3/tensorflow-2.19.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8e5524eb492160576e5eeea9bb472ddc653123503f2290f83123d5ac9545750e", size = 644896980, upload-time = "2025-08-13T16:28:32.949Z" }, + { url = "https://files.pythonhosted.org/packages/3a/f7/b0f6e55174217a59e0b850909dc2691cb8afd8f7b38a99151d0a0d81e3ef/tensorflow-2.19.1-cp311-cp311-win_amd64.whl", hash = "sha256:1729bc2ae90a100a87d5a462b5e9b85a088261a03f0a7179eebb8735938bed57", size = 375912087, upload-time = "2025-08-13T16:28:49.636Z" }, + { url = "https://files.pythonhosted.org/packages/73/c9/7f6430b944b3683d448f2b3ddace47701021116f6891ffc4926ebb957a88/tensorflow-2.19.1-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:02c69369a82709827c6a5218c6697ee94dcd1397230319cc17c47a3342249354", size = 252656033, upload-time = "2025-08-13T16:29:05.097Z" }, + { url = "https://files.pythonhosted.org/packages/6f/3e/717bb5b6ec69de7c08917326470432156b5d0fe888e43775de95d8322b07/tensorflow-2.19.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4c0e78b6100545fd90934c557f1ce802e6a9a7fdb031025efc298efb4aa2e3bb", size = 252718124, upload-time = "2025-08-13T16:29:15.802Z" }, + { url = "https://files.pythonhosted.org/packages/50/96/b33fdf567332f65e78f02df3a69fbea911eec328e81dc4941d890f0777f5/tensorflow-2.19.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:35a6950f3fee0ad2d1668241d31684676f2e6eceb613cbeef960ea22014ef8fb", size = 645010075, upload-time = "2025-08-13T16:29:37.407Z" }, + { url = "https://files.pythonhosted.org/packages/27/be/e303c6b55d3bc1d392c555f3e00773a5b2a1c82c8f5af052148e3f0d60ee/tensorflow-2.19.1-cp312-cp312-win_amd64.whl", hash = "sha256:14ec6dee7ab3b241aae3537616e6f1ed1c7c67eff5d853e586eb66a2e9276ccc", size = 375963361, upload-time = "2025-08-13T16:29:54.216Z" }, +] + [[package]] name = "tensorflow-io-gcs-filesystem" version = "0.37.1" source = { registry = "https://pypi.org/simple" } wheels = [ - { url = "https://files.pythonhosted.org/packages/e9/a3/12d7e7326a707919b321e2d6e4c88eb61596457940fd2b8ff3e9b7fac8a7/tensorflow_io_gcs_filesystem-0.37.1-cp310-cp310-macosx_10_14_x86_64.whl", hash = "sha256:249c12b830165841411ba71e08215d0e94277a49c551e6dd5d72aab54fe5491b", size = 2470224, upload-time = "2024-07-01T23:44:15.341Z" }, - { url = "https://files.pythonhosted.org/packages/1c/55/3849a188cc15e58fefde20e9524d124a629a67a06b4dc0f6c881cb3c6e39/tensorflow_io_gcs_filesystem-0.37.1-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:257aab23470a0796978efc9c2bcf8b0bc80f22e6298612a4c0a50d3f4e88060c", size = 3479613, upload-time = "2024-07-01T23:44:17.445Z" }, - { url = "https://files.pythonhosted.org/packages/e2/19/9095c69e22c879cb3896321e676c69273a549a3148c4f62aa4bc5ebdb20f/tensorflow_io_gcs_filesystem-0.37.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8febbfcc67c61e542a5ac1a98c7c20a91a5e1afc2e14b1ef0cb7c28bc3b6aa70", size = 4842078, upload-time = "2024-07-01T23:44:18.977Z" }, - { url = "https://files.pythonhosted.org/packages/f3/48/47b7d25572961a48b1de3729b7a11e835b888e41e0203cca82df95d23b91/tensorflow_io_gcs_filesystem-0.37.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9679b36e3a80921876f31685ab6f7270f3411a4cc51bc2847e80d0e4b5291e27", size = 5085736, upload-time = "2024-07-01T23:44:21.034Z" }, { url = "https://files.pythonhosted.org/packages/40/9b/b2fb82d0da673b17a334f785fc19c23483165019ddc33b275ef25ca31173/tensorflow_io_gcs_filesystem-0.37.1-cp311-cp311-macosx_10_14_x86_64.whl", hash = "sha256:32c50ab4e29a23c1f91cd0f9ab8c381a0ab10f45ef5c5252e94965916041737c", size = 2470224, upload-time = "2024-07-01T23:44:23.039Z" }, { url = "https://files.pythonhosted.org/packages/5b/cc/16634e76f3647fbec18187258da3ba11184a6232dcf9073dc44579076d36/tensorflow_io_gcs_filesystem-0.37.1-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:b02f9c5f94fd62773954a04f69b68c4d576d076fd0db4ca25d5479f0fbfcdbad", size = 3479613, upload-time = "2024-07-01T23:44:24.399Z" }, { url = "https://files.pythonhosted.org/packages/de/bf/ba597d3884c77d05a78050f3c178933d69e3f80200a261df6eaa920656cd/tensorflow_io_gcs_filesystem-0.37.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6e1f2796b57e799a8ca1b75bf47c2aaa437c968408cc1a402a9862929e104cda", size = 4842079, upload-time = "2024-07-01T23:44:26.825Z" }, @@ -14304,44 +13536,109 @@ wheels = [ name = "tensorpotential" version = "0.5.1" source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "ase" }, - { name = "matscipy", version = "1.1.1", source = { registry = "https://pypi.org/simple" } }, - { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" } }, - { name = "pandas" }, - { name = "pyyaml" }, - { name = "scipy" }, - { name = "sympy", version = "1.14.0", source = { registry = "https://pypi.org/simple" } }, - { name = "tensorflow" }, - { name = "tf-keras" }, - { name = "tqdm" }, +resolution-markers = [ + "python_full_version >= '3.13' and sys_platform == 'linux'", + "python_full_version == '3.12.*' and sys_platform == 'linux'", + "python_full_version < '3.12' and sys_platform == 'linux'", +] +dependencies = [ + { name = "ase", marker = "sys_platform == 'linux' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "matscipy", version = "1.1.1", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "pandas", marker = "sys_platform == 'linux' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "pyyaml", marker = "sys_platform == 'linux' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "scipy", marker = "sys_platform == 'linux' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "sympy", version = "1.14.0", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "tensorflow", version = "2.16.2", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "tf-keras", version = "2.16.0", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "tqdm", marker = "sys_platform == 'linux' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/0a/de/b64671575d41df5f9f285bf2342d911aa9bd7855bf54f7cc82634c20a6da/tensorpotential-0.5.1.tar.gz", hash = "sha256:90eb49264c6bc13b55f2b3fd6857989d22411fdfb745c44a2db501374844643d", size = 186169, upload-time = "2025-03-10T13:34:55.763Z" } wheels = [ { url = "https://files.pythonhosted.org/packages/3f/e4/ff086b87feebfdeabb9a4ec150629e6d9b90a0ffc66db3a868141470ba30/tensorpotential-0.5.1-py3-none-any.whl", hash = "sha256:5fde417d88daed034cdec811d90fce9719ce60438ecd63d1de24d0ab44d965e7", size = 188964, upload-time = "2025-03-10T13:34:53.865Z" }, ] +[[package]] +name = "tensorpotential" +version = "0.5.5" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version >= '3.13' and sys_platform == 'win32'", + "python_full_version == '3.12.*' and sys_platform == 'win32'", + "python_full_version < '3.12' and sys_platform == 'win32'", + "python_full_version >= '3.13' and sys_platform == 'darwin'", + "python_full_version == '3.12.*' and sys_platform == 'darwin'", + "python_full_version < '3.12' and sys_platform == 'darwin'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32'", +] +dependencies = [ + { name = "ase", marker = "sys_platform != 'linux' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "matscipy", version = "1.2.0", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform != 'linux' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "numpy", version = "2.1.3", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform != 'linux' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "pandas", marker = "sys_platform != 'linux' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "pyyaml", marker = "sys_platform != 'linux' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "scipy", marker = "sys_platform != 'linux' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "sympy", version = "1.14.0", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform != 'linux' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "tensorflow", version = "2.19.1", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'darwin' or sys_platform == 'win32' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "tf-keras", version = "2.19.0", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform != 'linux' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "tqdm", marker = "sys_platform != 'linux' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/13/c6/5b2ba28ca8d78e6c68255cbf84cc7334e6bea56cec8b34b685f34184f74f/tensorpotential-0.5.5.tar.gz", hash = "sha256:b97be8f43d502f9655c226a750dc65188ac8817dfd3908e49e0e12b6df244dc3", size = 209168, upload-time = "2025-11-20T15:16:28.373Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/25/98/2cfca403cbf6aadf5c803df16dbcad34d2109af986b0853271ab5af68e68/tensorpotential-0.5.5-py3-none-any.whl", hash = "sha256:4225066e06e75ed1bc866828d609d4a5c7261b782b573f513df79655a86a1771", size = 207229, upload-time = "2025-11-20T15:16:27.079Z" }, +] + [[package]] name = "termcolor" -version = "3.1.0" +version = "3.2.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/ca/6c/3d75c196ac07ac8749600b60b03f4f6094d54e132c4d94ebac6ee0e0add0/termcolor-3.1.0.tar.gz", hash = "sha256:6a6dd7fbee581909eeec6a756cff1d7f7c376063b14e4a298dc4980309e55970", size = 14324, upload-time = "2025-04-30T11:37:53.791Z" } +sdist = { url = "https://files.pythonhosted.org/packages/87/56/ab275c2b56a5e2342568838f0d5e3e66a32354adcc159b495e374cda43f5/termcolor-3.2.0.tar.gz", hash = "sha256:610e6456feec42c4bcd28934a8c87a06c3fa28b01561d46aa09a9881b8622c58", size = 14423, upload-time = "2025-10-25T19:11:42.586Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/4f/bd/de8d508070629b6d84a30d01d57e4a65c69aa7f5abe7560b8fad3b50ea59/termcolor-3.1.0-py3-none-any.whl", hash = "sha256:591dd26b5c2ce03b9e43f391264626557873ce1d379019786f99b0c2bee140aa", size = 7684, upload-time = "2025-04-30T11:37:52.382Z" }, + { url = "https://files.pythonhosted.org/packages/f9/d5/141f53d7c1eb2a80e6d3e9a390228c3222c27705cbe7f048d3623053f3ca/termcolor-3.2.0-py3-none-any.whl", hash = "sha256:a10343879eba4da819353c55cb8049b0933890c2ebf9ad5d3ecd2bb32ea96ea6", size = 7698, upload-time = "2025-10-25T19:11:41.536Z" }, ] [[package]] name = "tf-keras" version = "2.16.0" source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version >= '3.13' and sys_platform == 'linux'", + "python_full_version == '3.12.*' and sys_platform == 'linux'", + "python_full_version < '3.12' and sys_platform == 'linux'", +] dependencies = [ - { name = "tensorflow" }, + { name = "tensorflow", version = "2.16.2", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/7c/63/59a4aee62ea8999850e4b3b5d94b60fe280ca93de60d0e2958066e24d6a7/tf_keras-2.16.0.tar.gz", hash = "sha256:db53891f1ac98197c2acced98cdca8c06ba8255655a6cb7eb95ed49676118280", size = 1259784, upload-time = "2024-03-09T02:28:18.742Z" } wheels = [ { url = "https://files.pythonhosted.org/packages/75/aa/cf09f8956d4f276f655b13674e15d8d6015fd832f9689aa9ff2a515781ab/tf_keras-2.16.0-py3-none-any.whl", hash = "sha256:b2ad0541fa7d9e92c4b7a1b96593377afb58aaff374299a6ca6be1a42f51d899", size = 1724695, upload-time = "2024-03-09T02:28:15.99Z" }, ] +[[package]] +name = "tf-keras" +version = "2.19.0" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version >= '3.13' and sys_platform == 'win32'", + "python_full_version == '3.12.*' and sys_platform == 'win32'", + "python_full_version < '3.12' and sys_platform == 'win32'", + "python_full_version >= '3.13' and sys_platform == 'darwin'", + "python_full_version == '3.12.*' and sys_platform == 'darwin'", + "python_full_version < '3.12' and sys_platform == 'darwin'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32'", +] +dependencies = [ + { name = "tensorflow", version = "2.19.1", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform != 'linux' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/a9/71/a6e82b8e8ce04a8ab1ff0560791698b70d1b2dda1a0270f1d69a834e8880/tf_keras-2.19.0.tar.gz", hash = "sha256:b09a407d87a4571ce1e8ca985cfc68483e3d63b2518a5d79a97ad92cb64dbe9c", size = 1261172, upload-time = "2025-03-03T21:24:13.582Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/45/6b/d245122d108a94df5969ee7408ad343af1627730e91478e01ef098976bfa/tf_keras-2.19.0-py3-none-any.whl", hash = "sha256:4f339e800987b39d1548a8c76a7b33b6801a97ec7fcd89c299ec29741f7890bd", size = 1726787, upload-time = "2025-03-03T21:24:11.826Z" }, +] + [[package]] name = "threadpoolctl" version = "3.6.0" @@ -14365,41 +13662,51 @@ wheels = [ [[package]] name = "tomli" -version = "2.2.1" +version = "2.3.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/18/87/302344fed471e44a87289cf4967697d07e532f2421fdaf868a303cbae4ff/tomli-2.2.1.tar.gz", hash = "sha256:cd45e1dc79c835ce60f7404ec8119f2eb06d38b1deba146f07ced3bbc44505ff", size = 17175, upload-time = "2024-11-27T22:38:36.873Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/43/ca/75707e6efa2b37c77dadb324ae7d9571cb424e61ea73fad7c56c2d14527f/tomli-2.2.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:678e4fa69e4575eb77d103de3df8a895e1591b48e740211bd1067378c69e8249", size = 131077, upload-time = "2024-11-27T22:37:54.956Z" }, - { url = "https://files.pythonhosted.org/packages/c7/16/51ae563a8615d472fdbffc43a3f3d46588c264ac4f024f63f01283becfbb/tomli-2.2.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:023aa114dd824ade0100497eb2318602af309e5a55595f76b626d6d9f3b7b0a6", size = 123429, upload-time = "2024-11-27T22:37:56.698Z" }, - { url = "https://files.pythonhosted.org/packages/f1/dd/4f6cd1e7b160041db83c694abc78e100473c15d54620083dbd5aae7b990e/tomli-2.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ece47d672db52ac607a3d9599a9d48dcb2f2f735c6c2d1f34130085bb12b112a", size = 226067, upload-time = "2024-11-27T22:37:57.63Z" }, - { url = "https://files.pythonhosted.org/packages/a9/6b/c54ede5dc70d648cc6361eaf429304b02f2871a345bbdd51e993d6cdf550/tomli-2.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6972ca9c9cc9f0acaa56a8ca1ff51e7af152a9f87fb64623e31d5c83700080ee", size = 236030, upload-time = "2024-11-27T22:37:59.344Z" }, - { url = "https://files.pythonhosted.org/packages/1f/47/999514fa49cfaf7a92c805a86c3c43f4215621855d151b61c602abb38091/tomli-2.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c954d2250168d28797dd4e3ac5cf812a406cd5a92674ee4c8f123c889786aa8e", size = 240898, upload-time = "2024-11-27T22:38:00.429Z" }, - { url = "https://files.pythonhosted.org/packages/73/41/0a01279a7ae09ee1573b423318e7934674ce06eb33f50936655071d81a24/tomli-2.2.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8dd28b3e155b80f4d54beb40a441d366adcfe740969820caf156c019fb5c7ec4", size = 229894, upload-time = "2024-11-27T22:38:02.094Z" }, - { url = "https://files.pythonhosted.org/packages/55/18/5d8bc5b0a0362311ce4d18830a5d28943667599a60d20118074ea1b01bb7/tomli-2.2.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:e59e304978767a54663af13c07b3d1af22ddee3bb2fb0618ca1593e4f593a106", size = 245319, upload-time = "2024-11-27T22:38:03.206Z" }, - { url = "https://files.pythonhosted.org/packages/92/a3/7ade0576d17f3cdf5ff44d61390d4b3febb8a9fc2b480c75c47ea048c646/tomli-2.2.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:33580bccab0338d00994d7f16f4c4ec25b776af3ffaac1ed74e0b3fc95e885a8", size = 238273, upload-time = "2024-11-27T22:38:04.217Z" }, - { url = "https://files.pythonhosted.org/packages/72/6f/fa64ef058ac1446a1e51110c375339b3ec6be245af9d14c87c4a6412dd32/tomli-2.2.1-cp311-cp311-win32.whl", hash = "sha256:465af0e0875402f1d226519c9904f37254b3045fc5084697cefb9bdde1ff99ff", size = 98310, upload-time = "2024-11-27T22:38:05.908Z" }, - { url = "https://files.pythonhosted.org/packages/6a/1c/4a2dcde4a51b81be3530565e92eda625d94dafb46dbeb15069df4caffc34/tomli-2.2.1-cp311-cp311-win_amd64.whl", hash = "sha256:2d0f2fdd22b02c6d81637a3c95f8cd77f995846af7414c5c4b8d0545afa1bc4b", size = 108309, upload-time = "2024-11-27T22:38:06.812Z" }, - { url = "https://files.pythonhosted.org/packages/52/e1/f8af4c2fcde17500422858155aeb0d7e93477a0d59a98e56cbfe75070fd0/tomli-2.2.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:4a8f6e44de52d5e6c657c9fe83b562f5f4256d8ebbfe4ff922c495620a7f6cea", size = 132762, upload-time = "2024-11-27T22:38:07.731Z" }, - { url = "https://files.pythonhosted.org/packages/03/b8/152c68bb84fc00396b83e7bbddd5ec0bd3dd409db4195e2a9b3e398ad2e3/tomli-2.2.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:8d57ca8095a641b8237d5b079147646153d22552f1c637fd3ba7f4b0b29167a8", size = 123453, upload-time = "2024-11-27T22:38:09.384Z" }, - { url = "https://files.pythonhosted.org/packages/c8/d6/fc9267af9166f79ac528ff7e8c55c8181ded34eb4b0e93daa767b8841573/tomli-2.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4e340144ad7ae1533cb897d406382b4b6fede8890a03738ff1683af800d54192", size = 233486, upload-time = "2024-11-27T22:38:10.329Z" }, - { url = "https://files.pythonhosted.org/packages/5c/51/51c3f2884d7bab89af25f678447ea7d297b53b5a3b5730a7cb2ef6069f07/tomli-2.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:db2b95f9de79181805df90bedc5a5ab4c165e6ec3fe99f970d0e302f384ad222", size = 242349, upload-time = "2024-11-27T22:38:11.443Z" }, - { url = "https://files.pythonhosted.org/packages/ab/df/bfa89627d13a5cc22402e441e8a931ef2108403db390ff3345c05253935e/tomli-2.2.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:40741994320b232529c802f8bc86da4e1aa9f413db394617b9a256ae0f9a7f77", size = 252159, upload-time = "2024-11-27T22:38:13.099Z" }, - { url = "https://files.pythonhosted.org/packages/9e/6e/fa2b916dced65763a5168c6ccb91066f7639bdc88b48adda990db10c8c0b/tomli-2.2.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:400e720fe168c0f8521520190686ef8ef033fb19fc493da09779e592861b78c6", size = 237243, upload-time = "2024-11-27T22:38:14.766Z" }, - { url = "https://files.pythonhosted.org/packages/b4/04/885d3b1f650e1153cbb93a6a9782c58a972b94ea4483ae4ac5cedd5e4a09/tomli-2.2.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:02abe224de6ae62c19f090f68da4e27b10af2b93213d36cf44e6e1c5abd19fdd", size = 259645, upload-time = "2024-11-27T22:38:15.843Z" }, - { url = "https://files.pythonhosted.org/packages/9c/de/6b432d66e986e501586da298e28ebeefd3edc2c780f3ad73d22566034239/tomli-2.2.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:b82ebccc8c8a36f2094e969560a1b836758481f3dc360ce9a3277c65f374285e", size = 244584, upload-time = "2024-11-27T22:38:17.645Z" }, - { url = "https://files.pythonhosted.org/packages/1c/9a/47c0449b98e6e7d1be6cbac02f93dd79003234ddc4aaab6ba07a9a7482e2/tomli-2.2.1-cp312-cp312-win32.whl", hash = "sha256:889f80ef92701b9dbb224e49ec87c645ce5df3fa2cc548664eb8a25e03127a98", size = 98875, upload-time = "2024-11-27T22:38:19.159Z" }, - { url = "https://files.pythonhosted.org/packages/ef/60/9b9638f081c6f1261e2688bd487625cd1e660d0a85bd469e91d8db969734/tomli-2.2.1-cp312-cp312-win_amd64.whl", hash = "sha256:7fc04e92e1d624a4a63c76474610238576942d6b8950a2d7f908a340494e67e4", size = 109418, upload-time = "2024-11-27T22:38:20.064Z" }, - { url = "https://files.pythonhosted.org/packages/04/90/2ee5f2e0362cb8a0b6499dc44f4d7d48f8fff06d28ba46e6f1eaa61a1388/tomli-2.2.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:f4039b9cbc3048b2416cc57ab3bda989a6fcf9b36cf8937f01a6e731b64f80d7", size = 132708, upload-time = "2024-11-27T22:38:21.659Z" }, - { url = "https://files.pythonhosted.org/packages/c0/ec/46b4108816de6b385141f082ba99e315501ccd0a2ea23db4a100dd3990ea/tomli-2.2.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:286f0ca2ffeeb5b9bd4fcc8d6c330534323ec51b2f52da063b11c502da16f30c", size = 123582, upload-time = "2024-11-27T22:38:22.693Z" }, - { url = "https://files.pythonhosted.org/packages/a0/bd/b470466d0137b37b68d24556c38a0cc819e8febe392d5b199dcd7f578365/tomli-2.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a92ef1a44547e894e2a17d24e7557a5e85a9e1d0048b0b5e7541f76c5032cb13", size = 232543, upload-time = "2024-11-27T22:38:24.367Z" }, - { url = "https://files.pythonhosted.org/packages/d9/e5/82e80ff3b751373f7cead2815bcbe2d51c895b3c990686741a8e56ec42ab/tomli-2.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9316dc65bed1684c9a98ee68759ceaed29d229e985297003e494aa825ebb0281", size = 241691, upload-time = "2024-11-27T22:38:26.081Z" }, - { url = "https://files.pythonhosted.org/packages/05/7e/2a110bc2713557d6a1bfb06af23dd01e7dde52b6ee7dadc589868f9abfac/tomli-2.2.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e85e99945e688e32d5a35c1ff38ed0b3f41f43fad8df0bdf79f72b2ba7bc5272", size = 251170, upload-time = "2024-11-27T22:38:27.921Z" }, - { url = "https://files.pythonhosted.org/packages/64/7b/22d713946efe00e0adbcdfd6d1aa119ae03fd0b60ebed51ebb3fa9f5a2e5/tomli-2.2.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:ac065718db92ca818f8d6141b5f66369833d4a80a9d74435a268c52bdfa73140", size = 236530, upload-time = "2024-11-27T22:38:29.591Z" }, - { url = "https://files.pythonhosted.org/packages/38/31/3a76f67da4b0cf37b742ca76beaf819dca0ebef26d78fc794a576e08accf/tomli-2.2.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:d920f33822747519673ee656a4b6ac33e382eca9d331c87770faa3eef562aeb2", size = 258666, upload-time = "2024-11-27T22:38:30.639Z" }, - { url = "https://files.pythonhosted.org/packages/07/10/5af1293da642aded87e8a988753945d0cf7e00a9452d3911dd3bb354c9e2/tomli-2.2.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:a198f10c4d1b1375d7687bc25294306e551bf1abfa4eace6650070a5c1ae2744", size = 243954, upload-time = "2024-11-27T22:38:31.702Z" }, - { url = "https://files.pythonhosted.org/packages/5b/b9/1ed31d167be802da0fc95020d04cd27b7d7065cc6fbefdd2f9186f60d7bd/tomli-2.2.1-cp313-cp313-win32.whl", hash = "sha256:d3f5614314d758649ab2ab3a62d4f2004c825922f9e370b29416484086b264ec", size = 98724, upload-time = "2024-11-27T22:38:32.837Z" }, - { url = "https://files.pythonhosted.org/packages/c7/32/b0963458706accd9afcfeb867c0f9175a741bf7b19cd424230714d722198/tomli-2.2.1-cp313-cp313-win_amd64.whl", hash = "sha256:a38aa0308e754b0e3c67e344754dff64999ff9b513e691d0e786265c93583c69", size = 109383, upload-time = "2024-11-27T22:38:34.455Z" }, - { url = "https://files.pythonhosted.org/packages/6e/c2/61d3e0f47e2b74ef40a68b9e6ad5984f6241a942f7cd3bbfbdbd03861ea9/tomli-2.2.1-py3-none-any.whl", hash = "sha256:cb55c73c5f4408779d0cf3eef9f762b9c9f147a77de7b258bef0a5628adc85cc", size = 14257, upload-time = "2024-11-27T22:38:35.385Z" }, +sdist = { url = "https://files.pythonhosted.org/packages/52/ed/3f73f72945444548f33eba9a87fc7a6e969915e7b1acc8260b30e1f76a2f/tomli-2.3.0.tar.gz", hash = "sha256:64be704a875d2a59753d80ee8a533c3fe183e3f06807ff7dc2232938ccb01549", size = 17392, upload-time = "2025-10-08T22:01:47.119Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b3/2e/299f62b401438d5fe1624119c723f5d877acc86a4c2492da405626665f12/tomli-2.3.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:88bd15eb972f3664f5ed4b57c1634a97153b4bac4479dcb6a495f41921eb7f45", size = 153236, upload-time = "2025-10-08T22:01:00.137Z" }, + { url = "https://files.pythonhosted.org/packages/86/7f/d8fffe6a7aefdb61bced88fcb5e280cfd71e08939da5894161bd71bea022/tomli-2.3.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:883b1c0d6398a6a9d29b508c331fa56adbcdff647f6ace4dfca0f50e90dfd0ba", size = 148084, upload-time = "2025-10-08T22:01:01.63Z" }, + { url = "https://files.pythonhosted.org/packages/47/5c/24935fb6a2ee63e86d80e4d3b58b222dafaf438c416752c8b58537c8b89a/tomli-2.3.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d1381caf13ab9f300e30dd8feadb3de072aeb86f1d34a8569453ff32a7dea4bf", size = 234832, upload-time = "2025-10-08T22:01:02.543Z" }, + { url = "https://files.pythonhosted.org/packages/89/da/75dfd804fc11e6612846758a23f13271b76d577e299592b4371a4ca4cd09/tomli-2.3.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a0e285d2649b78c0d9027570d4da3425bdb49830a6156121360b3f8511ea3441", size = 242052, upload-time = "2025-10-08T22:01:03.836Z" }, + { url = "https://files.pythonhosted.org/packages/70/8c/f48ac899f7b3ca7eb13af73bacbc93aec37f9c954df3c08ad96991c8c373/tomli-2.3.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:0a154a9ae14bfcf5d8917a59b51ffd5a3ac1fd149b71b47a3a104ca4edcfa845", size = 239555, upload-time = "2025-10-08T22:01:04.834Z" }, + { url = "https://files.pythonhosted.org/packages/ba/28/72f8afd73f1d0e7829bfc093f4cb98ce0a40ffc0cc997009ee1ed94ba705/tomli-2.3.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:74bf8464ff93e413514fefd2be591c3b0b23231a77f901db1eb30d6f712fc42c", size = 245128, upload-time = "2025-10-08T22:01:05.84Z" }, + { url = "https://files.pythonhosted.org/packages/b6/eb/a7679c8ac85208706d27436e8d421dfa39d4c914dcf5fa8083a9305f58d9/tomli-2.3.0-cp311-cp311-win32.whl", hash = "sha256:00b5f5d95bbfc7d12f91ad8c593a1659b6387b43f054104cda404be6bda62456", size = 96445, upload-time = "2025-10-08T22:01:06.896Z" }, + { url = "https://files.pythonhosted.org/packages/0a/fe/3d3420c4cb1ad9cb462fb52967080575f15898da97e21cb6f1361d505383/tomli-2.3.0-cp311-cp311-win_amd64.whl", hash = "sha256:4dc4ce8483a5d429ab602f111a93a6ab1ed425eae3122032db7e9acf449451be", size = 107165, upload-time = "2025-10-08T22:01:08.107Z" }, + { url = "https://files.pythonhosted.org/packages/ff/b7/40f36368fcabc518bb11c8f06379a0fd631985046c038aca08c6d6a43c6e/tomli-2.3.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:d7d86942e56ded512a594786a5ba0a5e521d02529b3826e7761a05138341a2ac", size = 154891, upload-time = "2025-10-08T22:01:09.082Z" }, + { url = "https://files.pythonhosted.org/packages/f9/3f/d9dd692199e3b3aab2e4e4dd948abd0f790d9ded8cd10cbaae276a898434/tomli-2.3.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:73ee0b47d4dad1c5e996e3cd33b8a76a50167ae5f96a2607cbe8cc773506ab22", size = 148796, upload-time = "2025-10-08T22:01:10.266Z" }, + { url = "https://files.pythonhosted.org/packages/60/83/59bff4996c2cf9f9387a0f5a3394629c7efa5ef16142076a23a90f1955fa/tomli-2.3.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:792262b94d5d0a466afb5bc63c7daa9d75520110971ee269152083270998316f", size = 242121, upload-time = "2025-10-08T22:01:11.332Z" }, + { url = "https://files.pythonhosted.org/packages/45/e5/7c5119ff39de8693d6baab6c0b6dcb556d192c165596e9fc231ea1052041/tomli-2.3.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:4f195fe57ecceac95a66a75ac24d9d5fbc98ef0962e09b2eddec5d39375aae52", size = 250070, upload-time = "2025-10-08T22:01:12.498Z" }, + { url = "https://files.pythonhosted.org/packages/45/12/ad5126d3a278f27e6701abde51d342aa78d06e27ce2bb596a01f7709a5a2/tomli-2.3.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:e31d432427dcbf4d86958c184b9bfd1e96b5b71f8eb17e6d02531f434fd335b8", size = 245859, upload-time = "2025-10-08T22:01:13.551Z" }, + { url = "https://files.pythonhosted.org/packages/fb/a1/4d6865da6a71c603cfe6ad0e6556c73c76548557a8d658f9e3b142df245f/tomli-2.3.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:7b0882799624980785240ab732537fcfc372601015c00f7fc367c55308c186f6", size = 250296, upload-time = "2025-10-08T22:01:14.614Z" }, + { url = "https://files.pythonhosted.org/packages/a0/b7/a7a7042715d55c9ba6e8b196d65d2cb662578b4d8cd17d882d45322b0d78/tomli-2.3.0-cp312-cp312-win32.whl", hash = "sha256:ff72b71b5d10d22ecb084d345fc26f42b5143c5533db5e2eaba7d2d335358876", size = 97124, upload-time = "2025-10-08T22:01:15.629Z" }, + { url = "https://files.pythonhosted.org/packages/06/1e/f22f100db15a68b520664eb3328fb0ae4e90530887928558112c8d1f4515/tomli-2.3.0-cp312-cp312-win_amd64.whl", hash = "sha256:1cb4ed918939151a03f33d4242ccd0aa5f11b3547d0cf30f7c74a408a5b99878", size = 107698, upload-time = "2025-10-08T22:01:16.51Z" }, + { url = "https://files.pythonhosted.org/packages/89/48/06ee6eabe4fdd9ecd48bf488f4ac783844fd777f547b8d1b61c11939974e/tomli-2.3.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:5192f562738228945d7b13d4930baffda67b69425a7f0da96d360b0a3888136b", size = 154819, upload-time = "2025-10-08T22:01:17.964Z" }, + { url = "https://files.pythonhosted.org/packages/f1/01/88793757d54d8937015c75dcdfb673c65471945f6be98e6a0410fba167ed/tomli-2.3.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:be71c93a63d738597996be9528f4abe628d1adf5e6eb11607bc8fe1a510b5dae", size = 148766, upload-time = "2025-10-08T22:01:18.959Z" }, + { url = "https://files.pythonhosted.org/packages/42/17/5e2c956f0144b812e7e107f94f1cc54af734eb17b5191c0bbfb72de5e93e/tomli-2.3.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c4665508bcbac83a31ff8ab08f424b665200c0e1e645d2bd9ab3d3e557b6185b", size = 240771, upload-time = "2025-10-08T22:01:20.106Z" }, + { url = "https://files.pythonhosted.org/packages/d5/f4/0fbd014909748706c01d16824eadb0307115f9562a15cbb012cd9b3512c5/tomli-2.3.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:4021923f97266babc6ccab9f5068642a0095faa0a51a246a6a02fccbb3514eaf", size = 248586, upload-time = "2025-10-08T22:01:21.164Z" }, + { url = "https://files.pythonhosted.org/packages/30/77/fed85e114bde5e81ecf9bc5da0cc69f2914b38f4708c80ae67d0c10180c5/tomli-2.3.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:a4ea38c40145a357d513bffad0ed869f13c1773716cf71ccaa83b0fa0cc4e42f", size = 244792, upload-time = "2025-10-08T22:01:22.417Z" }, + { url = "https://files.pythonhosted.org/packages/55/92/afed3d497f7c186dc71e6ee6d4fcb0acfa5f7d0a1a2878f8beae379ae0cc/tomli-2.3.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:ad805ea85eda330dbad64c7ea7a4556259665bdf9d2672f5dccc740eb9d3ca05", size = 248909, upload-time = "2025-10-08T22:01:23.859Z" }, + { url = "https://files.pythonhosted.org/packages/f8/84/ef50c51b5a9472e7265ce1ffc7f24cd4023d289e109f669bdb1553f6a7c2/tomli-2.3.0-cp313-cp313-win32.whl", hash = "sha256:97d5eec30149fd3294270e889b4234023f2c69747e555a27bd708828353ab606", size = 96946, upload-time = "2025-10-08T22:01:24.893Z" }, + { url = "https://files.pythonhosted.org/packages/b2/b7/718cd1da0884f281f95ccfa3a6cc572d30053cba64603f79d431d3c9b61b/tomli-2.3.0-cp313-cp313-win_amd64.whl", hash = "sha256:0c95ca56fbe89e065c6ead5b593ee64b84a26fca063b5d71a1122bf26e533999", size = 107705, upload-time = "2025-10-08T22:01:26.153Z" }, + { url = "https://files.pythonhosted.org/packages/19/94/aeafa14a52e16163008060506fcb6aa1949d13548d13752171a755c65611/tomli-2.3.0-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:cebc6fe843e0733ee827a282aca4999b596241195f43b4cc371d64fc6639da9e", size = 154244, upload-time = "2025-10-08T22:01:27.06Z" }, + { url = "https://files.pythonhosted.org/packages/db/e4/1e58409aa78eefa47ccd19779fc6f36787edbe7d4cd330eeeedb33a4515b/tomli-2.3.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:4c2ef0244c75aba9355561272009d934953817c49f47d768070c3c94355c2aa3", size = 148637, upload-time = "2025-10-08T22:01:28.059Z" }, + { url = "https://files.pythonhosted.org/packages/26/b6/d1eccb62f665e44359226811064596dd6a366ea1f985839c566cd61525ae/tomli-2.3.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c22a8bf253bacc0cf11f35ad9808b6cb75ada2631c2d97c971122583b129afbc", size = 241925, upload-time = "2025-10-08T22:01:29.066Z" }, + { url = "https://files.pythonhosted.org/packages/70/91/7cdab9a03e6d3d2bb11beae108da5bdc1c34bdeb06e21163482544ddcc90/tomli-2.3.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:0eea8cc5c5e9f89c9b90c4896a8deefc74f518db5927d0e0e8d4a80953d774d0", size = 249045, upload-time = "2025-10-08T22:01:31.98Z" }, + { url = "https://files.pythonhosted.org/packages/15/1b/8c26874ed1f6e4f1fcfeb868db8a794cbe9f227299402db58cfcc858766c/tomli-2.3.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:b74a0e59ec5d15127acdabd75ea17726ac4c5178ae51b85bfe39c4f8a278e879", size = 245835, upload-time = "2025-10-08T22:01:32.989Z" }, + { url = "https://files.pythonhosted.org/packages/fd/42/8e3c6a9a4b1a1360c1a2a39f0b972cef2cc9ebd56025168c4137192a9321/tomli-2.3.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:b5870b50c9db823c595983571d1296a6ff3e1b88f734a4c8f6fc6188397de005", size = 253109, upload-time = "2025-10-08T22:01:34.052Z" }, + { url = "https://files.pythonhosted.org/packages/22/0c/b4da635000a71b5f80130937eeac12e686eefb376b8dee113b4a582bba42/tomli-2.3.0-cp314-cp314-win32.whl", hash = "sha256:feb0dacc61170ed7ab602d3d972a58f14ee3ee60494292d384649a3dc38ef463", size = 97930, upload-time = "2025-10-08T22:01:35.082Z" }, + { url = "https://files.pythonhosted.org/packages/b9/74/cb1abc870a418ae99cd5c9547d6bce30701a954e0e721821df483ef7223c/tomli-2.3.0-cp314-cp314-win_amd64.whl", hash = "sha256:b273fcbd7fc64dc3600c098e39136522650c49bca95df2d11cf3b626422392c8", size = 107964, upload-time = "2025-10-08T22:01:36.057Z" }, + { url = "https://files.pythonhosted.org/packages/54/78/5c46fff6432a712af9f792944f4fcd7067d8823157949f4e40c56b8b3c83/tomli-2.3.0-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:940d56ee0410fa17ee1f12b817b37a4d4e4dc4d27340863cc67236c74f582e77", size = 163065, upload-time = "2025-10-08T22:01:37.27Z" }, + { url = "https://files.pythonhosted.org/packages/39/67/f85d9bd23182f45eca8939cd2bc7050e1f90c41f4a2ecbbd5963a1d1c486/tomli-2.3.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:f85209946d1fe94416debbb88d00eb92ce9cd5266775424ff81bc959e001acaf", size = 159088, upload-time = "2025-10-08T22:01:38.235Z" }, + { url = "https://files.pythonhosted.org/packages/26/5a/4b546a0405b9cc0659b399f12b6adb750757baf04250b148d3c5059fc4eb/tomli-2.3.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:a56212bdcce682e56b0aaf79e869ba5d15a6163f88d5451cbde388d48b13f530", size = 268193, upload-time = "2025-10-08T22:01:39.712Z" }, + { url = "https://files.pythonhosted.org/packages/42/4f/2c12a72ae22cf7b59a7fe75b3465b7aba40ea9145d026ba41cb382075b0e/tomli-2.3.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:c5f3ffd1e098dfc032d4d3af5c0ac64f6d286d98bc148698356847b80fa4de1b", size = 275488, upload-time = "2025-10-08T22:01:40.773Z" }, + { url = "https://files.pythonhosted.org/packages/92/04/a038d65dbe160c3aa5a624e93ad98111090f6804027d474ba9c37c8ae186/tomli-2.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:5e01decd096b1530d97d5d85cb4dff4af2d8347bd35686654a004f8dea20fc67", size = 272669, upload-time = "2025-10-08T22:01:41.824Z" }, + { url = "https://files.pythonhosted.org/packages/be/2f/8b7c60a9d1612a7cbc39ffcca4f21a73bf368a80fc25bccf8253e2563267/tomli-2.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:8a35dd0e643bb2610f156cca8db95d213a90015c11fee76c946aa62b7ae7e02f", size = 279709, upload-time = "2025-10-08T22:01:43.177Z" }, + { url = "https://files.pythonhosted.org/packages/7e/46/cc36c679f09f27ded940281c38607716c86cf8ba4a518d524e349c8b4874/tomli-2.3.0-cp314-cp314t-win32.whl", hash = "sha256:a1f7f282fe248311650081faafa5f4732bdbfef5d45fe3f2e702fbc6f2d496e0", size = 107563, upload-time = "2025-10-08T22:01:44.233Z" }, + { url = "https://files.pythonhosted.org/packages/84/ff/426ca8683cf7b753614480484f6437f568fd2fda2edbdf57a2d3d8b27a0b/tomli-2.3.0-cp314-cp314t-win_amd64.whl", hash = "sha256:70a251f8d4ba2d9ac2542eecf008b3c8a9fc5c3f9f02c56a9d7952612be2fdba", size = 119756, upload-time = "2025-10-08T22:01:45.234Z" }, + { url = "https://files.pythonhosted.org/packages/77/b8/0135fadc89e73be292b473cb820b4f5a08197779206b33191e801feeae40/tomli-2.3.0-py3-none-any.whl", hash = "sha256:e95b1af3c5b07d9e643909b5abbec77cd9f1217e6d0bca72b0234736b9fb1f1b", size = 14408, upload-time = "2025-10-08T22:01:46.04Z" }, ] [[package]] @@ -14411,63 +13718,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/bd/75/8539d011f6be8e29f339c42e633aae3cb73bffa95dd0f9adec09b9c58e85/tomlkit-0.13.3-py3-none-any.whl", hash = "sha256:c89c649d79ee40629a9fda55f8ace8c6a1b42deb912b2a8fd8d942ddadb606b0", size = 38901, upload-time = "2025-06-05T07:13:43.546Z" }, ] -[[package]] -name = "torch" -version = "2.2.0" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.12' and sys_platform == 'win32'", - "python_full_version == '3.11.*' and sys_platform == 'win32'", - "python_full_version < '3.11' and sys_platform == 'win32'", - "python_full_version >= '3.12' and sys_platform == 'darwin'", - "python_full_version == '3.11.*' and sys_platform == 'darwin'", - "python_full_version < '3.11' and sys_platform == 'darwin'", - "python_full_version >= '3.12' and sys_platform == 'linux'", - "python_full_version == '3.11.*' and sys_platform == 'linux'", - "python_full_version < '3.11' and sys_platform == 'linux'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32'", -] -dependencies = [ - { name = "filelock", marker = "(extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim')" }, - { name = "fsspec", marker = "(extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim')" }, - { name = "jinja2", marker = "(extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim')" }, - { name = "networkx", version = "3.4.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.11' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (python_full_version < '3.11' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (python_full_version < '3.11' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, - { name = "networkx", version = "3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "nvidia-cublas-cu12", version = "12.1.3.1", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-5-mlipx-matpes') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "nvidia-cuda-cupti-cu12", version = "12.1.105", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-5-mlipx-matpes') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "nvidia-cuda-nvrtc-cu12", version = "12.1.105", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-5-mlipx-matpes') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "nvidia-cuda-runtime-cu12", version = "12.1.105", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-5-mlipx-matpes') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "nvidia-cudnn-cu12", version = "8.9.2.26", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-5-mlipx-matpes') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "nvidia-cufft-cu12", version = "11.0.2.54", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-5-mlipx-matpes') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "nvidia-curand-cu12", version = "10.3.2.106", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-5-mlipx-matpes') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "nvidia-cusolver-cu12", version = "11.4.5.107", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-5-mlipx-matpes') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "nvidia-cusparse-cu12", version = "12.1.0.106", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-5-mlipx-matpes') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "nvidia-nccl-cu12", version = "2.19.3", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-5-mlipx-matpes') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "nvidia-nvtx-cu12", version = "12.1.105", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-5-mlipx-matpes') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "sympy", version = "1.14.0", source = { registry = "https://pypi.org/simple" }, marker = "(extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim')" }, - { name = "triton", version = "2.2.0", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-5-mlipx-matpes') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "typing-extensions", marker = "(extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim')" }, -] -wheels = [ - { url = "https://files.pythonhosted.org/packages/8c/67/fcc9b9e2369a9bae4da492aedc0c2dfa95d563ef0eaa9228b70c98395ec2/torch-2.2.0-cp310-cp310-manylinux1_x86_64.whl", hash = "sha256:d366158d6503a3447e67f8c0ad1328d54e6c181d88572d688a625fac61b13a97", size = 755505538, upload-time = "2024-01-30T17:30:06.596Z" }, - { url = "https://files.pythonhosted.org/packages/2a/2a/b6064e03a71d2dc4936975c667703f333ce663977ce489b50090daee332f/torch-2.2.0-cp310-cp310-manylinux2014_aarch64.whl", hash = "sha256:707f2f80402981e9f90d0038d7d481678586251e6642a7a6ef67fc93511cb446", size = 86592741, upload-time = "2024-01-30T17:32:48.847Z" }, - { url = "https://files.pythonhosted.org/packages/c8/ed/f11e9eb1e21d7ea8fc82a9fd373f9ff2023a7ee9e47d07c9bc9efce46eca/torch-2.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:15c8f0a105c66b28496092fca1520346082e734095f8eaf47b5786bac24b8a31", size = 198565666, upload-time = "2024-01-30T17:32:56.079Z" }, - { url = "https://files.pythonhosted.org/packages/e7/0a/e42e6012b710e49bc56b4e6ce501fa39baa46fd978de014244aae108e6e1/torch-2.2.0-cp310-none-macosx_10_9_x86_64.whl", hash = "sha256:0ca4df4b728515ad009b79f5107b00bcb2c63dc202d991412b9eb3b6a4f24349", size = 150796203, upload-time = "2024-01-30T17:32:42.109Z" }, - { url = "https://files.pythonhosted.org/packages/6c/b6/18f8b358cab98a048b07cc049e1692231656fe2572443f2b4f56e75a8151/torch-2.2.0-cp310-none-macosx_11_0_arm64.whl", hash = "sha256:3d3eea2d5969b9a1c9401429ca79efc668120314d443d3463edc3289d7f003c7", size = 59699382, upload-time = "2024-01-30T17:32:26.767Z" }, - { url = "https://files.pythonhosted.org/packages/c8/02/d3adf4b4851d99a31c5a9cf7b668f171e84334945d05fb7b51c42bf41abf/torch-2.2.0-cp311-cp311-manylinux1_x86_64.whl", hash = "sha256:0d1c580e379c0d48f0f0a08ea28d8e373295aa254de4f9ad0631f9ed8bc04c24", size = 755522292, upload-time = "2024-01-30T17:31:31.325Z" }, - { url = "https://files.pythonhosted.org/packages/4f/a7/098bdc65e141b29f571989c4561cbc7fe7c78c9a12dbe61cba540ca1d5ef/torch-2.2.0-cp311-cp311-manylinux2014_aarch64.whl", hash = "sha256:9328e3c1ce628a281d2707526b4d1080eae7c4afab4f81cea75bde1f9441dc78", size = 86610755, upload-time = "2024-01-30T17:32:08.654Z" }, - { url = "https://files.pythonhosted.org/packages/58/b8/51b956c2da9729390a3080397cd2f31171394543af7746681466e372f69a/torch-2.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:03c8e660907ac1b8ee07f6d929c4e15cd95be2fb764368799cca02c725a212b8", size = 198571687, upload-time = "2024-01-30T17:32:34.233Z" }, - { url = "https://files.pythonhosted.org/packages/c7/4e/578c4e3c7ac486cddcce3e85e4704a474854835baea4eba8bc707d4a0823/torch-2.2.0-cp311-none-macosx_10_9_x86_64.whl", hash = "sha256:da0cefe7f84ece3e3b56c11c773b59d1cb2c0fd83ddf6b5f7f1fd1a987b15c3e", size = 150571355, upload-time = "2024-01-30T17:32:15.11Z" }, - { url = "https://files.pythonhosted.org/packages/96/4e/970cd3e13ad95aed81102272f0678d8cc48101880b8be5bae8aad22e7f3b/torch-2.2.0-cp311-none-macosx_11_0_arm64.whl", hash = "sha256:f81d23227034221a4a4ff8ef24cc6cec7901edd98d9e64e32822778ff01be85e", size = 59360869, upload-time = "2024-01-30T17:32:20.984Z" }, - { url = "https://files.pythonhosted.org/packages/d5/2f/f7a1701f1bc6c48401bcdd16208da2b9c8a3c1227e171782a06e5c3a64ba/torch-2.2.0-cp312-cp312-manylinux1_x86_64.whl", hash = "sha256:dcbfb2192ac41ca93c756ebe9e2af29df0a4c14ee0e7a0dd78f82c67a63d91d4", size = 755447496, upload-time = "2024-01-30T17:29:36.287Z" }, - { url = "https://files.pythonhosted.org/packages/49/0c/46ffc4377156b1126c1bec9e177e16bb0410b592c5391e690486b21e4f62/torch-2.2.0-cp312-cp312-manylinux2014_aarch64.whl", hash = "sha256:9eeb42971619e24392c9088b5b6d387d896e267889d41d267b1fec334f5227c5", size = 86509406, upload-time = "2024-01-30T17:31:54.836Z" }, - { url = "https://files.pythonhosted.org/packages/60/6a/5374d5be17d951714b5a8f7956a70aebf52c5e98f579dfad880bed98c787/torch-2.2.0-cp312-cp312-win_amd64.whl", hash = "sha256:c718b2ca69a6cac28baa36d86d8c0ec708b102cebd1ceb1b6488e404cd9be1d1", size = 198514435, upload-time = "2024-01-30T17:32:01.74Z" }, - { url = "https://files.pythonhosted.org/packages/a0/ef/c09d5e8739f99ed99c821a468830b06ac0af0d21e443afda8d2459fdc50a/torch-2.2.0-cp312-none-macosx_10_9_x86_64.whl", hash = "sha256:f11d18fceb4f9ecb1ac680dde7c463c120ed29056225d75469c19637e9f98d12", size = 150803751, upload-time = "2024-01-30T17:31:17.199Z" }, - { url = "https://files.pythonhosted.org/packages/99/4d/1ac78e96fca1cc2846a42d5e11a08851ae577ef9f02d117f83f5ccbabaea/torch-2.2.0-cp312-none-macosx_11_0_arm64.whl", hash = "sha256:ee1da852bfd4a7e674135a446d6074c2da7194c1b08549e31eae0b3138c6b4d2", size = 59672586, upload-time = "2024-01-30T17:31:48.274Z" }, -] - [[package]] name = "torch" version = "2.6.0" @@ -14475,95 +13725,70 @@ source = { registry = "https://pypi.org/simple" } resolution-markers = [ "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", ] dependencies = [ { name = "filelock", marker = "extra == 'extra-5-mlipx-fairchem' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, { name = "fsspec", marker = "extra == 'extra-5-mlipx-fairchem' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, { name = "jinja2", marker = "extra == 'extra-5-mlipx-fairchem' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "networkx", version = "3.4.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.11' and extra == 'extra-5-mlipx-fairchem') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes')" }, - { name = "networkx", version = "3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and extra == 'extra-5-mlipx-fairchem') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "networkx", marker = "extra == 'extra-5-mlipx-fairchem' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, { name = "nvidia-cublas-cu12", version = "12.4.5.8", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-5-mlipx-fairchem') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, { name = "nvidia-cuda-cupti-cu12", version = "12.4.127", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-5-mlipx-fairchem') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, { name = "nvidia-cuda-nvrtc-cu12", version = "12.4.127", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-5-mlipx-fairchem') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, @@ -14583,10 +13808,6 @@ dependencies = [ { name = "typing-extensions", marker = "extra == 'extra-5-mlipx-fairchem' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, ] wheels = [ - { url = "https://files.pythonhosted.org/packages/37/81/aa9ab58ec10264c1abe62c8b73f5086c3c558885d6beecebf699f0dbeaeb/torch-2.6.0-cp310-cp310-manylinux1_x86_64.whl", hash = "sha256:6860df13d9911ac158f4c44031609700e1eba07916fff62e21e6ffa0a9e01961", size = 766685561, upload-time = "2025-01-29T16:19:12.12Z" }, - { url = "https://files.pythonhosted.org/packages/86/86/e661e229df2f5bfc6eab4c97deb1286d598bbeff31ab0cdb99b3c0d53c6f/torch-2.6.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:c4f103a49830ce4c7561ef4434cc7926e5a5fe4e5eb100c19ab36ea1e2b634ab", size = 95751887, upload-time = "2025-01-29T16:27:50.77Z" }, - { url = "https://files.pythonhosted.org/packages/20/e0/5cb2f8493571f0a5a7273cd7078f191ac252a402b5fb9cb6091f14879109/torch-2.6.0-cp310-cp310-win_amd64.whl", hash = "sha256:56eeaf2ecac90da5d9e35f7f35eb286da82673ec3c582e310a8d1631a1c02341", size = 204165139, upload-time = "2025-01-29T16:27:11.63Z" }, - { url = "https://files.pythonhosted.org/packages/e5/16/ea1b7842413a7b8a5aaa5e99e8eaf3da3183cc3ab345ad025a07ff636301/torch-2.6.0-cp310-none-macosx_11_0_arm64.whl", hash = "sha256:09e06f9949e1a0518c5b09fe95295bc9661f219d9ecb6f9893e5123e10696628", size = 66520221, upload-time = "2025-01-29T16:22:18.862Z" }, { url = "https://files.pythonhosted.org/packages/78/a9/97cbbc97002fff0de394a2da2cdfa859481fdca36996d7bd845d50aa9d8d/torch-2.6.0-cp311-cp311-manylinux1_x86_64.whl", hash = "sha256:7979834102cd5b7a43cc64e87f2f3b14bd0e1458f06e9f88ffa386d07c7446e1", size = 766715424, upload-time = "2025-01-29T16:25:15.874Z" }, { url = "https://files.pythonhosted.org/packages/6d/fa/134ce8f8a7ea07f09588c9cc2cea0d69249efab977707cf67669431dcf5c/torch-2.6.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:ccbd0320411fe1a3b3fec7b4d3185aa7d0c52adac94480ab024b5c8f74a0bf1d", size = 95759416, upload-time = "2025-01-29T16:27:38.429Z" }, { url = "https://files.pythonhosted.org/packages/11/c5/2370d96b31eb1841c3a0883a492c15278a6718ccad61bb6a649c80d1d9eb/torch-2.6.0-cp311-cp311-win_amd64.whl", hash = "sha256:46763dcb051180ce1ed23d1891d9b1598e07d051ce4c9d14307029809c4d64f7", size = 204164970, upload-time = "2025-01-29T16:26:16.182Z" }, @@ -14603,392 +13824,495 @@ wheels = [ [[package]] name = "torch" -version = "2.7.1" +version = "2.7.0" source = { registry = "https://pypi.org/simple" } resolution-markers = [ + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", +] +dependencies = [ + { name = "filelock", marker = "extra == 'extra-5-mlipx-grace' or extra == 'extra-5-mlipx-mace' or extra == 'extra-5-mlipx-matpes' or extra == 'extra-5-mlipx-mattersim' or extra != 'extra-5-mlipx-fairchem'" }, + { name = "fsspec", marker = "extra == 'extra-5-mlipx-grace' or extra == 'extra-5-mlipx-mace' or extra == 'extra-5-mlipx-matpes' or extra == 'extra-5-mlipx-mattersim' or extra != 'extra-5-mlipx-fairchem'" }, + { name = "jinja2", marker = "extra == 'extra-5-mlipx-grace' or extra == 'extra-5-mlipx-mace' or extra == 'extra-5-mlipx-matpes' or extra == 'extra-5-mlipx-mattersim' or extra != 'extra-5-mlipx-fairchem'" }, + { name = "networkx", marker = "extra == 'extra-5-mlipx-grace' or extra == 'extra-5-mlipx-mace' or extra == 'extra-5-mlipx-matpes' or extra == 'extra-5-mlipx-mattersim' or extra != 'extra-5-mlipx-fairchem'" }, + { name = "nvidia-cublas-cu12", version = "12.6.4.1", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-5-mlipx-fairchem') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim')" }, + { name = "nvidia-cuda-cupti-cu12", version = "12.6.80", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-5-mlipx-fairchem') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim')" }, + { name = "nvidia-cuda-nvrtc-cu12", version = "12.6.77", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-5-mlipx-fairchem') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim')" }, + { name = "nvidia-cuda-runtime-cu12", version = "12.6.77", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-5-mlipx-fairchem') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim')" }, + { name = "nvidia-cudnn-cu12", version = "9.5.1.17", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-5-mlipx-fairchem') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim')" }, + { name = "nvidia-cufft-cu12", version = "11.3.0.4", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-5-mlipx-fairchem') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim')" }, + { name = "nvidia-cufile-cu12", marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-5-mlipx-fairchem') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim')" }, + { name = "nvidia-curand-cu12", version = "10.3.7.77", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-5-mlipx-fairchem') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim')" }, + { name = "nvidia-cusolver-cu12", version = "11.7.1.2", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-5-mlipx-fairchem') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim')" }, + { name = "nvidia-cusparse-cu12", version = "12.5.4.2", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-5-mlipx-fairchem') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim')" }, + { name = "nvidia-cusparselt-cu12", version = "0.6.3", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-5-mlipx-fairchem') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim')" }, + { name = "nvidia-nccl-cu12", version = "2.26.2", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-5-mlipx-fairchem') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim')" }, + { name = "nvidia-nvjitlink-cu12", version = "12.6.85", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-5-mlipx-fairchem') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim')" }, + { name = "nvidia-nvtx-cu12", version = "12.6.77", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-5-mlipx-fairchem') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim')" }, + { name = "setuptools", marker = "(python_full_version >= '3.12' and extra != 'extra-5-mlipx-fairchem') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim')" }, + { name = "sympy", version = "1.14.0", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-5-mlipx-grace' or extra == 'extra-5-mlipx-mace' or extra == 'extra-5-mlipx-matpes' or extra == 'extra-5-mlipx-mattersim' or extra != 'extra-5-mlipx-fairchem'" }, + { name = "triton", version = "3.3.0", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-5-mlipx-fairchem') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim')" }, + { name = "typing-extensions", marker = "extra == 'extra-5-mlipx-grace' or extra == 'extra-5-mlipx-mace' or extra == 'extra-5-mlipx-matpes' or extra == 'extra-5-mlipx-mattersim' or extra != 'extra-5-mlipx-fairchem'" }, ] -dependencies = [ - { name = "filelock", marker = "(extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "fsspec", marker = "(extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "jinja2", marker = "(extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "networkx", version = "3.4.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.11' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem') or (python_full_version < '3.11' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes') or (python_full_version < '3.11' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, - { name = "networkx", version = "3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem') or (python_full_version >= '3.11' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes') or (python_full_version >= '3.11' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, - { name = "nvidia-cublas-cu12", version = "12.6.4.1", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-matpes') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "nvidia-cuda-cupti-cu12", version = "12.6.80", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-matpes') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "nvidia-cuda-nvrtc-cu12", version = "12.6.77", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-matpes') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "nvidia-cuda-runtime-cu12", version = "12.6.77", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-matpes') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "nvidia-cudnn-cu12", version = "9.5.1.17", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-matpes') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "nvidia-cufft-cu12", version = "11.3.0.4", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-matpes') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "nvidia-cufile-cu12", marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-matpes') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "nvidia-curand-cu12", version = "10.3.7.77", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-matpes') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "nvidia-cusolver-cu12", version = "11.7.1.2", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-matpes') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "nvidia-cusparse-cu12", version = "12.5.4.2", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-matpes') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "nvidia-cusparselt-cu12", version = "0.6.3", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-matpes') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "nvidia-nccl-cu12", version = "2.26.2", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-matpes') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "nvidia-nvjitlink-cu12", version = "12.6.85", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-matpes') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "nvidia-nvtx-cu12", version = "12.6.77", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-matpes') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "setuptools", marker = "(python_full_version >= '3.12' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem') or (python_full_version >= '3.12' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes') or (python_full_version >= '3.12' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, - { name = "sympy", version = "1.14.0", source = { registry = "https://pypi.org/simple" }, marker = "(extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "triton", version = "3.3.1", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-matpes') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (platform_machine != 'x86_64' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "typing-extensions", marker = "(extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, -] -wheels = [ - { url = "https://files.pythonhosted.org/packages/6a/27/2e06cb52adf89fe6e020963529d17ed51532fc73c1e6d1b18420ef03338c/torch-2.7.1-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:a103b5d782af5bd119b81dbcc7ffc6fa09904c423ff8db397a1e6ea8fd71508f", size = 99089441, upload-time = "2025-06-04T17:38:48.268Z" }, - { url = "https://files.pythonhosted.org/packages/0a/7c/0a5b3aee977596459ec45be2220370fde8e017f651fecc40522fd478cb1e/torch-2.7.1-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:fe955951bdf32d182ee8ead6c3186ad54781492bf03d547d31771a01b3d6fb7d", size = 821154516, upload-time = "2025-06-04T17:36:28.556Z" }, - { url = "https://files.pythonhosted.org/packages/f9/91/3d709cfc5e15995fb3fe7a6b564ce42280d3a55676dad672205e94f34ac9/torch-2.7.1-cp310-cp310-win_amd64.whl", hash = "sha256:885453d6fba67d9991132143bf7fa06b79b24352f4506fd4d10b309f53454162", size = 216093147, upload-time = "2025-06-04T17:39:38.132Z" }, - { url = "https://files.pythonhosted.org/packages/92/f6/5da3918414e07da9866ecb9330fe6ffdebe15cb9a4c5ada7d4b6e0a6654d/torch-2.7.1-cp310-none-macosx_11_0_arm64.whl", hash = "sha256:d72acfdb86cee2a32c0ce0101606f3758f0d8bb5f8f31e7920dc2809e963aa7c", size = 68630914, upload-time = "2025-06-04T17:39:31.162Z" }, - { url = "https://files.pythonhosted.org/packages/11/56/2eae3494e3d375533034a8e8cf0ba163363e996d85f0629441fa9d9843fe/torch-2.7.1-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:236f501f2e383f1cb861337bdf057712182f910f10aeaf509065d54d339e49b2", size = 99093039, upload-time = "2025-06-04T17:39:06.963Z" }, - { url = "https://files.pythonhosted.org/packages/e5/94/34b80bd172d0072c9979708ccd279c2da2f55c3ef318eceec276ab9544a4/torch-2.7.1-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:06eea61f859436622e78dd0cdd51dbc8f8c6d76917a9cf0555a333f9eac31ec1", size = 821174704, upload-time = "2025-06-04T17:37:03.799Z" }, - { url = "https://files.pythonhosted.org/packages/50/9e/acf04ff375b0b49a45511c55d188bcea5c942da2aaf293096676110086d1/torch-2.7.1-cp311-cp311-win_amd64.whl", hash = "sha256:8273145a2e0a3c6f9fd2ac36762d6ee89c26d430e612b95a99885df083b04e52", size = 216095937, upload-time = "2025-06-04T17:39:24.83Z" }, - { url = "https://files.pythonhosted.org/packages/5b/2b/d36d57c66ff031f93b4fa432e86802f84991477e522adcdffd314454326b/torch-2.7.1-cp311-none-macosx_11_0_arm64.whl", hash = "sha256:aea4fc1bf433d12843eb2c6b2204861f43d8364597697074c8d38ae2507f8730", size = 68640034, upload-time = "2025-06-04T17:39:17.989Z" }, - { url = "https://files.pythonhosted.org/packages/87/93/fb505a5022a2e908d81fe9a5e0aa84c86c0d5f408173be71c6018836f34e/torch-2.7.1-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:27ea1e518df4c9de73af7e8a720770f3628e7f667280bce2be7a16292697e3fa", size = 98948276, upload-time = "2025-06-04T17:39:12.852Z" }, - { url = "https://files.pythonhosted.org/packages/56/7e/67c3fe2b8c33f40af06326a3d6ae7776b3e3a01daa8f71d125d78594d874/torch-2.7.1-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:c33360cfc2edd976c2633b3b66c769bdcbbf0e0b6550606d188431c81e7dd1fc", size = 821025792, upload-time = "2025-06-04T17:34:58.747Z" }, - { url = "https://files.pythonhosted.org/packages/a1/37/a37495502bc7a23bf34f89584fa5a78e25bae7b8da513bc1b8f97afb7009/torch-2.7.1-cp312-cp312-win_amd64.whl", hash = "sha256:d8bf6e1856ddd1807e79dc57e54d3335f2b62e6f316ed13ed3ecfe1fc1df3d8b", size = 216050349, upload-time = "2025-06-04T17:38:59.709Z" }, - { url = "https://files.pythonhosted.org/packages/3a/60/04b77281c730bb13460628e518c52721257814ac6c298acd25757f6a175c/torch-2.7.1-cp312-none-macosx_11_0_arm64.whl", hash = "sha256:787687087412c4bd68d315e39bc1223f08aae1d16a9e9771d95eabbb04ae98fb", size = 68645146, upload-time = "2025-06-04T17:38:52.97Z" }, - { url = "https://files.pythonhosted.org/packages/66/81/e48c9edb655ee8eb8c2a6026abdb6f8d2146abd1f150979ede807bb75dcb/torch-2.7.1-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:03563603d931e70722dce0e11999d53aa80a375a3d78e6b39b9f6805ea0a8d28", size = 98946649, upload-time = "2025-06-04T17:38:43.031Z" }, - { url = "https://files.pythonhosted.org/packages/3a/24/efe2f520d75274fc06b695c616415a1e8a1021d87a13c68ff9dce733d088/torch-2.7.1-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:d632f5417b6980f61404a125b999ca6ebd0b8b4bbdbb5fbbba44374ab619a412", size = 821033192, upload-time = "2025-06-04T17:38:09.146Z" }, - { url = "https://files.pythonhosted.org/packages/dd/d9/9c24d230333ff4e9b6807274f6f8d52a864210b52ec794c5def7925f4495/torch-2.7.1-cp313-cp313-win_amd64.whl", hash = "sha256:23660443e13995ee93e3d844786701ea4ca69f337027b05182f5ba053ce43b38", size = 216055668, upload-time = "2025-06-04T17:38:36.253Z" }, - { url = "https://files.pythonhosted.org/packages/95/bf/e086ee36ddcef9299f6e708d3b6c8487c1651787bb9ee2939eb2a7f74911/torch-2.7.1-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:0da4f4dba9f65d0d203794e619fe7ca3247a55ffdcbd17ae8fb83c8b2dc9b585", size = 68925988, upload-time = "2025-06-04T17:38:29.273Z" }, - { url = "https://files.pythonhosted.org/packages/69/6a/67090dcfe1cf9048448b31555af6efb149f7afa0a310a366adbdada32105/torch-2.7.1-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:e08d7e6f21a617fe38eeb46dd2213ded43f27c072e9165dc27300c9ef9570934", size = 99028857, upload-time = "2025-06-04T17:37:50.956Z" }, - { url = "https://files.pythonhosted.org/packages/90/1c/48b988870823d1cc381f15ec4e70ed3d65e043f43f919329b0045ae83529/torch-2.7.1-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:30207f672328a42df4f2174b8f426f354b2baa0b7cca3a0adb3d6ab5daf00dc8", size = 821098066, upload-time = "2025-06-04T17:37:33.939Z" }, - { url = "https://files.pythonhosted.org/packages/7b/eb/10050d61c9d5140c5dc04a89ed3257ef1a6b93e49dd91b95363d757071e0/torch-2.7.1-cp313-cp313t-win_amd64.whl", hash = "sha256:79042feca1c634aaf6603fe6feea8c6b30dfa140a6bbc0b973e2260c7e79a22e", size = 216336310, upload-time = "2025-06-04T17:36:09.862Z" }, - { url = "https://files.pythonhosted.org/packages/b1/29/beb45cdf5c4fc3ebe282bf5eafc8dfd925ead7299b3c97491900fe5ed844/torch-2.7.1-cp313-none-macosx_11_0_arm64.whl", hash = "sha256:988b0cbc4333618a1056d2ebad9eb10089637b659eb645434d0809d8d937b946", size = 68645708, upload-time = "2025-06-04T17:34:39.852Z" }, +wheels = [ + { url = "https://files.pythonhosted.org/packages/40/da/7378d16cc636697f2a94f791cb496939b60fb8580ddbbef22367db2c2274/torch-2.7.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:2b7813e904757b125faf1a9a3154e1d50381d539ced34da1992f52440567c156", size = 99159397, upload-time = "2025-04-23T14:35:35.304Z" }, + { url = "https://files.pythonhosted.org/packages/0e/6b/87fcddd34df9f53880fa1f0c23af7b6b96c935856473faf3914323588c40/torch-2.7.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:fd5cfbb4c3bbadd57ad1b27d56a28008f8d8753733411a140fcfb84d7f933a25", size = 865183681, upload-time = "2025-04-23T14:34:21.802Z" }, + { url = "https://files.pythonhosted.org/packages/13/85/6c1092d4b06c3db1ed23d4106488750917156af0b24ab0a2d9951830b0e9/torch-2.7.0-cp311-cp311-win_amd64.whl", hash = "sha256:58df8d5c2eeb81305760282b5069ea4442791a6bbf0c74d9069b7b3304ff8a37", size = 212520100, upload-time = "2025-04-23T14:35:27.473Z" }, + { url = "https://files.pythonhosted.org/packages/aa/3f/85b56f7e2abcfa558c5fbf7b11eb02d78a4a63e6aeee2bbae3bb552abea5/torch-2.7.0-cp311-none-macosx_11_0_arm64.whl", hash = "sha256:0a8d43caa342b9986101ec5feb5bbf1d86570b5caa01e9cb426378311258fdde", size = 68569377, upload-time = "2025-04-23T14:35:20.361Z" }, + { url = "https://files.pythonhosted.org/packages/aa/5e/ac759f4c0ab7c01feffa777bd68b43d2ac61560a9770eeac074b450f81d4/torch-2.7.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:36a6368c7ace41ad1c0f69f18056020b6a5ca47bedaca9a2f3b578f5a104c26c", size = 99013250, upload-time = "2025-04-23T14:35:15.589Z" }, + { url = "https://files.pythonhosted.org/packages/9c/58/2d245b6f1ef61cf11dfc4aceeaacbb40fea706ccebac3f863890c720ab73/torch-2.7.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:15aab3e31c16feb12ae0a88dba3434a458874636f360c567caa6a91f6bfba481", size = 865042157, upload-time = "2025-04-23T14:32:56.011Z" }, + { url = "https://files.pythonhosted.org/packages/44/80/b353c024e6b624cd9ce1d66dcb9d24e0294680f95b369f19280e241a0159/torch-2.7.0-cp312-cp312-win_amd64.whl", hash = "sha256:f56d4b2510934e072bab3ab8987e00e60e1262fb238176168f5e0c43a1320c6d", size = 212482262, upload-time = "2025-04-23T14:35:03.527Z" }, + { url = "https://files.pythonhosted.org/packages/ee/8d/b2939e5254be932db1a34b2bd099070c509e8887e0c5a90c498a917e4032/torch-2.7.0-cp312-none-macosx_11_0_arm64.whl", hash = "sha256:30b7688a87239a7de83f269333651d8e582afffce6f591fff08c046f7787296e", size = 68574294, upload-time = "2025-04-23T14:34:47.098Z" }, + { url = "https://files.pythonhosted.org/packages/14/24/720ea9a66c29151b315ea6ba6f404650834af57a26b2a04af23ec246b2d5/torch-2.7.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:868ccdc11798535b5727509480cd1d86d74220cfdc42842c4617338c1109a205", size = 99015553, upload-time = "2025-04-23T14:34:41.075Z" }, + { url = "https://files.pythonhosted.org/packages/4b/27/285a8cf12bd7cd71f9f211a968516b07dcffed3ef0be585c6e823675ab91/torch-2.7.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:9b52347118116cf3dff2ab5a3c3dd97c719eb924ac658ca2a7335652076df708", size = 865046389, upload-time = "2025-04-23T14:32:01.16Z" }, + { url = "https://files.pythonhosted.org/packages/74/c8/2ab2b6eadc45554af8768ae99668c5a8a8552e2012c7238ded7e9e4395e1/torch-2.7.0-cp313-cp313-win_amd64.whl", hash = "sha256:434cf3b378340efc87c758f250e884f34460624c0523fe5c9b518d205c91dd1b", size = 212490304, upload-time = "2025-04-23T14:33:57.108Z" }, + { url = "https://files.pythonhosted.org/packages/28/fd/74ba6fde80e2b9eef4237fe668ffae302c76f0e4221759949a632ca13afa/torch-2.7.0-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:edad98dddd82220465b106506bb91ee5ce32bd075cddbcf2b443dfaa2cbd83bf", size = 68856166, upload-time = "2025-04-23T14:34:04.012Z" }, + { url = "https://files.pythonhosted.org/packages/cb/b4/8df3f9fe6bdf59e56a0e538592c308d18638eb5f5dc4b08d02abb173c9f0/torch-2.7.0-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:2a885fc25afefb6e6eb18a7d1e8bfa01cc153e92271d980a49243b250d5ab6d9", size = 99091348, upload-time = "2025-04-23T14:33:48.975Z" }, + { url = "https://files.pythonhosted.org/packages/9d/f5/0bd30e9da04c3036614aa1b935a9f7e505a9e4f1f731b15e165faf8a4c74/torch-2.7.0-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:176300ff5bc11a5f5b0784e40bde9e10a35c4ae9609beed96b4aeb46a27f5fae", size = 865104023, upload-time = "2025-04-23T14:30:40.537Z" }, + { url = "https://files.pythonhosted.org/packages/d1/b7/2235d0c3012c596df1c8d39a3f4afc1ee1b6e318d469eda4c8bb68566448/torch-2.7.0-cp313-cp313t-win_amd64.whl", hash = "sha256:d0ca446a93f474985d81dc866fcc8dccefb9460a29a456f79d99c29a78a66993", size = 212750916, upload-time = "2025-04-23T14:32:22.91Z" }, + { url = "https://files.pythonhosted.org/packages/90/48/7e6477cf40d48cc0a61fa0d41ee9582b9a316b12772fcac17bc1a40178e7/torch-2.7.0-cp313-none-macosx_11_0_arm64.whl", hash = "sha256:27f5007bdf45f7bb7af7f11d1828d5c2487e030690afb3d89a651fd7036a390e", size = 68575074, upload-time = "2025-04-23T14:32:38.136Z" }, ] [[package]] @@ -14996,8 +14320,7 @@ name = "torch-ema" version = "0.3" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "torch", version = "2.2.0", source = { registry = "https://pypi.org/simple" }, marker = "(extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, - { name = "torch", version = "2.7.1", source = { registry = "https://pypi.org/simple" }, marker = "(extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, + { name = "torch", version = "2.7.0", source = { registry = "https://pypi.org/simple" } }, ] sdist = { url = "https://files.pythonhosted.org/packages/45/af/db7d0c8b26a13062d9b85bdcf8d977acd8a51057fb6edca9eb30613ef5ef/torch_ema-0.3.tar.gz", hash = "sha256:5a3595405fa311995f01291a1d4a9242d6be08a0fc9db29152ec6cfd586ea414", size = 5486, upload-time = "2021-11-17T20:59:16.265Z" } wheels = [ @@ -15006,22 +14329,23 @@ wheels = [ [[package]] name = "torch-geometric" -version = "2.6.1" +version = "2.7.0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "aiohttp" }, - { name = "fsspec" }, - { name = "jinja2" }, - { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-5-mlipx-mattersim' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "psutil" }, - { name = "pyparsing" }, - { name = "requests" }, - { name = "tqdm" }, + { name = "aiohttp", marker = "(extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn')" }, + { name = "fsspec", marker = "(extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn')" }, + { name = "jinja2", marker = "(extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn')" }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "numpy", version = "2.1.3", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'linux' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "psutil", marker = "(extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn')" }, + { name = "pyparsing", marker = "(extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn')" }, + { name = "requests", marker = "(extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn')" }, + { name = "tqdm", marker = "(extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn')" }, + { name = "xxhash", marker = "(extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn')" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/e8/81/e1b015494cb9e0bf4c47cc8426e49736120248733be0e22072a5628ae9ed/torch_geometric-2.6.1.tar.gz", hash = "sha256:1f18f9d0fc4d2239d526221e4f22606a4a3895b5d965a9856d27610a3df662c6", size = 771490, upload-time = "2024-09-26T08:11:30.25Z" } +sdist = { url = "https://files.pythonhosted.org/packages/75/63/b210152635902da7fe79fcdd16517fae108f457a0ed22c737e702a9afbae/torch_geometric-2.7.0.tar.gz", hash = "sha256:f9099e4aece1a9f618c84dbaac33a77f43139736698c7e8bddf3301ef1f2e8d4", size = 876725, upload-time = "2025-10-15T20:48:03.443Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/03/9f/157e913626c1acfb3b19ce000b1a6e4e4fb177c0bc0ea0c67ca5bd714b5a/torch_geometric-2.6.1-py3-none-any.whl", hash = "sha256:8faeb353f9655f7dbec44c5e0b44c721773bdfb279994da96b9b8b12fd30f427", size = 1135632, upload-time = "2024-09-26T08:11:27.194Z" }, + { url = "https://files.pythonhosted.org/packages/1e/d3/4dffd7300500465e0b4a2ae917dcb2ce771de0b9a772670365799a27c024/torch_geometric-2.7.0-py3-none-any.whl", hash = "sha256:6e0cd3ad824d484651ef5d308fc66c687bfcf5ba040d56d1e0fe0f81f365e292", size = 1275346, upload-time = "2025-10-15T20:48:01.949Z" }, ] [[package]] @@ -15035,279 +14359,57 @@ wheels = [ [[package]] name = "torchaudio" -version = "2.2.0" +version = "2.7.0" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.12' and sys_platform == 'win32'", - "python_full_version == '3.11.*' and sys_platform == 'win32'", - "python_full_version < '3.11' and sys_platform == 'win32'", - "python_full_version >= '3.12' and sys_platform == 'darwin'", - "python_full_version == '3.11.*' and sys_platform == 'darwin'", - "python_full_version < '3.11' and sys_platform == 'darwin'", - "python_full_version >= '3.12' and sys_platform == 'linux'", - "python_full_version == '3.11.*' and sys_platform == 'linux'", - "python_full_version < '3.11' and sys_platform == 'linux'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32'", -] dependencies = [ - { name = "torch", version = "2.2.0", source = { registry = "https://pypi.org/simple" }, marker = "(extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, + { name = "torch", version = "2.7.0", source = { registry = "https://pypi.org/simple" } }, ] wheels = [ - { url = "https://files.pythonhosted.org/packages/13/8f/e026d46178b918b888660dbbdbbe6d406c63a8e61be799ab2f39226fe717/torchaudio-2.2.0-cp310-cp310-macosx_10_13_x86_64.whl", hash = "sha256:59e56836cd2be81940cebacd3f4ee3779c4b78378a3e61945446da77c16384b4", size = 3398628, upload-time = "2024-01-30T17:35:00.017Z" }, - { url = "https://files.pythonhosted.org/packages/df/97/a76b5818c7fcc1e8ee2858db96ce5908798159354d57b9b38287d1c2bcdb/torchaudio-2.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:dc48f966cc1973a8d58a9686335e517ac00ddae9cd7b592916a04b77499ef2bb", size = 1806587, upload-time = "2024-01-30T17:35:05.537Z" }, - { url = "https://files.pythonhosted.org/packages/30/fc/cdcf7c2071539ea147ddb6de2b538d9c1599665b621f2e6cf0b3ef51d20d/torchaudio-2.2.0-cp310-cp310-manylinux1_x86_64.whl", hash = "sha256:e2dc32b76eab278707cef43dbbadaad324a98b0f77f088cc4bbe5c2b08a56af1", size = 3345657, upload-time = "2024-01-30T17:34:49.259Z" }, - { url = "https://files.pythonhosted.org/packages/45/a5/74d8a03fdf47cf89e9a2f6c58a65ffe4b392e8cfa503f148baec43377f24/torchaudio-2.2.0-cp310-cp310-manylinux2014_aarch64.whl", hash = "sha256:d4ea094b8721a361982db062ee993f2a6f71dfe16f62a84f8900b2364f33a2e4", size = 1646336, upload-time = "2024-01-30T17:35:17.447Z" }, - { url = "https://files.pythonhosted.org/packages/c4/ae/26a0efbdda4a240237f75bbaee5056aa66097ae3d56bc158c92ebbd8af63/torchaudio-2.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:3636fb7d8a7a964b5b49cc9372d231bbdcf985b65a5f8780f68979c75e2dcca1", size = 2363940, upload-time = "2024-01-30T17:34:45.773Z" }, - { url = "https://files.pythonhosted.org/packages/71/3b/c03e09d76f8be206abe382b67a93d534bdbaf1e94972fdd8e40e41ec9955/torchaudio-2.2.0-cp311-cp311-macosx_10_13_x86_64.whl", hash = "sha256:971ede9e8488a8b85d6724a0586c3828648703d805054f5d1275d32060c17949", size = 3411800, upload-time = "2024-01-30T17:35:10.504Z" }, - { url = "https://files.pythonhosted.org/packages/79/f7/5929802a1d14693d2dea6e60c51a923724348f134a91558f22bc686d3d8b/torchaudio-2.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:6a84522a48d4605e42f68e5729c0b0ea3c5a604c97aa34f10b8147ed010eee07", size = 1817474, upload-time = "2024-01-30T17:35:20.438Z" }, - { url = "https://files.pythonhosted.org/packages/37/98/3136b10673b2b44ed755cc5261921db9a96af72fda6c3c852696a705d5c4/torchaudio-2.2.0-cp311-cp311-manylinux1_x86_64.whl", hash = "sha256:622098474488bd6d3be3ad0d3b3357bc67544a212a5e6eaff1738c234264e1f4", size = 3349797, upload-time = "2024-01-30T17:34:47.642Z" }, - { url = "https://files.pythonhosted.org/packages/c5/b0/ee24c3ebb6dd448993042d55fc7b31f7f54dd5f2c7541b3f21f13b3165d7/torchaudio-2.2.0-cp311-cp311-manylinux2014_aarch64.whl", hash = "sha256:9be18ca20a0c2e8ca0b633887114083c928c95e454870b1d6ea8cfe05982cec9", size = 1651336, upload-time = "2024-01-30T17:35:14.935Z" }, - { url = "https://files.pythonhosted.org/packages/07/1f/ddc210fc946855233d9be29d6509fb0c06803416b500a6ae7414f2371edb/torchaudio-2.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:acc9c1e371cc007b32db3c4db2c24b44793eb9102156642d5b0811813049adb9", size = 2370425, upload-time = "2024-01-30T17:34:51.496Z" }, - { url = "https://files.pythonhosted.org/packages/9f/7a/19a09df71ad12549dcf91749ffc521edf32a09e532c9277d3289b71949a4/torchaudio-2.2.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:9fd98ae6f7fa191d9e3399b6653962e416f63ac172b97b0c24d63fd46243f94e", size = 3400587, upload-time = "2024-01-30T17:34:55.527Z" }, - { url = "https://files.pythonhosted.org/packages/49/89/44b043bc28c346dd70217ca768cacbb17dbf5db6f8e7e424978fb05e8930/torchaudio-2.2.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:a26447ec3d8be03a0b9f429a9de09c7ad4119de08c78491e4cc6569bed1cfdd6", size = 1803852, upload-time = "2024-01-30T17:35:02.862Z" }, - { url = "https://files.pythonhosted.org/packages/14/ef/83df7a386f05ad2a13d76a34a001e97b607ecfbc8306b3b0b11c4e5d547d/torchaudio-2.2.0-cp312-cp312-manylinux1_x86_64.whl", hash = "sha256:0e874a34c0bee0e9374907512a7e89688ab7ed179b2f7f30b878fb991a852237", size = 3344093, upload-time = "2024-01-30T17:34:37.458Z" }, - { url = "https://files.pythonhosted.org/packages/e3/04/eb71086ca35dbb0db6133fcf2ee5ddde8ee8e046b6f5e2970672cfcdc02d/torchaudio-2.2.0-cp312-cp312-manylinux2014_aarch64.whl", hash = "sha256:a8dbb5f76327a3f2e31dcd3bf93b6716f6ba0342aeb182bb2782daf67b3a5aea", size = 1646814, upload-time = "2024-01-30T17:35:07.878Z" }, - { url = "https://files.pythonhosted.org/packages/65/d0/355175f1f2abd6f193c80a312da01bceb633c98d02b731381c71aa2c58ac/torchaudio-2.2.0-cp312-cp312-win_amd64.whl", hash = "sha256:eb4b03f69d1e399f0ed082b37eeaf189754102512772eded257be908f71d948e", size = 2351229, upload-time = "2024-01-30T17:34:53.247Z" }, -] - -[[package]] -name = "torchaudio" -version = "2.7.1" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", -] -dependencies = [ - { name = "torch", version = "2.7.1", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-5-mlipx-chgnet' or extra != 'extra-5-mlipx-matpes' or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, -] -wheels = [ - { url = "https://files.pythonhosted.org/packages/da/71/bfc6d2b28ede6c4c5446901cfa4d98fa25b2606eb12e641baccec16fcde0/torchaudio-2.7.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:4739af57d0eb94347d1c6a1b5668be78a7383afe826dde18a04883b9f9f263b1", size = 1842457, upload-time = "2025-06-04T17:44:12.073Z" }, - { url = "https://files.pythonhosted.org/packages/e6/8c/35eea5138ccd4abf38b163743d5ab4a8b25349bafa8bdf3d629e7f3036b9/torchaudio-2.7.1-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:c089dbfc14c5f47091b7bf3f6bf2bbac93b86619299d04d9c102f4ad53758990", size = 1680682, upload-time = "2025-06-04T17:44:11.056Z" }, - { url = "https://files.pythonhosted.org/packages/7d/dc/7569889c1fc95ebf18b0295bc4fdebafbbb89ba9e0018c7e9b0844bae011/torchaudio-2.7.1-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:6bb1e6db22fa2aad6b89b2a455ec5c6dc31df2635dbfafa213394f8b07b09516", size = 3498891, upload-time = "2025-06-04T17:43:52.161Z" }, - { url = "https://files.pythonhosted.org/packages/b3/e0/ff0ac4234798a0b6b1398fa878a2e7d22f1d06d4327feb312d9e77e079bd/torchaudio-2.7.1-cp310-cp310-win_amd64.whl", hash = "sha256:2ba4df6e3ad35cb1e5bd162cf86b492526138f6476f5a06b10725b8880c618eb", size = 2483343, upload-time = "2025-06-04T17:43:57.779Z" }, - { url = "https://files.pythonhosted.org/packages/85/a2/52e6760d352584ae1ab139d97647bdc51d1eb7d480b688fe69c72616c956/torchaudio-2.7.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:d5a62f88c629035913f506df03f710c48fc8bb9637191933f27c67088d5ca136", size = 1849254, upload-time = "2025-06-04T17:44:05.392Z" }, - { url = "https://files.pythonhosted.org/packages/df/e6/0f3835895f9d0b8900ca4a7196932b13b74156ad9ffb76e7aacfc5bb4157/torchaudio-2.7.1-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:53bc4ba12e7468be34a7ca2ee837ee5c8bd5755b25c12f665af9339cae37e265", size = 1686156, upload-time = "2025-06-04T17:44:09.39Z" }, - { url = "https://files.pythonhosted.org/packages/0d/c5/8ba8869ac5607bbd83ea864bda2c628f8b7b55a9200f8147687995e95a49/torchaudio-2.7.1-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:f8bd69354a397753b9dea9699d9e1251f8496fbbdf3028c7086a57a615bf33c3", size = 3508053, upload-time = "2025-06-04T17:43:49.398Z" }, - { url = "https://files.pythonhosted.org/packages/78/cc/11709b2cbf841eda124918523088d9aaa1509ae4400f346192037e6de6c6/torchaudio-2.7.1-cp311-cp311-win_amd64.whl", hash = "sha256:0ae0678ad27355eebea5a9fdd9ae9bfec444f8405f9b6c60026905ba3665c43a", size = 2488974, upload-time = "2025-06-04T17:44:04.294Z" }, - { url = "https://files.pythonhosted.org/packages/0b/d1/eb8bc3b3502dddb1b789567b7b19668b1d32817266887b9f381494cfe463/torchaudio-2.7.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:9306dcfc4586cebd7647a93fe9a448e791c4f83934da616b9433b75597a1f978", size = 1846897, upload-time = "2025-06-04T17:44:07.79Z" }, - { url = "https://files.pythonhosted.org/packages/62/7d/6c15f15d3edc5271abc808f70713644b50f0f7bfb85a09dba8b5735fbad3/torchaudio-2.7.1-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:d66bd76b226fdd4135c97650e1b7eb63fb7659b4ed0e3a778898e41dbba21b61", size = 1686680, upload-time = "2025-06-04T17:43:58.986Z" }, - { url = "https://files.pythonhosted.org/packages/48/65/0f46ba74cdc67ea9a8c37c8acfb5194d81639e481e85903c076bcd97188c/torchaudio-2.7.1-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:9cbcdaab77ad9a73711acffee58f4eebc8a0685289a938a3fa6f660af9489aee", size = 3506966, upload-time = "2025-06-04T17:44:06.537Z" }, - { url = "https://files.pythonhosted.org/packages/52/29/06f887baf22cbba85ae331b71b110b115bf11b3968f5914a50c17dde5ab7/torchaudio-2.7.1-cp312-cp312-win_amd64.whl", hash = "sha256:9cfb8f6ace8e01e2b89de74eb893ba5ce936b88b415383605b0a4d974009dec7", size = 2484265, upload-time = "2025-06-04T17:44:00.277Z" }, - { url = "https://files.pythonhosted.org/packages/b6/ee/6e308868b9467e1b51da9d781cb73dd5aadca7c8b6256f88ce5d18a7fb77/torchaudio-2.7.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:e5f0599a507f4683546878ed9667e1b32d7ca3c8a957e4c15c6b302378ef4dee", size = 1847208, upload-time = "2025-06-04T17:44:01.365Z" }, - { url = "https://files.pythonhosted.org/packages/3a/f9/ca0e0960526e6deaa476d168b877480a3fbae5d44668a54de963a9800097/torchaudio-2.7.1-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:271f717844e5c7f9e05c8328de817bf90f46d83281c791e94f54d4edea2f5817", size = 1686311, upload-time = "2025-06-04T17:44:02.785Z" }, - { url = "https://files.pythonhosted.org/packages/bb/ab/83f282ca5475ae34c58520a4a97b6d69438bc699d70d16432deb19791cda/torchaudio-2.7.1-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:1862b063d8d4e55cb4862bcbd63568545f549825a3c5605bd312224c3ebb1919", size = 3507174, upload-time = "2025-06-04T17:43:46.526Z" }, - { url = "https://files.pythonhosted.org/packages/12/91/dbd17a6eda4b0504d9b4f1f721a1654456e39f7178b8462344f942100865/torchaudio-2.7.1-cp313-cp313-win_amd64.whl", hash = "sha256:edb4deaa6f95acd5522912ed643303d0b86d79a6f15914362f5a5d49baaf5d13", size = 2484503, upload-time = "2025-06-04T17:43:48.169Z" }, - { url = "https://files.pythonhosted.org/packages/73/5e/da52d2fa9f7cc89512b63dd8a88fb3e097a89815f440cc16159b216ec611/torchaudio-2.7.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:18560955b8beb2a8d39a6bfae20a442337afcefb3dfd4ee007ce82233a796799", size = 1929983, upload-time = "2025-06-04T17:43:56.659Z" }, - { url = "https://files.pythonhosted.org/packages/f7/16/9d03dc62613f276f9666eb0609164287df23986b67d20b53e78d21a3d8d8/torchaudio-2.7.1-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:1850475ef9101ea0b3593fe93ff6ee4e7a20598f6da6510761220b9fe56eb7fa", size = 1700436, upload-time = "2025-06-04T17:43:55.589Z" }, - { url = "https://files.pythonhosted.org/packages/83/45/57a437fe41b302fc79b4eb78fdb3e480ff42c66270e7505eedf0b000969c/torchaudio-2.7.1-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:98257fc14dd493ba5a3258fb6d61d27cd64a48ee79537c3964c4da26b9bf295f", size = 3521631, upload-time = "2025-06-04T17:43:50.628Z" }, - { url = "https://files.pythonhosted.org/packages/91/5e/9262a7e41e47bc87eb245c4fc485eb26ff41a05886b241c003440c9e0107/torchaudio-2.7.1-cp313-cp313t-win_amd64.whl", hash = "sha256:c802e0dcbf38669007327bb52f065573cc5cac106eaca987f6e1a32e6282263a", size = 2534956, upload-time = "2025-06-04T17:43:42.324Z" }, + { url = "https://files.pythonhosted.org/packages/6e/d6/27deb8862ecc005c95a5c64bcc8cc27c74878eb8d4162ce4d39b35ea9e27/torchaudio-2.7.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:862d9c5cfe15688a7846962b5d3c9f959beffe82b1e5441935c7a37504c5c5e7", size = 1849075, upload-time = "2025-04-23T14:47:03.227Z" }, + { url = "https://files.pythonhosted.org/packages/04/95/29b4a4d87540779101cb60cb7f381fdb6bc6aea0af83f0f35aa8fc70cb0d/torchaudio-2.7.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:677bd32031310ee73a47d6eebc2e74e74c1cf467932945ee88082a3935b5c950", size = 1686165, upload-time = "2025-04-23T14:47:07.456Z" }, + { url = "https://files.pythonhosted.org/packages/ab/20/1873a49df9f1778c241543eaca14d613d657b9f9351c254952114251cb86/torchaudio-2.7.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:c37b77dd528ad18a036466e856f53d8bd5912b757a775309354b4a977a069379", size = 3455781, upload-time = "2025-04-23T14:46:59.901Z" }, + { url = "https://files.pythonhosted.org/packages/9e/1d/1fa4f69e4cd8c83831c3baad0ac9b56ece8ce0e75e5e5c0cdd3f591a458c/torchaudio-2.7.0-cp311-cp311-win_amd64.whl", hash = "sha256:36b94819f5406b2599ac31542e2e7a7aaf4a5b5f466ce034f296b1ee1134c945", size = 2494793, upload-time = "2025-04-23T14:46:42.03Z" }, + { url = "https://files.pythonhosted.org/packages/dd/b9/66dd7c4e16e8e6dcc52b4702ba7bbace589972b3597627d39d9dc3aa5fdd/torchaudio-2.7.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:65b4fc9b7f28367f918b02ae4db4290457bc4fdd160f22b7d684e93ab8dcb956", size = 1846733, upload-time = "2025-04-23T14:47:01.068Z" }, + { url = "https://files.pythonhosted.org/packages/47/48/850edf788c674494a7e148eee6f5563cae34c9a3e3e0962dcfce66c1dae7/torchaudio-2.7.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:33004ed47f18f00044c97ee8cd9e3f5e1c2e26ef23d4f72b5f1ae33e6182587b", size = 1686687, upload-time = "2025-04-23T14:47:02.136Z" }, + { url = "https://files.pythonhosted.org/packages/78/98/ec8c7aba67b44cdc59717d4b43d02023ded5da180d33c6469d20bf5bfa3c/torchaudio-2.7.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:a6f03494075bcdd62e7fade7baf50a0ef107aa809d02b5e1786391adced451a3", size = 3454437, upload-time = "2025-04-23T14:46:57.557Z" }, + { url = "https://files.pythonhosted.org/packages/5e/23/b73163ac06e5a724375df61a5b6c853861a825fe98e64388f277514153dd/torchaudio-2.7.0-cp312-cp312-win_amd64.whl", hash = "sha256:275931c8a38ff84b5692df990506b41f18d0a0706574d96bc8456ad9e5fa85c8", size = 2493451, upload-time = "2025-04-23T14:46:46.456Z" }, + { url = "https://files.pythonhosted.org/packages/c1/a5/bc4bb6b254d3d77e9fa4d219f29d3bff8db92acc9004c27e875f32d4724a/torchaudio-2.7.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:150fbde41da60296effed772b7a170f563cd44967555abb0603fc573f39ce245", size = 1847033, upload-time = "2025-04-23T14:46:58.774Z" }, + { url = "https://files.pythonhosted.org/packages/96/af/4c8d4e781ea5924590cccf8595a09081eb07a577c03fbf4bf04a2f5f7134/torchaudio-2.7.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:9d921eeb036512a87efde007977b27bd326320cd7cd5f43195824173fe82e888", size = 1686308, upload-time = "2025-04-23T14:46:56.378Z" }, + { url = "https://files.pythonhosted.org/packages/12/02/ad1083f6ce534989c704c3efcd615bdd160934229882aa0a3ea95cd24a9a/torchaudio-2.7.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:30675a5f99551e036974a7476729eb5d31f453cf792ae6e0a0d449960f84f464", size = 3455266, upload-time = "2025-04-23T14:46:50.327Z" }, + { url = "https://files.pythonhosted.org/packages/88/49/923ebb2603156dd5c5ae6d845bf51a078e05f27432cd26f13ecdcc8713cd/torchaudio-2.7.0-cp313-cp313-win_amd64.whl", hash = "sha256:ce8cfc07a4e59c835404583e7d3e171208b332b61bb92643f8723f6f192da8bf", size = 2493639, upload-time = "2025-04-23T14:46:40.909Z" }, + { url = "https://files.pythonhosted.org/packages/bf/85/dd4cd1202483e85c208e1ca3d31cc42c2972f1d955d11b742fa098a38a1b/torchaudio-2.7.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:9e08138cac75cde2064c8b5bbd12f27bdeb3d36f4b8c2285fc9c42eaa97c0676", size = 1929989, upload-time = "2025-04-23T14:46:54.144Z" }, + { url = "https://files.pythonhosted.org/packages/ef/3a/8a1045f2b00c6300827c1e6a3e661e9d219b5406ef103dc2824604548b8c/torchaudio-2.7.0-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:1d928aeff495a0807b4da3b0dd46e15eae8070da5e7ed6d35c1dcfd9fdfe2b74", size = 1700439, upload-time = "2025-04-23T14:46:55.249Z" }, + { url = "https://files.pythonhosted.org/packages/72/53/21d589a5a41702b5d37bae224286986cb707500d5ecdbfdcfdbac9381a08/torchaudio-2.7.0-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:ee4add33f24e9cb959bd9de89f36de5ebf844eda040d1d0b38f08617d67dedc3", size = 3466356, upload-time = "2025-04-23T14:46:49.131Z" }, + { url = "https://files.pythonhosted.org/packages/00/0b/5ef81aaacce5e9c316659ddc61a2b1e4f984a504d4a06fe61bab04cc75f1/torchaudio-2.7.0-cp313-cp313t-win_amd64.whl", hash = "sha256:725dbbcc9e744ca62de8856262c6f472ca26b1cd5db062b062a2d6b66a336cc0", size = 2544970, upload-time = "2025-04-23T14:46:44.837Z" }, ] [[package]] name = "torchdata" -version = "0.7.1" +version = "0.11.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "requests" }, - { name = "torch", version = "2.2.0", source = { registry = "https://pypi.org/simple" } }, + { name = "torch", version = "2.7.0", source = { registry = "https://pypi.org/simple" } }, { name = "urllib3" }, ] wheels = [ - { url = "https://files.pythonhosted.org/packages/d0/97/6f8f2384d9efb2d1bb6966b5300852d704f4943656360e9352e3cc3358b8/torchdata-0.7.1-cp310-cp310-macosx_10_13_x86_64.whl", hash = "sha256:042db39edbc961c50a36c45b89aea4b099858140c13746c7cc7a87b1cc219d0c", size = 1801802, upload-time = "2023-11-15T17:09:19.271Z" }, - { url = "https://files.pythonhosted.org/packages/0f/45/7c4674a8a4ac83f0e130d0991d61ff96a231656112bb7c50618d77ab0a8f/torchdata-0.7.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2d2c8482313dd52652caff99dc530433d898a12bb80bc33a0a4d1680d63272e0", size = 4815667, upload-time = "2023-11-15T17:08:43.478Z" }, - { url = "https://files.pythonhosted.org/packages/39/18/6f0d33df4b9fe4d44a779c2c7cc7cb042535a336f051bb0e5b5387844ee6/torchdata-0.7.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eed10b1f9265b30161a8cd129a96cfc7da202cfc70acf8b6a21fd29e18274ca3", size = 4657548, upload-time = "2023-11-15T17:09:00.144Z" }, - { url = "https://files.pythonhosted.org/packages/0e/06/0c916f27ef9f5a566b555f07c82c94fb9277fcabe0fcbf4dfe4505dcb28a/torchdata-0.7.1-cp310-cp310-win_amd64.whl", hash = "sha256:36c591d0910ede6a496d4fccd389f27e7bccabf8b6a8722712ecf28b98bda8ae", size = 1330841, upload-time = "2023-11-15T17:09:14.414Z" }, - { url = "https://files.pythonhosted.org/packages/ad/9a/8b3c64a141b58228419110858acdd5eae7a1b54db9dd8f22a2af956ac53d/torchdata-0.7.1-cp311-cp311-macosx_10_13_x86_64.whl", hash = "sha256:91a78c677a3e4e2447d888587f7ea0b4ddde81ca95adf709ba0d3dc9a4e9542d", size = 1801812, upload-time = "2023-11-15T17:09:05.57Z" }, - { url = "https://files.pythonhosted.org/packages/35/b2/7ed3a80ae0673b940f2af14281dc02dee0f667c6094e6dcd399fa35249a7/torchdata-0.7.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:fa325d628aa6125c6b46b6fa27c94150ca9276edbba1042d3eb3cd9c1039b5a9", size = 4815618, upload-time = "2023-11-15T17:09:02.386Z" }, - { url = "https://files.pythonhosted.org/packages/c1/8d/b17138a9ad7e47dd602587dbcc142bd98374e0c16c0806c2026d8db54242/torchdata-0.7.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d256535648dfb94d1226f233768c6798d1841edfdbf0a09b2115e6cbbda614f9", size = 4657579, upload-time = "2023-11-15T17:09:12.272Z" }, - { url = "https://files.pythonhosted.org/packages/da/8d/e0413f91944f931cb5c685cbd6330ad450f9d5466c466822d25761ca772d/torchdata-0.7.1-cp311-cp311-win_amd64.whl", hash = "sha256:7460a5fa298e7cd5cef98e8e6455d481e5c73d39a462a89a38918389c8153e20", size = 1330404, upload-time = "2023-11-15T17:09:16.713Z" }, - { url = "https://files.pythonhosted.org/packages/e2/c8/34eda2bd6beb8a11c06cf905db74092bdbc3dec51a48f4f22cc474866a0a/torchdata-0.7.1-py3-none-any.whl", hash = "sha256:9f9476a26987d90fa3f87cb09ec82b78ce6031ddcaa91851c9fa9f732a987ab8", size = 184418, upload-time = "2023-11-15T17:09:10.159Z" }, + { url = "https://files.pythonhosted.org/packages/95/d4/af694ef718aedbe95a72760ab9ff7a6a7a44ace2d7f70c27bfeb67c5c503/torchdata-0.11.0-py3-none-any.whl", hash = "sha256:52b940fbbe0e00fb21cabddf528449d1bec5bfb0d0823b7487b15f951658ee33", size = 61968, upload-time = "2025-02-20T22:26:30.666Z" }, ] [[package]] name = "torchmetrics" -version = "1.7.2" +version = "1.8.2" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "lightning-utilities" }, - { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-5-mlipx-matpes' or extra == 'extra-5-mlipx-mattersim' or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "packaging" }, - { name = "torch", version = "2.2.0", source = { registry = "https://pypi.org/simple" }, marker = "(extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim')" }, - { name = "torch", version = "2.7.1", source = { registry = "https://pypi.org/simple" }, marker = "(extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, + { name = "lightning-utilities", marker = "(extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim')" }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes')" }, + { name = "numpy", version = "2.1.3", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'linux' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (sys_platform != 'linux' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "packaging", marker = "(extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim')" }, + { name = "torch", version = "2.7.0", source = { registry = "https://pypi.org/simple" }, marker = "(extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim')" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/b7/ec/f5a4f94c77a1b4c0a37e5c5c8b666a33bc074130258a6b655346bec560c2/torchmetrics-1.7.2.tar.gz", hash = "sha256:ba401cd01aeaa268e809c0e4f42ef8f95669bf9b485e1d93d54dc765e012338a", size = 566185, upload-time = "2025-05-28T20:26:29.543Z" } +sdist = { url = "https://files.pythonhosted.org/packages/85/2e/48a887a59ecc4a10ce9e8b35b3e3c5cef29d902c4eac143378526e7485cb/torchmetrics-1.8.2.tar.gz", hash = "sha256:cf64a901036bf107f17a524009eea7781c9c5315d130713aeca5747a686fe7a5", size = 580679, upload-time = "2025-09-03T14:00:54.077Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/56/89/b5fd7eb99b27457d71d3b7d9eca0b884fa5992abca7672aab1177c5f22d8/torchmetrics-1.7.2-py3-none-any.whl", hash = "sha256:9cc3bff07a715fcb37fb04d2a1a5ae36267c36066c097578020056653a94f2a8", size = 962510, upload-time = "2025-05-28T20:26:27.385Z" }, + { url = "https://files.pythonhosted.org/packages/02/21/aa0f434434c48490f91b65962b1ce863fdcce63febc166ca9fe9d706c2b6/torchmetrics-1.8.2-py3-none-any.whl", hash = "sha256:08382fd96b923e39e904c4d570f3d49e2cc71ccabd2a94e0f895d1f0dac86242", size = 983161, upload-time = "2025-09-03T14:00:51.921Z" }, ] [[package]] @@ -15316,13 +14418,14 @@ version = "0.2.4" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "fsspec" }, - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" } }, + { name = "numpy", version = "2.1.3", source = { registry = "https://pypi.org/simple" } }, { name = "packaging" }, { name = "psutil" }, { name = "pyre-extensions" }, { name = "setuptools" }, { name = "tabulate" }, - { name = "tensorboard" }, + { name = "tensorboard", version = "2.16.2", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'extra-5-mlipx-fairchem') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "tensorboard", version = "2.19.0", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'linux' and extra == 'extra-5-mlipx-fairchem') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes')" }, { name = "torch", version = "2.6.0", source = { registry = "https://pypi.org/simple" } }, { name = "tqdm" }, { name = "typing-extensions" }, @@ -15334,265 +14437,50 @@ wheels = [ [[package]] name = "torchvision" -version = "0.17.0" +version = "0.22.0" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.12' and sys_platform == 'win32'", - "python_full_version == '3.11.*' and sys_platform == 'win32'", - "python_full_version < '3.11' and sys_platform == 'win32'", - "python_full_version >= '3.12' and sys_platform == 'darwin'", - "python_full_version == '3.11.*' and sys_platform == 'darwin'", - "python_full_version < '3.11' and sys_platform == 'darwin'", - "python_full_version >= '3.12' and sys_platform == 'linux'", - "python_full_version == '3.11.*' and sys_platform == 'linux'", - "python_full_version < '3.11' and sys_platform == 'linux'", - "python_full_version >= '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32'", - "python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32'", - "python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and sys_platform != 'win32'", -] dependencies = [ - { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "pillow", marker = "(extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "requests", marker = "(extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "torch", version = "2.2.0", source = { registry = "https://pypi.org/simple" }, marker = "(extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, -] -wheels = [ - { url = "https://files.pythonhosted.org/packages/99/da/dedf05fab34a0ef38abc20b8a86b836a486fdef774641812fe556db8ef5a/torchvision-0.17.0-cp310-cp310-macosx_10_13_x86_64.whl", hash = "sha256:153882cd8ff8e3dbef5c5054fdd15df64e85420546805a90c0b2221f2f119c4a", size = 1667125, upload-time = "2024-01-30T17:34:04.735Z" }, - { url = "https://files.pythonhosted.org/packages/95/f5/5f3f013ddb3eb8561d3313fd5a5951e5883aff4aba8398ad93d1b183a214/torchvision-0.17.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c55c2f86e3f3a21ddd92739a972366244e9b17916e836ec47167b0a0c083c65f", size = 1571848, upload-time = "2024-01-30T17:34:10.127Z" }, - { url = "https://files.pythonhosted.org/packages/d8/51/55393d57c2d95311b1675c8cd37d307f5022460cf98746e4df882dfb415c/torchvision-0.17.0-cp310-cp310-manylinux1_x86_64.whl", hash = "sha256:605950cdcefe6c5aef85709ade17b1525bcf171e122cce1df09e666d96525b90", size = 6916370, upload-time = "2024-01-30T17:33:54.665Z" }, - { url = "https://files.pythonhosted.org/packages/4f/fd/c02da47623d870a53007f4628f69787cbe62a50fcedc3327d03d5951ae5c/torchvision-0.17.0-cp310-cp310-manylinux2014_aarch64.whl", hash = "sha256:3d86c212fc6379e9bec3ac647d062e34c2cf36c26b98840b66573eb9fbe1f1d9", size = 14011345, upload-time = "2024-01-30T17:33:42.49Z" }, - { url = "https://files.pythonhosted.org/packages/7f/c9/10ca7837d786f2a96328ddf3a93767897d5e6eb04cf42b043778a771d04a/torchvision-0.17.0-cp310-cp310-win_amd64.whl", hash = "sha256:71b314813faf13cecb09a4a635b5e4b274e8df0b1921681038d491c529555bb6", size = 1166258, upload-time = "2024-01-30T17:34:06.536Z" }, - { url = "https://files.pythonhosted.org/packages/32/81/f81f5c6ecb0ef29affb69d2e615e20b531420ba866dd7cd504f9dc766d8c/torchvision-0.17.0-cp311-cp311-macosx_10_13_x86_64.whl", hash = "sha256:10d276821f115fb369e6cf1f1b77b2cca60cda12cbb39a41513a9d3d0f2a93ae", size = 1667134, upload-time = "2024-01-30T17:34:02.471Z" }, - { url = "https://files.pythonhosted.org/packages/3e/4f/ad5c2a7d2783649c8ea691441a9f285accae922a1625e21603c45e3ddff4/torchvision-0.17.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:a3eef2daddadb5c21e802e0550dd7e3ee3d98c430f4aed212ae3ba0358558be1", size = 1571854, upload-time = "2024-01-30T17:34:08.626Z" }, - { url = "https://files.pythonhosted.org/packages/c7/6a/5a3e396a4ac5d869acf9bb0db9c301c4780af1b68fdb5883d61d63e595b6/torchvision-0.17.0-cp311-cp311-manylinux1_x86_64.whl", hash = "sha256:acc0d098ab8c295a750f0218bf5bf7bfc2f2c21f9c2fe3fc30b695cd94f4c759", size = 6916629, upload-time = "2024-01-30T17:33:58.064Z" }, - { url = "https://files.pythonhosted.org/packages/5f/96/4300bd970f7de2e5dbf0fe1a78baa8670ea3f09cadca51b05e1dfc346fe3/torchvision-0.17.0-cp311-cp311-manylinux2014_aarch64.whl", hash = "sha256:3d2e9552d72e4037f2db6f7d97989a2e2f95763aa1861963a3faf521bb1610c4", size = 14011347, upload-time = "2024-01-30T17:33:37.351Z" }, - { url = "https://files.pythonhosted.org/packages/b5/56/38e892200f8638032b64f6fc8660049f0d00ccba086cf1dcb884bd6370d2/torchvision-0.17.0-cp311-cp311-win_amd64.whl", hash = "sha256:f8e542cf71e1294fcb5635038eae6702df543dc90706f0836ec80e75efc511fc", size = 1166261, upload-time = "2024-01-30T17:33:35.654Z" }, - { url = "https://files.pythonhosted.org/packages/8a/27/c7860ad0973f6f555bc5e03fbc9e001f79816ff503321b34941ee60fe44c/torchvision-0.17.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:816ae1a4506b1cb0f638e1827cae7ab768c731369ab23e86839f177926197143", size = 1667123, upload-time = "2024-01-30T17:33:56.428Z" }, - { url = "https://files.pythonhosted.org/packages/a8/16/b208d6704061438b80f63937c6a00a70c5e91062bbb281e106e007ecd41b/torchvision-0.17.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:be39874c239215a39b3c431c7016501f1a45bfbbebf2fe8e11d8339b5ea23bca", size = 1571848, upload-time = "2024-01-30T17:33:31.782Z" }, - { url = "https://files.pythonhosted.org/packages/3a/20/c57ef160aa7477478544f05b9ef949625166b49e35f06e987eeb8b0882d6/torchvision-0.17.0-cp312-cp312-manylinux1_x86_64.whl", hash = "sha256:8fe14d580557aef2c45dd462c069ff936b6507b215c4b496f30973ae8cff917d", size = 6916663, upload-time = "2024-01-30T17:33:46.12Z" }, - { url = "https://files.pythonhosted.org/packages/f6/87/ed1fb27b3b22b77587c518441a19a2812d153af4e4dadf8d9f74cc21e645/torchvision-0.17.0-cp312-cp312-manylinux2014_aarch64.whl", hash = "sha256:4608ba3246c45c968ede40e7640e4eed64556210faa154cf1ffccb1cadabe445", size = 14011677, upload-time = "2024-01-30T17:33:52.328Z" }, - { url = "https://files.pythonhosted.org/packages/be/a6/ed6d3413761b1d3ff572d8436601e0854471ff67c0c986064ad01bcba303/torchvision-0.17.0-cp312-cp312-win_amd64.whl", hash = "sha256:b755d6d3e021239d2408bf3794d0d3dcffbc629f1fd808c43d8b346045a098c4", size = 1166260, upload-time = "2024-01-30T17:33:33.841Z" }, -] - -[[package]] -name = "torchvision" -version = "0.22.1" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'linux' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb')" }, + { name = "numpy", version = "2.1.3", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'linux' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb')" }, + { name = "pillow" }, + { name = "torch", version = "2.7.0", source = { registry = "https://pypi.org/simple" } }, ] -dependencies = [ - { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-5-mlipx-chgnet' or extra != 'extra-5-mlipx-matpes' or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, - { name = "pillow", marker = "extra == 'extra-5-mlipx-chgnet' or extra != 'extra-5-mlipx-matpes' or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, - { name = "torch", version = "2.7.1", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-5-mlipx-chgnet' or extra != 'extra-5-mlipx-matpes' or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, -] -wheels = [ - { url = "https://files.pythonhosted.org/packages/15/2c/7b67117b14c6cc84ae3126ca6981abfa3af2ac54eb5252b80d9475fb40df/torchvision-0.22.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3b47d8369ee568c067795c0da0b4078f39a9dfea6f3bc1f3ac87530dfda1dd56", size = 1947825, upload-time = "2025-06-04T17:43:15.523Z" }, - { url = "https://files.pythonhosted.org/packages/6c/9f/c4dcf1d232b75e28bc37e21209ab2458d6d60235e16163544ed693de54cb/torchvision-0.22.1-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:990de4d657a41ed71680cd8be2e98ebcab55371f30993dc9bd2e676441f7180e", size = 2512611, upload-time = "2025-06-04T17:43:03.951Z" }, - { url = "https://files.pythonhosted.org/packages/e2/99/db71d62d12628111d59147095527a0ab492bdfecfba718d174c04ae6c505/torchvision-0.22.1-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:3347f690c2eed6d02aa0edfb9b01d321e7f7cf1051992d96d8d196c39b881d49", size = 7485668, upload-time = "2025-06-04T17:43:09.453Z" }, - { url = "https://files.pythonhosted.org/packages/32/ff/4a93a4623c3e5f97e8552af0f9f81d289dcf7f2ac71f1493f1c93a6b973d/torchvision-0.22.1-cp310-cp310-win_amd64.whl", hash = "sha256:86ad938f5a6ca645f0d5fb19484b1762492c2188c0ffb05c602e9e9945b7b371", size = 1707961, upload-time = "2025-06-04T17:43:13.038Z" }, - { url = "https://files.pythonhosted.org/packages/f6/00/bdab236ef19da050290abc2b5203ff9945c84a1f2c7aab73e8e9c8c85669/torchvision-0.22.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:4addf626e2b57fc22fd6d329cf1346d474497672e6af8383b7b5b636fba94a53", size = 1947827, upload-time = "2025-06-04T17:43:10.84Z" }, - { url = "https://files.pythonhosted.org/packages/ac/d0/18f951b2be3cfe48c0027b349dcc6fde950e3dc95dd83e037e86f284f6fd/torchvision-0.22.1-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:8b4a53a6067d63adba0c52f2b8dd2290db649d642021674ee43c0c922f0c6a69", size = 2514021, upload-time = "2025-06-04T17:43:07.608Z" }, - { url = "https://files.pythonhosted.org/packages/c3/1a/63eb241598b36d37a0221e10af357da34bd33402ccf5c0765e389642218a/torchvision-0.22.1-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:b7866a3b326413e67724ac46f1ee594996735e10521ba9e6cdbe0fa3cd98c2f2", size = 7487300, upload-time = "2025-06-04T17:42:58.349Z" }, - { url = "https://files.pythonhosted.org/packages/e5/73/1b009b42fe4a7774ba19c23c26bb0f020d68525c417a348b166f1c56044f/torchvision-0.22.1-cp311-cp311-win_amd64.whl", hash = "sha256:bb3f6df6f8fd415ce38ec4fd338376ad40c62e86052d7fc706a0dd51efac1718", size = 1707989, upload-time = "2025-06-04T17:43:14.332Z" }, - { url = "https://files.pythonhosted.org/packages/02/90/f4e99a5112dc221cf68a485e853cc3d9f3f1787cb950b895f3ea26d1ea98/torchvision-0.22.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:153f1790e505bd6da123e21eee6e83e2e155df05c0fe7d56347303067d8543c5", size = 1947827, upload-time = "2025-06-04T17:43:11.945Z" }, - { url = "https://files.pythonhosted.org/packages/25/f6/53e65384cdbbe732cc2106bb04f7fb908487e4fb02ae4a1613ce6904a122/torchvision-0.22.1-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:964414eef19459d55a10e886e2fca50677550e243586d1678f65e3f6f6bac47a", size = 2514576, upload-time = "2025-06-04T17:43:02.707Z" }, - { url = "https://files.pythonhosted.org/packages/17/8b/155f99042f9319bd7759536779b2a5b67cbd4f89c380854670850f89a2f4/torchvision-0.22.1-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:699c2d70d33951187f6ed910ea05720b9b4aaac1dcc1135f53162ce7d42481d3", size = 7485962, upload-time = "2025-06-04T17:42:43.606Z" }, - { url = "https://files.pythonhosted.org/packages/05/17/e45d5cd3627efdb47587a0634179a3533593436219de3f20c743672d2a79/torchvision-0.22.1-cp312-cp312-win_amd64.whl", hash = "sha256:75e0897da7a8e43d78632f66f2bdc4f6e26da8d3f021a7c0fa83746073c2597b", size = 1707992, upload-time = "2025-06-04T17:42:53.207Z" }, - { url = "https://files.pythonhosted.org/packages/7a/30/fecdd09fb973e963da68207fe9f3d03ec6f39a935516dc2a98397bf495c6/torchvision-0.22.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:9c3ae3319624c43cc8127020f46c14aa878406781f0899bb6283ae474afeafbf", size = 1947818, upload-time = "2025-06-04T17:42:51.954Z" }, - { url = "https://files.pythonhosted.org/packages/55/f4/b45f6cd92fa0acfac5e31b8e9258232f25bcdb0709a604e8b8a39d76e411/torchvision-0.22.1-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:4a614a6a408d2ed74208d0ea6c28a2fbb68290e9a7df206c5fef3f0b6865d307", size = 2471597, upload-time = "2025-06-04T17:42:48.838Z" }, - { url = "https://files.pythonhosted.org/packages/8d/b0/3cffd6a285b5ffee3fe4a31caff49e350c98c5963854474d1c4f7a51dea5/torchvision-0.22.1-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:7ee682be589bb1a002b7704f06b8ec0b89e4b9068f48e79307d2c6e937a9fdf4", size = 7485894, upload-time = "2025-06-04T17:43:01.371Z" }, - { url = "https://files.pythonhosted.org/packages/fd/1d/0ede596fedc2080d18108149921278b59f220fbb398f29619495337b0f86/torchvision-0.22.1-cp313-cp313-win_amd64.whl", hash = "sha256:2566cafcfa47ecfdbeed04bab8cef1307c8d4ef75046f7624b9e55f384880dfe", size = 1708020, upload-time = "2025-06-04T17:43:06.085Z" }, - { url = "https://files.pythonhosted.org/packages/0f/ca/e9a06bd61ee8e04fb4962a3fb524fe6ee4051662db07840b702a9f339b24/torchvision-0.22.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:043d9e35ed69c2e586aff6eb9e2887382e7863707115668ac9d140da58f42cba", size = 2137623, upload-time = "2025-06-04T17:43:05.028Z" }, - { url = "https://files.pythonhosted.org/packages/ab/c8/2ebe90f18e7ffa2120f5c3eab62aa86923185f78d2d051a455ea91461608/torchvision-0.22.1-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:27142bcc8a984227a6dcf560985e83f52b82a7d3f5fe9051af586a2ccc46ef26", size = 2476561, upload-time = "2025-06-04T17:42:59.691Z" }, - { url = "https://files.pythonhosted.org/packages/94/8b/04c6b15f8c29b39f0679589753091cec8b192ab296d4fdaf9055544c4ec9/torchvision-0.22.1-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:ef46e065502f7300ad6abc98554131c35dc4c837b978d91306658f1a65c00baa", size = 7658543, upload-time = "2025-06-04T17:42:46.064Z" }, - { url = "https://files.pythonhosted.org/packages/ab/c0/131628e6d42682b0502c63fd7f647b8b5ca4bd94088f6c85ca7225db8ac4/torchvision-0.22.1-cp313-cp313t-win_amd64.whl", hash = "sha256:7414eeacfb941fa21acddcd725f1617da5630ec822e498660a4b864d7d998075", size = 1629892, upload-time = "2025-06-04T17:42:57.156Z" }, +wheels = [ + { url = "https://files.pythonhosted.org/packages/b1/43/28bc858b022f6337326d75f4027d2073aad5432328f01ee1236d847f1b82/torchvision-0.22.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:191ea28321fc262d8aa1a7fe79c41ff2848864bf382f9f6ea45c41dde8313792", size = 1947828, upload-time = "2025-04-23T14:42:00.439Z" }, + { url = "https://files.pythonhosted.org/packages/7e/71/ce9a303b94e64fe25d534593522ffc76848c4e64c11e4cbe9f6b8d537210/torchvision-0.22.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:6c5620e10ffe388eb6f4744962106ed7cf1508d26e6fdfa0c10522d3249aea24", size = 2514016, upload-time = "2025-04-23T14:41:48.566Z" }, + { url = "https://files.pythonhosted.org/packages/09/42/6908bff012a1dcc4fc515e52339652d7f488e208986542765c02ea775c2f/torchvision-0.22.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:ce292701c77c64dd3935e3e31c722c3b8b176a75f76dc09b804342efc1db5494", size = 7447546, upload-time = "2025-04-23T14:41:47.297Z" }, + { url = "https://files.pythonhosted.org/packages/e4/cf/8f9305cc0ea26badbbb3558ecae54c04a245429f03168f7fad502f8a5b25/torchvision-0.22.0-cp311-cp311-win_amd64.whl", hash = "sha256:e4017b5685dbab4250df58084f07d95e677b2f3ed6c2e507a1afb8eb23b580ca", size = 1716472, upload-time = "2025-04-23T14:42:01.999Z" }, + { url = "https://files.pythonhosted.org/packages/cb/ea/887d1d61cf4431a46280972de665f350af1898ce5006cd046326e5d0a2f2/torchvision-0.22.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:31c3165418fe21c3d81fe3459e51077c2f948801b8933ed18169f54652796a0f", size = 1947826, upload-time = "2025-04-23T14:41:59.188Z" }, + { url = "https://files.pythonhosted.org/packages/72/ef/21f8b6122e13ae045b8e49658029c695fd774cd21083b3fa5c3f9c5d3e35/torchvision-0.22.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:8f116bc82e0c076e70ba7776e611ed392b9666aa443662e687808b08993d26af", size = 2514571, upload-time = "2025-04-23T14:41:53.458Z" }, + { url = "https://files.pythonhosted.org/packages/7c/48/5f7617f6c60d135f86277c53f9d5682dfa4e66f4697f505f1530e8b69fb1/torchvision-0.22.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:ce4dc334ebd508de2c534817c9388e928bc2500cf981906ae8d6e2ca3bf4727a", size = 7446522, upload-time = "2025-04-23T14:41:34.9Z" }, + { url = "https://files.pythonhosted.org/packages/99/94/a015e93955f5d3a68689cc7c385a3cfcd2d62b84655d18b61f32fb04eb67/torchvision-0.22.0-cp312-cp312-win_amd64.whl", hash = "sha256:24b8c9255c209ca419cc7174906da2791c8b557b75c23496663ec7d73b55bebf", size = 1716664, upload-time = "2025-04-23T14:41:58.019Z" }, + { url = "https://files.pythonhosted.org/packages/e1/2a/9b34685599dcb341d12fc2730055155623db7a619d2415a8d31f17050952/torchvision-0.22.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:ece17995857dd328485c9c027c0b20ffc52db232e30c84ff6c95ab77201112c5", size = 1947823, upload-time = "2025-04-23T14:41:39.956Z" }, + { url = "https://files.pythonhosted.org/packages/77/77/88f64879483d66daf84f1d1c4d5c31ebb08e640411139042a258d5f7dbfe/torchvision-0.22.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:471c6dd75bb984c6ebe4f60322894a290bf3d4b195e769d80754f3689cd7f238", size = 2471592, upload-time = "2025-04-23T14:41:54.991Z" }, + { url = "https://files.pythonhosted.org/packages/f7/82/2f813eaae7c1fae1f9d9e7829578f5a91f39ef48d6c1c588a8900533dd3d/torchvision-0.22.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:2b839ac0610a38f56bef115ee5b9eaca5f9c2da3c3569a68cc62dbcc179c157f", size = 7446333, upload-time = "2025-04-23T14:41:36.603Z" }, + { url = "https://files.pythonhosted.org/packages/58/19/ca7a4f8907a56351dfe6ae0a708f4e6b3569b5c61d282e3e7f61cf42a4ce/torchvision-0.22.0-cp313-cp313-win_amd64.whl", hash = "sha256:4ada1c08b2f761443cd65b7c7b4aec9e2fc28f75b0d4e1b1ebc9d3953ebccc4d", size = 1716693, upload-time = "2025-04-23T14:41:41.031Z" }, + { url = "https://files.pythonhosted.org/packages/6f/a7/f43e9c8d13118b4ffbaebea664c9338ab20fa115a908125afd2238ff16e7/torchvision-0.22.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:cdc96daa4658b47ce9384154c86ed1e70cba9d972a19f5de6e33f8f94a626790", size = 2137621, upload-time = "2025-04-23T14:41:51.427Z" }, + { url = "https://files.pythonhosted.org/packages/6a/9a/2b59f5758ba7e3f23bc84e16947493bbce97392ec6d18efba7bdf0a3b10e/torchvision-0.22.0-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:753d3c84eeadd5979a33b3b73a25ecd0aa4af44d6b45ed2c70d44f5e0ac68312", size = 2476555, upload-time = "2025-04-23T14:41:38.357Z" }, + { url = "https://files.pythonhosted.org/packages/7d/40/a7bc2ab9b1e56d10a7fd9ae83191bb425fa308caa23d148f1c568006e02c/torchvision-0.22.0-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:b30e3ed29e4a61f7499bca50f57d8ebd23dfc52b14608efa17a534a55ee59a03", size = 7617924, upload-time = "2025-04-23T14:41:42.709Z" }, + { url = "https://files.pythonhosted.org/packages/c1/7b/30d423bdb2546250d719d7821aaf9058cc093d165565b245b159c788a9dd/torchvision-0.22.0-cp313-cp313t-win_amd64.whl", hash = "sha256:e5d680162694fac4c8a374954e261ddfb4eb0ce103287b0f693e4e9c579ef957", size = 1638621, upload-time = "2025-04-23T14:41:46.06Z" }, ] [[package]] name = "tornado" -version = "6.5.1" +version = "6.5.2" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/51/89/c72771c81d25d53fe33e3dca61c233b665b2780f21820ba6fd2c6793c12b/tornado-6.5.1.tar.gz", hash = "sha256:84ceece391e8eb9b2b95578db65e920d2a61070260594819589609ba9bc6308c", size = 509934, upload-time = "2025-05-22T18:15:38.788Z" } +sdist = { url = "https://files.pythonhosted.org/packages/09/ce/1eb500eae19f4648281bb2186927bb062d2438c2e5093d1360391afd2f90/tornado-6.5.2.tar.gz", hash = "sha256:ab53c8f9a0fa351e2c0741284e06c7a45da86afb544133201c5cc8578eb076a0", size = 510821, upload-time = "2025-08-08T18:27:00.78Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/77/89/f4532dee6843c9e0ebc4e28d4be04c67f54f60813e4bf73d595fe7567452/tornado-6.5.1-cp39-abi3-macosx_10_9_universal2.whl", hash = "sha256:d50065ba7fd11d3bd41bcad0825227cc9a95154bad83239357094c36708001f7", size = 441948, upload-time = "2025-05-22T18:15:20.862Z" }, - { url = "https://files.pythonhosted.org/packages/15/9a/557406b62cffa395d18772e0cdcf03bed2fff03b374677348eef9f6a3792/tornado-6.5.1-cp39-abi3-macosx_10_9_x86_64.whl", hash = "sha256:9e9ca370f717997cb85606d074b0e5b247282cf5e2e1611568b8821afe0342d6", size = 440112, upload-time = "2025-05-22T18:15:22.591Z" }, - { url = "https://files.pythonhosted.org/packages/55/82/7721b7319013a3cf881f4dffa4f60ceff07b31b394e459984e7a36dc99ec/tornado-6.5.1-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b77e9dfa7ed69754a54c89d82ef746398be82f749df69c4d3abe75c4d1ff4888", size = 443672, upload-time = "2025-05-22T18:15:24.027Z" }, - { url = "https://files.pythonhosted.org/packages/7d/42/d11c4376e7d101171b94e03cef0cbce43e823ed6567ceda571f54cf6e3ce/tornado-6.5.1-cp39-abi3-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:253b76040ee3bab8bcf7ba9feb136436a3787208717a1fb9f2c16b744fba7331", size = 443019, upload-time = "2025-05-22T18:15:25.735Z" }, - { url = "https://files.pythonhosted.org/packages/7d/f7/0c48ba992d875521ac761e6e04b0a1750f8150ae42ea26df1852d6a98942/tornado-6.5.1-cp39-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:308473f4cc5a76227157cdf904de33ac268af770b2c5f05ca6c1161d82fdd95e", size = 443252, upload-time = "2025-05-22T18:15:27.499Z" }, - { url = "https://files.pythonhosted.org/packages/89/46/d8d7413d11987e316df4ad42e16023cd62666a3c0dfa1518ffa30b8df06c/tornado-6.5.1-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:caec6314ce8a81cf69bd89909f4b633b9f523834dc1a352021775d45e51d9401", size = 443930, upload-time = "2025-05-22T18:15:29.299Z" }, - { url = "https://files.pythonhosted.org/packages/78/b2/f8049221c96a06df89bed68260e8ca94beca5ea532ffc63b1175ad31f9cc/tornado-6.5.1-cp39-abi3-musllinux_1_2_i686.whl", hash = "sha256:13ce6e3396c24e2808774741331638ee6c2f50b114b97a55c5b442df65fd9692", size = 443351, upload-time = "2025-05-22T18:15:31.038Z" }, - { url = "https://files.pythonhosted.org/packages/76/ff/6a0079e65b326cc222a54720a748e04a4db246870c4da54ece4577bfa702/tornado-6.5.1-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:5cae6145f4cdf5ab24744526cc0f55a17d76f02c98f4cff9daa08ae9a217448a", size = 443328, upload-time = "2025-05-22T18:15:32.426Z" }, - { url = "https://files.pythonhosted.org/packages/49/18/e3f902a1d21f14035b5bc6246a8c0f51e0eef562ace3a2cea403c1fb7021/tornado-6.5.1-cp39-abi3-win32.whl", hash = "sha256:e0a36e1bc684dca10b1aa75a31df8bdfed656831489bc1e6a6ebed05dc1ec365", size = 444396, upload-time = "2025-05-22T18:15:34.205Z" }, - { url = "https://files.pythonhosted.org/packages/7b/09/6526e32bf1049ee7de3bebba81572673b19a2a8541f795d887e92af1a8bc/tornado-6.5.1-cp39-abi3-win_amd64.whl", hash = "sha256:908e7d64567cecd4c2b458075589a775063453aeb1d2a1853eedb806922f568b", size = 444840, upload-time = "2025-05-22T18:15:36.1Z" }, - { url = "https://files.pythonhosted.org/packages/55/a7/535c44c7bea4578e48281d83c615219f3ab19e6abc67625ef637c73987be/tornado-6.5.1-cp39-abi3-win_arm64.whl", hash = "sha256:02420a0eb7bf617257b9935e2b754d1b63897525d8a289c9d65690d580b4dcf7", size = 443596, upload-time = "2025-05-22T18:15:37.433Z" }, + { url = "https://files.pythonhosted.org/packages/f6/48/6a7529df2c9cc12efd2e8f5dd219516184d703b34c06786809670df5b3bd/tornado-6.5.2-cp39-abi3-macosx_10_9_universal2.whl", hash = "sha256:2436822940d37cde62771cff8774f4f00b3c8024fe482e16ca8387b8a2724db6", size = 442563, upload-time = "2025-08-08T18:26:42.945Z" }, + { url = "https://files.pythonhosted.org/packages/f2/b5/9b575a0ed3e50b00c40b08cbce82eb618229091d09f6d14bce80fc01cb0b/tornado-6.5.2-cp39-abi3-macosx_10_9_x86_64.whl", hash = "sha256:583a52c7aa94ee046854ba81d9ebb6c81ec0fd30386d96f7640c96dad45a03ef", size = 440729, upload-time = "2025-08-08T18:26:44.473Z" }, + { url = "https://files.pythonhosted.org/packages/1b/4e/619174f52b120efcf23633c817fd3fed867c30bff785e2cd5a53a70e483c/tornado-6.5.2-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b0fe179f28d597deab2842b86ed4060deec7388f1fd9c1b4a41adf8af058907e", size = 444295, upload-time = "2025-08-08T18:26:46.021Z" }, + { url = "https://files.pythonhosted.org/packages/95/fa/87b41709552bbd393c85dd18e4e3499dcd8983f66e7972926db8d96aa065/tornado-6.5.2-cp39-abi3-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b186e85d1e3536d69583d2298423744740986018e393d0321df7340e71898882", size = 443644, upload-time = "2025-08-08T18:26:47.625Z" }, + { url = "https://files.pythonhosted.org/packages/f9/41/fb15f06e33d7430ca89420283a8762a4e6b8025b800ea51796ab5e6d9559/tornado-6.5.2-cp39-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e792706668c87709709c18b353da1f7662317b563ff69f00bab83595940c7108", size = 443878, upload-time = "2025-08-08T18:26:50.599Z" }, + { url = "https://files.pythonhosted.org/packages/11/92/fe6d57da897776ad2e01e279170ea8ae726755b045fe5ac73b75357a5a3f/tornado-6.5.2-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:06ceb1300fd70cb20e43b1ad8aaee0266e69e7ced38fa910ad2e03285009ce7c", size = 444549, upload-time = "2025-08-08T18:26:51.864Z" }, + { url = "https://files.pythonhosted.org/packages/9b/02/c8f4f6c9204526daf3d760f4aa555a7a33ad0e60843eac025ccfd6ff4a93/tornado-6.5.2-cp39-abi3-musllinux_1_2_i686.whl", hash = "sha256:74db443e0f5251be86cbf37929f84d8c20c27a355dd452a5cfa2aada0d001ec4", size = 443973, upload-time = "2025-08-08T18:26:53.625Z" }, + { url = "https://files.pythonhosted.org/packages/ae/2d/f5f5707b655ce2317190183868cd0f6822a1121b4baeae509ceb9590d0bd/tornado-6.5.2-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:b5e735ab2889d7ed33b32a459cac490eda71a1ba6857b0118de476ab6c366c04", size = 443954, upload-time = "2025-08-08T18:26:55.072Z" }, + { url = "https://files.pythonhosted.org/packages/e8/59/593bd0f40f7355806bf6573b47b8c22f8e1374c9b6fd03114bd6b7a3dcfd/tornado-6.5.2-cp39-abi3-win32.whl", hash = "sha256:c6f29e94d9b37a95013bb669616352ddb82e3bfe8326fccee50583caebc8a5f0", size = 445023, upload-time = "2025-08-08T18:26:56.677Z" }, + { url = "https://files.pythonhosted.org/packages/c7/2a/f609b420c2f564a748a2d80ebfb2ee02a73ca80223af712fca591386cafb/tornado-6.5.2-cp39-abi3-win_amd64.whl", hash = "sha256:e56a5af51cc30dd2cae649429af65ca2f6571da29504a07995175df14c18f35f", size = 445427, upload-time = "2025-08-08T18:26:57.91Z" }, + { url = "https://files.pythonhosted.org/packages/5e/4f/e1f65e8f8c76d73658b33d33b81eed4322fb5085350e4328d5c956f0c8f9/tornado-6.5.2-cp39-abi3-win_arm64.whl", hash = "sha256:d6c33dc3672e3a1f3618eb63b7ef4683a7688e7b9e6e8f0d9aa5726360a004af", size = 444456, upload-time = "2025-08-08T18:26:59.207Z" }, ] [[package]] @@ -15600,7 +14488,7 @@ name = "tqdm" version = "4.67.1" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "colorama", marker = "sys_platform == 'win32'" }, + { name = "colorama", marker = "sys_platform == 'win32' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/a8/4b/29b4ef32e036bb34e4ab51796dd745cdba7ed47ad142a9f4a1eb8e0c744d/tqdm-4.67.1.tar.gz", hash = "sha256:f8aef9c52c08c13a65f30ea34f4e5aac3fd1a34959879d7e59e63027286627f2", size = 169737, upload-time = "2024-11-24T20:12:22.481Z" } wheels = [ @@ -15616,24 +14504,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/00/c0/8f5d070730d7836adc9c9b6408dec68c6ced86b304a9b26a14df072a6e8c/traitlets-5.14.3-py3-none-any.whl", hash = "sha256:b74e89e397b1ed28cc831db7aea759ba6640cb3de13090ca145426688ff1ac4f", size = 85359, upload-time = "2024-04-19T11:11:46.763Z" }, ] -[[package]] -name = "triton" -version = "2.2.0" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.12' and sys_platform == 'linux'", - "python_full_version == '3.11.*' and sys_platform == 'linux'", - "python_full_version < '3.11' and sys_platform == 'linux'", -] -dependencies = [ - { name = "filelock", marker = "(sys_platform == 'linux' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn')" }, -] -wheels = [ - { url = "https://files.pythonhosted.org/packages/95/05/ed974ce87fe8c8843855daa2136b3409ee1c126707ab54a8b72815c08b49/triton-2.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a2294514340cfe4e8f4f9e5c66c702744c4a117d25e618bd08469d0bfed1e2e5", size = 167900779, upload-time = "2024-01-10T03:11:56.576Z" }, - { url = "https://files.pythonhosted.org/packages/bd/ac/3974caaa459bf2c3a244a84be8d17561f631f7d42af370fc311defeca2fb/triton-2.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:da58a152bddb62cafa9a857dd2bc1f886dbf9f9c90a2b5da82157cd2b34392b0", size = 167928356, upload-time = "2024-01-10T03:12:05.923Z" }, - { url = "https://files.pythonhosted.org/packages/0e/49/2e1bbae4542b8f624e409540b4197e37ab22a88e8685e99debe721cc2b50/triton-2.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0af58716e721460a61886668b205963dc4d1e4ac20508cc3f623aef0d70283d5", size = 167933985, upload-time = "2024-01-10T03:12:14.556Z" }, -] - [[package]] name = "triton" version = "3.2.0" @@ -15641,35 +14511,26 @@ source = { registry = "https://pypi.org/simple" } resolution-markers = [ "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", ] wheels = [ - { url = "https://files.pythonhosted.org/packages/01/65/3ffa90e158a2c82f0716eee8d26a725d241549b7d7aaf7e4f44ac03ebd89/triton-3.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3e54983cd51875855da7c68ec05c05cf8bb08df361b1d5b69e05e40b0c9bd62", size = 253090354, upload-time = "2025-01-22T19:12:21.872Z" }, { url = "https://files.pythonhosted.org/packages/a7/2e/757d2280d4fefe7d33af7615124e7e298ae7b8e3bc4446cdb8e88b0f9bab/triton-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8009a1fb093ee8546495e96731336a33fb8856a38e45bb4ab6affd6dbc3ba220", size = 253157636, upload-time = "2025-01-22T19:12:51.322Z" }, { url = "https://files.pythonhosted.org/packages/06/00/59500052cb1cf8cf5316be93598946bc451f14072c6ff256904428eaf03c/triton-3.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8d9b215efc1c26fa7eefb9a157915c92d52e000d2bf83e5f69704047e63f125c", size = 253159365, upload-time = "2025-01-22T19:13:24.648Z" }, { url = "https://files.pythonhosted.org/packages/c7/30/37a3384d1e2e9320331baca41e835e90a3767303642c7a80d4510152cbcf/triton-3.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e5dfa23ba84541d7c0a531dfce76d8bcd19159d50a4a8b14ad01e91734a5c1b0", size = 253154278, upload-time = "2025-01-22T19:13:54.221Z" }, @@ -15677,193 +14538,191 @@ wheels = [ [[package]] name = "triton" -version = "3.3.1" +version = "3.3.0" source = { registry = "https://pypi.org/simple" } resolution-markers = [ + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn'", + "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.13' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version == '3.12.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", "python_full_version >= '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version == '3.11.*' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", - "python_full_version < '3.11' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", + "python_full_version < '3.12' and sys_platform != 'win32' and extra != 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb' and extra != 'extra-5-mlipx-sevenn'", ] dependencies = [ - { name = "setuptools", marker = "(sys_platform != 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace') or (sys_platform != 'win32' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-fairchem') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes') or (sys_platform == 'linux' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-matpes') or (sys_platform != 'win32' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn')" }, + { name = "setuptools", marker = "(sys_platform == 'linux' and extra != 'extra-5-mlipx-fairchem') or (sys_platform != 'win32' and extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-grace') or (sys_platform == 'win32' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform == 'win32' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform == 'win32' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (sys_platform == 'win32' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (sys_platform == 'win32' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, ] wheels = [ - { url = "https://files.pythonhosted.org/packages/8d/a9/549e51e9b1b2c9b854fd761a1d23df0ba2fbc60bd0c13b489ffa518cfcb7/triton-3.3.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b74db445b1c562844d3cfad6e9679c72e93fdfb1a90a24052b03bb5c49d1242e", size = 155600257, upload-time = "2025-05-29T23:39:36.085Z" }, - { url = "https://files.pythonhosted.org/packages/21/2f/3e56ea7b58f80ff68899b1dbe810ff257c9d177d288c6b0f55bf2fe4eb50/triton-3.3.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b31e3aa26f8cb3cc5bf4e187bf737cbacf17311e1112b781d4a059353dfd731b", size = 155689937, upload-time = "2025-05-29T23:39:44.182Z" }, - { url = "https://files.pythonhosted.org/packages/24/5f/950fb373bf9c01ad4eb5a8cd5eaf32cdf9e238c02f9293557a2129b9c4ac/triton-3.3.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9999e83aba21e1a78c1f36f21bce621b77bcaa530277a50484a7cb4a822f6e43", size = 155669138, upload-time = "2025-05-29T23:39:51.771Z" }, - { url = "https://files.pythonhosted.org/packages/74/1f/dfb531f90a2d367d914adfee771babbd3f1a5b26c3f5fbc458dee21daa78/triton-3.3.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b89d846b5a4198317fec27a5d3a609ea96b6d557ff44b56c23176546023c4240", size = 155673035, upload-time = "2025-05-29T23:40:02.468Z" }, - { url = "https://files.pythonhosted.org/packages/28/71/bd20ffcb7a64c753dc2463489a61bf69d531f308e390ad06390268c4ea04/triton-3.3.1-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a3198adb9d78b77818a5388bff89fa72ff36f9da0bc689db2f0a651a67ce6a42", size = 155735832, upload-time = "2025-05-29T23:40:10.522Z" }, + { url = "https://files.pythonhosted.org/packages/3c/c5/4874a81131cc9e934d88377fbc9d24319ae1fb540f3333b4e9c696ebc607/triton-3.3.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:3161a2bf073d6b22c4e2f33f951f3e5e3001462b2570e6df9cd57565bdec2984", size = 156528461, upload-time = "2025-04-09T20:27:32.599Z" }, + { url = "https://files.pythonhosted.org/packages/11/53/ce18470914ab6cfbec9384ee565d23c4d1c55f0548160b1c7b33000b11fd/triton-3.3.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b68c778f6c4218403a6bd01be7484f6dc9e20fe2083d22dd8aef33e3b87a10a3", size = 156504509, upload-time = "2025-04-09T20:27:40.413Z" }, + { url = "https://files.pythonhosted.org/packages/7d/74/4bf2702b65e93accaa20397b74da46fb7a0356452c1bb94dbabaf0582930/triton-3.3.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:47bc87ad66fa4ef17968299acacecaab71ce40a238890acc6ad197c3abe2b8f1", size = 156516468, upload-time = "2025-04-09T20:27:48.196Z" }, + { url = "https://files.pythonhosted.org/packages/0a/93/f28a696fa750b9b608baa236f8225dd3290e5aff27433b06143adc025961/triton-3.3.0-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ce4700fc14032af1e049005ae94ba908e71cd6c2df682239aed08e49bc71b742", size = 156580729, upload-time = "2025-04-09T20:27:55.424Z" }, ] [[package]] name = "typer" -version = "0.16.0" +version = "0.20.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "click" }, { name = "rich", version = "13.9.4", source = { registry = "https://pypi.org/simple" }, marker = "(extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "rich", version = "14.0.0", source = { registry = "https://pypi.org/simple" }, marker = "(extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb')" }, + { name = "rich", version = "14.2.0", source = { registry = "https://pypi.org/simple" }, marker = "(extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-orb') or (extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-mattersim' and extra != 'extra-5-mlipx-orb')" }, { name = "shellingham" }, { name = "typing-extensions" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/c5/8c/7d682431efca5fd290017663ea4588bf6f2c6aad085c7f108c5dbc316e70/typer-0.16.0.tar.gz", hash = "sha256:af377ffaee1dbe37ae9440cb4e8f11686ea5ce4e9bae01b84ae7c63b87f1dd3b", size = 102625, upload-time = "2025-05-26T14:30:31.824Z" } +sdist = { url = "https://files.pythonhosted.org/packages/8f/28/7c85c8032b91dbe79725b6f17d2fffc595dff06a35c7a30a37bef73a1ab4/typer-0.20.0.tar.gz", hash = "sha256:1aaf6494031793e4876fb0bacfa6a912b551cf43c1e63c800df8b1a866720c37", size = 106492, upload-time = "2025-10-20T17:03:49.445Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/76/42/3efaf858001d2c2913de7f354563e3a3a2f0decae3efe98427125a8f441e/typer-0.16.0-py3-none-any.whl", hash = "sha256:1f79bed11d4d02d4310e3c1b7ba594183bcedb0ac73b27a9e5f28f6fb5b98855", size = 46317, upload-time = "2025-05-26T14:30:30.523Z" }, + { url = "https://files.pythonhosted.org/packages/78/64/7713ffe4b5983314e9d436a90d5bd4f63b6054e2aca783a3cfc44cb95bbf/typer-0.20.0-py3-none-any.whl", hash = "sha256:5b463df6793ec1dca6213a3cf4c0f03bc6e322ac5e16e13ddd622a889489784a", size = 47028, upload-time = "2025-10-20T17:03:47.617Z" }, ] [[package]] -name = "types-python-dateutil" -version = "2.9.0.20250516" +name = "typer-slim" +version = "0.20.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/ef/88/d65ed807393285204ab6e2801e5d11fbbea811adcaa979a2ed3b67a5ef41/types_python_dateutil-2.9.0.20250516.tar.gz", hash = "sha256:13e80d6c9c47df23ad773d54b2826bd52dbbb41be87c3f339381c1700ad21ee5", size = 13943, upload-time = "2025-05-16T03:06:58.385Z" } +dependencies = [ + { name = "click" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/8e/45/81b94a52caed434b94da65729c03ad0fb7665fab0f7db9ee54c94e541403/typer_slim-0.20.0.tar.gz", hash = "sha256:9fc6607b3c6c20f5c33ea9590cbeb17848667c51feee27d9e314a579ab07d1a3", size = 106561, upload-time = "2025-10-20T17:03:46.642Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/c5/3f/b0e8db149896005adc938a1e7f371d6d7e9eca4053a29b108978ed15e0c2/types_python_dateutil-2.9.0.20250516-py3-none-any.whl", hash = "sha256:2b2b3f57f9c6a61fba26a9c0ffb9ea5681c9b83e69cd897c6b5f668d9c0cab93", size = 14356, upload-time = "2025-05-16T03:06:57.249Z" }, + { url = "https://files.pythonhosted.org/packages/5e/dd/5cbf31f402f1cc0ab087c94d4669cfa55bd1e818688b910631e131d74e75/typer_slim-0.20.0-py3-none-any.whl", hash = "sha256:f42a9b7571a12b97dddf364745d29f12221865acef7a2680065f9bb29c7dc89d", size = 47087, upload-time = "2025-10-20T17:03:44.546Z" }, ] [[package]] name = "typing-extensions" -version = "4.14.0" +version = "4.15.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/d1/bc/51647cd02527e87d05cb083ccc402f93e441606ff1f01739a62c8ad09ba5/typing_extensions-4.14.0.tar.gz", hash = "sha256:8676b788e32f02ab42d9e7c61324048ae4c6d844a399eebace3d4979d75ceef4", size = 107423, upload-time = "2025-06-02T14:52:11.399Z" } +sdist = { url = "https://files.pythonhosted.org/packages/72/94/1a15dd82efb362ac84269196e94cf00f187f7ed21c242792a923cdb1c61f/typing_extensions-4.15.0.tar.gz", hash = "sha256:0cea48d173cc12fa28ecabc3b837ea3cf6f38c6d1136f85cbaaf598984861466", size = 109391, upload-time = "2025-08-25T13:49:26.313Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/69/e0/552843e0d356fbb5256d21449fa957fa4eff3bbc135a74a691ee70c7c5da/typing_extensions-4.14.0-py3-none-any.whl", hash = "sha256:a1514509136dd0b477638fc68d6a91497af5076466ad0fa6c338e44e359944af", size = 43839, upload-time = "2025-06-02T14:52:10.026Z" }, + { url = "https://files.pythonhosted.org/packages/18/67/36e9267722cc04a6b9f15c7f3441c2363321a3ea07da7ae0c0707beb2a9c/typing_extensions-4.15.0-py3-none-any.whl", hash = "sha256:f0fa19c6845758ab08074a0cfa8b7aecb71c999ca73d62883bc25cc018c4e548", size = 44614, upload-time = "2025-08-25T13:49:24.86Z" }, ] [[package]] @@ -15881,14 +14740,14 @@ wheels = [ [[package]] name = "typing-inspection" -version = "0.4.1" +version = "0.4.2" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "typing-extensions" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/f8/b1/0c11f5058406b3af7609f121aaa6b609744687f1d158b3c3a5bf4cc94238/typing_inspection-0.4.1.tar.gz", hash = "sha256:6ae134cc0203c33377d43188d4064e9b357dba58cff3185f22924610e70a9d28", size = 75726, upload-time = "2025-05-21T18:55:23.885Z" } +sdist = { url = "https://files.pythonhosted.org/packages/55/e3/70399cb7dd41c10ac53367ae42139cf4b1ca5f36bb3dc6c9d33acdb43655/typing_inspection-0.4.2.tar.gz", hash = "sha256:ba561c48a67c5958007083d386c3295464928b01faa735ab8547c5692e87f464", size = 75949, upload-time = "2025-10-01T02:14:41.687Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/17/69/cd203477f944c353c31bade965f880aa1061fd6bf05ded0726ca845b6ff7/typing_inspection-0.4.1-py3-none-any.whl", hash = "sha256:389055682238f53b04f7badcb49b989835495a96700ced5dab2d8feae4b26f51", size = 14552, upload-time = "2025-05-21T18:55:22.152Z" }, + { url = "https://files.pythonhosted.org/packages/dc/9b/47798a6c91d8bdb567fe2698fe81e0c6b7cb7ef4d13da4114b41d239f65d/typing_inspection-0.4.2-py3-none-any.whl", hash = "sha256:4ed1cacbdc298c220f1bd249ed5287caa16f34d44ef4e9c3d0cbad5b521545e7", size = 14611, upload-time = "2025-10-01T02:14:40.154Z" }, ] [[package]] @@ -15900,58 +14759,85 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/5c/23/c7abc0ca0a1526a0774eca151daeb8de62ec457e77262b66b359c3c7679e/tzdata-2025.2-py2.py3-none-any.whl", hash = "sha256:1a403fada01ff9221ca8044d701868fa132215d84beb92242d9acd2147f667a8", size = 347839, upload-time = "2025-03-23T13:54:41.845Z" }, ] +[[package]] +name = "tzlocal" +version = "5.3.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "tzdata", marker = "sys_platform == 'win32' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/8b/2e/c14812d3d4d9cd1773c6be938f89e5735a1f11a9f184ac3639b93cef35d5/tzlocal-5.3.1.tar.gz", hash = "sha256:cceffc7edecefea1f595541dbd6e990cb1ea3d19bf01b2809f362a03dd7921fd", size = 30761, upload-time = "2025-03-05T21:17:41.549Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c2/14/e2a54fabd4f08cd7af1c07030603c3356b74da07f7cc056e600436edfa17/tzlocal-5.3.1-py3-none-any.whl", hash = "sha256:eb1a66c3ef5847adf7a834f1be0800581b683b5608e74f86ecbcef8ab91bb85d", size = 18026, upload-time = "2025-03-05T21:17:39.857Z" }, +] + [[package]] name = "ujson" -version = "5.10.0" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/f0/00/3110fd566786bfa542adb7932d62035e0c0ef662a8ff6544b6643b3d6fd7/ujson-5.10.0.tar.gz", hash = "sha256:b3cd8f3c5d8c7738257f1018880444f7b7d9b66232c64649f562d7ba86ad4bc1", size = 7154885, upload-time = "2024-05-14T02:02:34.233Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/7d/91/91678e49a9194f527e60115db84368c237ac7824992224fac47dcb23a5c6/ujson-5.10.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:2601aa9ecdbee1118a1c2065323bda35e2c5a2cf0797ef4522d485f9d3ef65bd", size = 55354, upload-time = "2024-05-14T02:00:27.054Z" }, - { url = "https://files.pythonhosted.org/packages/de/2f/1ed8c9b782fa4f44c26c1c4ec686d728a4865479da5712955daeef0b2e7b/ujson-5.10.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:348898dd702fc1c4f1051bc3aacbf894caa0927fe2c53e68679c073375f732cf", size = 51808, upload-time = "2024-05-14T02:00:29.461Z" }, - { url = "https://files.pythonhosted.org/packages/51/bf/a3a38b2912288143e8e613c6c4c3f798b5e4e98c542deabf94c60237235f/ujson-5.10.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:22cffecf73391e8abd65ef5f4e4dd523162a3399d5e84faa6aebbf9583df86d6", size = 51995, upload-time = "2024-05-14T02:00:30.93Z" }, - { url = "https://files.pythonhosted.org/packages/b4/6d/0df8f7a6f1944ba619d93025ce468c9252aa10799d7140e07014dfc1a16c/ujson-5.10.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:26b0e2d2366543c1bb4fbd457446f00b0187a2bddf93148ac2da07a53fe51569", size = 53566, upload-time = "2024-05-14T02:00:33.091Z" }, - { url = "https://files.pythonhosted.org/packages/d5/ec/370741e5e30d5f7dc7f31a478d5bec7537ce6bfb7f85e72acefbe09aa2b2/ujson-5.10.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:caf270c6dba1be7a41125cd1e4fc7ba384bf564650beef0df2dd21a00b7f5770", size = 58499, upload-time = "2024-05-14T02:00:34.742Z" }, - { url = "https://files.pythonhosted.org/packages/fe/29/72b33a88f7fae3c398f9ba3e74dc2e5875989b25f1c1f75489c048a2cf4e/ujson-5.10.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:a245d59f2ffe750446292b0094244df163c3dc96b3ce152a2c837a44e7cda9d1", size = 997881, upload-time = "2024-05-14T02:00:36.492Z" }, - { url = "https://files.pythonhosted.org/packages/70/5c/808fbf21470e7045d56a282cf5e85a0450eacdb347d871d4eb404270ee17/ujson-5.10.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:94a87f6e151c5f483d7d54ceef83b45d3a9cca7a9cb453dbdbb3f5a6f64033f5", size = 1140631, upload-time = "2024-05-14T02:00:38.995Z" }, - { url = "https://files.pythonhosted.org/packages/8f/6a/e1e8281408e6270d6ecf2375af14d9e2f41c402ab6b161ecfa87a9727777/ujson-5.10.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:29b443c4c0a113bcbb792c88bea67b675c7ca3ca80c3474784e08bba01c18d51", size = 1043511, upload-time = "2024-05-14T02:00:41.352Z" }, - { url = "https://files.pythonhosted.org/packages/cb/ca/e319acbe4863919ec62498bc1325309f5c14a3280318dca10fe1db3cb393/ujson-5.10.0-cp310-cp310-win32.whl", hash = "sha256:c18610b9ccd2874950faf474692deee4223a994251bc0a083c114671b64e6518", size = 38626, upload-time = "2024-05-14T02:00:43.483Z" }, - { url = "https://files.pythonhosted.org/packages/78/ec/dc96ca379de33f73b758d72e821ee4f129ccc32221f4eb3f089ff78d8370/ujson-5.10.0-cp310-cp310-win_amd64.whl", hash = "sha256:924f7318c31874d6bb44d9ee1900167ca32aa9b69389b98ecbde34c1698a250f", size = 42076, upload-time = "2024-05-14T02:00:46.56Z" }, - { url = "https://files.pythonhosted.org/packages/23/ec/3c551ecfe048bcb3948725251fb0214b5844a12aa60bee08d78315bb1c39/ujson-5.10.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:a5b366812c90e69d0f379a53648be10a5db38f9d4ad212b60af00bd4048d0f00", size = 55353, upload-time = "2024-05-14T02:00:48.04Z" }, - { url = "https://files.pythonhosted.org/packages/8d/9f/4731ef0671a0653e9f5ba18db7c4596d8ecbf80c7922dd5fe4150f1aea76/ujson-5.10.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:502bf475781e8167f0f9d0e41cd32879d120a524b22358e7f205294224c71126", size = 51813, upload-time = "2024-05-14T02:00:49.28Z" }, - { url = "https://files.pythonhosted.org/packages/1f/2b/44d6b9c1688330bf011f9abfdb08911a9dc74f76926dde74e718d87600da/ujson-5.10.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5b91b5d0d9d283e085e821651184a647699430705b15bf274c7896f23fe9c9d8", size = 51988, upload-time = "2024-05-14T02:00:50.484Z" }, - { url = "https://files.pythonhosted.org/packages/29/45/f5f5667427c1ec3383478092a414063ddd0dfbebbcc533538fe37068a0a3/ujson-5.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:129e39af3a6d85b9c26d5577169c21d53821d8cf68e079060602e861c6e5da1b", size = 53561, upload-time = "2024-05-14T02:00:52.146Z" }, - { url = "https://files.pythonhosted.org/packages/26/21/a0c265cda4dd225ec1be595f844661732c13560ad06378760036fc622587/ujson-5.10.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f77b74475c462cb8b88680471193064d3e715c7c6074b1c8c412cb526466efe9", size = 58497, upload-time = "2024-05-14T02:00:53.366Z" }, - { url = "https://files.pythonhosted.org/packages/28/36/8fde862094fd2342ccc427a6a8584fed294055fdee341661c78660f7aef3/ujson-5.10.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:7ec0ca8c415e81aa4123501fee7f761abf4b7f386aad348501a26940beb1860f", size = 997877, upload-time = "2024-05-14T02:00:55.095Z" }, - { url = "https://files.pythonhosted.org/packages/90/37/9208e40d53baa6da9b6a1c719e0670c3f474c8fc7cc2f1e939ec21c1bc93/ujson-5.10.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:ab13a2a9e0b2865a6c6db9271f4b46af1c7476bfd51af1f64585e919b7c07fd4", size = 1140632, upload-time = "2024-05-14T02:00:57.099Z" }, - { url = "https://files.pythonhosted.org/packages/89/d5/2626c87c59802863d44d19e35ad16b7e658e4ac190b0dead17ff25460b4c/ujson-5.10.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:57aaf98b92d72fc70886b5a0e1a1ca52c2320377360341715dd3933a18e827b1", size = 1043513, upload-time = "2024-05-14T02:00:58.488Z" }, - { url = "https://files.pythonhosted.org/packages/2f/ee/03662ce9b3f16855770f0d70f10f0978ba6210805aa310c4eebe66d36476/ujson-5.10.0-cp311-cp311-win32.whl", hash = "sha256:2987713a490ceb27edff77fb184ed09acdc565db700ee852823c3dc3cffe455f", size = 38616, upload-time = "2024-05-14T02:01:00.463Z" }, - { url = "https://files.pythonhosted.org/packages/3e/20/952dbed5895835ea0b82e81a7be4ebb83f93b079d4d1ead93fcddb3075af/ujson-5.10.0-cp311-cp311-win_amd64.whl", hash = "sha256:f00ea7e00447918ee0eff2422c4add4c5752b1b60e88fcb3c067d4a21049a720", size = 42071, upload-time = "2024-05-14T02:01:02.211Z" }, - { url = "https://files.pythonhosted.org/packages/e8/a6/fd3f8bbd80842267e2d06c3583279555e8354c5986c952385199d57a5b6c/ujson-5.10.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:98ba15d8cbc481ce55695beee9f063189dce91a4b08bc1d03e7f0152cd4bbdd5", size = 55642, upload-time = "2024-05-14T02:01:04.055Z" }, - { url = "https://files.pythonhosted.org/packages/a8/47/dd03fd2b5ae727e16d5d18919b383959c6d269c7b948a380fdd879518640/ujson-5.10.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:a9d2edbf1556e4f56e50fab7d8ff993dbad7f54bac68eacdd27a8f55f433578e", size = 51807, upload-time = "2024-05-14T02:01:05.25Z" }, - { url = "https://files.pythonhosted.org/packages/25/23/079a4cc6fd7e2655a473ed9e776ddbb7144e27f04e8fc484a0fb45fe6f71/ujson-5.10.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6627029ae4f52d0e1a2451768c2c37c0c814ffc04f796eb36244cf16b8e57043", size = 51972, upload-time = "2024-05-14T02:01:06.458Z" }, - { url = "https://files.pythonhosted.org/packages/04/81/668707e5f2177791869b624be4c06fb2473bf97ee33296b18d1cf3092af7/ujson-5.10.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f8ccb77b3e40b151e20519c6ae6d89bfe3f4c14e8e210d910287f778368bb3d1", size = 53686, upload-time = "2024-05-14T02:01:07.618Z" }, - { url = "https://files.pythonhosted.org/packages/bd/50/056d518a386d80aaf4505ccf3cee1c40d312a46901ed494d5711dd939bc3/ujson-5.10.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3caf9cd64abfeb11a3b661329085c5e167abbe15256b3b68cb5d914ba7396f3", size = 58591, upload-time = "2024-05-14T02:01:08.901Z" }, - { url = "https://files.pythonhosted.org/packages/fc/d6/aeaf3e2d6fb1f4cfb6bf25f454d60490ed8146ddc0600fae44bfe7eb5a72/ujson-5.10.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:6e32abdce572e3a8c3d02c886c704a38a1b015a1fb858004e03d20ca7cecbb21", size = 997853, upload-time = "2024-05-14T02:01:10.772Z" }, - { url = "https://files.pythonhosted.org/packages/f8/d5/1f2a5d2699f447f7d990334ca96e90065ea7f99b142ce96e85f26d7e78e2/ujson-5.10.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:a65b6af4d903103ee7b6f4f5b85f1bfd0c90ba4eeac6421aae436c9988aa64a2", size = 1140689, upload-time = "2024-05-14T02:01:12.214Z" }, - { url = "https://files.pythonhosted.org/packages/f2/2c/6990f4ccb41ed93744aaaa3786394bca0875503f97690622f3cafc0adfde/ujson-5.10.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:604a046d966457b6cdcacc5aa2ec5314f0e8c42bae52842c1e6fa02ea4bda42e", size = 1043576, upload-time = "2024-05-14T02:01:14.39Z" }, - { url = "https://files.pythonhosted.org/packages/14/f5/a2368463dbb09fbdbf6a696062d0c0f62e4ae6fa65f38f829611da2e8fdd/ujson-5.10.0-cp312-cp312-win32.whl", hash = "sha256:6dea1c8b4fc921bf78a8ff00bbd2bfe166345f5536c510671bccececb187c80e", size = 38764, upload-time = "2024-05-14T02:01:15.83Z" }, - { url = "https://files.pythonhosted.org/packages/59/2d/691f741ffd72b6c84438a93749ac57bf1a3f217ac4b0ea4fd0e96119e118/ujson-5.10.0-cp312-cp312-win_amd64.whl", hash = "sha256:38665e7d8290188b1e0d57d584eb8110951a9591363316dd41cf8686ab1d0abc", size = 42211, upload-time = "2024-05-14T02:01:17.567Z" }, - { url = "https://files.pythonhosted.org/packages/0d/69/b3e3f924bb0e8820bb46671979770c5be6a7d51c77a66324cdb09f1acddb/ujson-5.10.0-cp313-cp313-macosx_10_9_x86_64.whl", hash = "sha256:618efd84dc1acbd6bff8eaa736bb6c074bfa8b8a98f55b61c38d4ca2c1f7f287", size = 55646, upload-time = "2024-05-14T02:01:19.26Z" }, - { url = "https://files.pythonhosted.org/packages/32/8a/9b748eb543c6cabc54ebeaa1f28035b1bd09c0800235b08e85990734c41e/ujson-5.10.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:38d5d36b4aedfe81dfe251f76c0467399d575d1395a1755de391e58985ab1c2e", size = 51806, upload-time = "2024-05-14T02:01:20.593Z" }, - { url = "https://files.pythonhosted.org/packages/39/50/4b53ea234413b710a18b305f465b328e306ba9592e13a791a6a6b378869b/ujson-5.10.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67079b1f9fb29ed9a2914acf4ef6c02844b3153913eb735d4bf287ee1db6e557", size = 51975, upload-time = "2024-05-14T02:01:21.904Z" }, - { url = "https://files.pythonhosted.org/packages/b4/9d/8061934f960cdb6dd55f0b3ceeff207fcc48c64f58b43403777ad5623d9e/ujson-5.10.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d7d0e0ceeb8fe2468c70ec0c37b439dd554e2aa539a8a56365fd761edb418988", size = 53693, upload-time = "2024-05-14T02:01:23.742Z" }, - { url = "https://files.pythonhosted.org/packages/f5/be/7bfa84b28519ddbb67efc8410765ca7da55e6b93aba84d97764cd5794dbc/ujson-5.10.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:59e02cd37bc7c44d587a0ba45347cc815fb7a5fe48de16bf05caa5f7d0d2e816", size = 58594, upload-time = "2024-05-14T02:01:25.554Z" }, - { url = "https://files.pythonhosted.org/packages/48/eb/85d465abafb2c69d9699cfa5520e6e96561db787d36c677370e066c7e2e7/ujson-5.10.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:2a890b706b64e0065f02577bf6d8ca3b66c11a5e81fb75d757233a38c07a1f20", size = 997853, upload-time = "2024-05-14T02:01:27.151Z" }, - { url = "https://files.pythonhosted.org/packages/9f/76/2a63409fc05d34dd7d929357b7a45e3a2c96f22b4225cd74becd2ba6c4cb/ujson-5.10.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:621e34b4632c740ecb491efc7f1fcb4f74b48ddb55e65221995e74e2d00bbff0", size = 1140694, upload-time = "2024-05-14T02:01:29.113Z" }, - { url = "https://files.pythonhosted.org/packages/45/ed/582c4daba0f3e1688d923b5cb914ada1f9defa702df38a1916c899f7c4d1/ujson-5.10.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:b9500e61fce0cfc86168b248104e954fead61f9be213087153d272e817ec7b4f", size = 1043580, upload-time = "2024-05-14T02:01:31.447Z" }, - { url = "https://files.pythonhosted.org/packages/d7/0c/9837fece153051e19c7bade9f88f9b409e026b9525927824cdf16293b43b/ujson-5.10.0-cp313-cp313-win32.whl", hash = "sha256:4c4fc16f11ac1612f05b6f5781b384716719547e142cfd67b65d035bd85af165", size = 38766, upload-time = "2024-05-14T02:01:32.856Z" }, - { url = "https://files.pythonhosted.org/packages/d7/72/6cb6728e2738c05bbe9bd522d6fc79f86b9a28402f38663e85a28fddd4a0/ujson-5.10.0-cp313-cp313-win_amd64.whl", hash = "sha256:4573fd1695932d4f619928fd09d5d03d917274381649ade4328091ceca175539", size = 42212, upload-time = "2024-05-14T02:01:33.97Z" }, - { url = "https://files.pythonhosted.org/packages/95/53/e5f5e733fc3525e65f36f533b0dbece5e5e2730b760e9beacf7e3d9d8b26/ujson-5.10.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl", hash = "sha256:5b6fee72fa77dc172a28f21693f64d93166534c263adb3f96c413ccc85ef6e64", size = 51846, upload-time = "2024-05-14T02:02:06.347Z" }, - { url = "https://files.pythonhosted.org/packages/59/1f/f7bc02a54ea7b47f3dc2d125a106408f18b0f47b14fc737f0913483ae82b/ujson-5.10.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:61d0af13a9af01d9f26d2331ce49bb5ac1fb9c814964018ac8df605b5422dcb3", size = 48103, upload-time = "2024-05-14T02:02:07.777Z" }, - { url = "https://files.pythonhosted.org/packages/1a/3a/d3921b6f29bc744d8d6c56db5f8bbcbe55115fd0f2b79c3c43ff292cc7c9/ujson-5.10.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ecb24f0bdd899d368b715c9e6664166cf694d1e57be73f17759573a6986dd95a", size = 47257, upload-time = "2024-05-14T02:02:09.46Z" }, - { url = "https://files.pythonhosted.org/packages/f1/04/f4e3883204b786717038064afd537389ba7d31a72b437c1372297cb651ea/ujson-5.10.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fbd8fd427f57a03cff3ad6574b5e299131585d9727c8c366da4624a9069ed746", size = 48468, upload-time = "2024-05-14T02:02:10.768Z" }, - { url = "https://files.pythonhosted.org/packages/17/cd/9c6547169eb01a22b04cbb638804ccaeb3c2ec2afc12303464e0f9b2ee5a/ujson-5.10.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:beeaf1c48e32f07d8820c705ff8e645f8afa690cca1544adba4ebfa067efdc88", size = 54266, upload-time = "2024-05-14T02:02:12.109Z" }, - { url = "https://files.pythonhosted.org/packages/70/bf/ecd14d3cf6127f8a990b01f0ad20e257f5619a555f47d707c57d39934894/ujson-5.10.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:baed37ea46d756aca2955e99525cc02d9181de67f25515c468856c38d52b5f3b", size = 42224, upload-time = "2024-05-14T02:02:13.843Z" }, +version = "5.11.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/43/d9/3f17e3c5773fb4941c68d9a37a47b1a79c9649d6c56aefbed87cc409d18a/ujson-5.11.0.tar.gz", hash = "sha256:e204ae6f909f099ba6b6b942131cee359ddda2b6e4ea39c12eb8b991fe2010e0", size = 7156583, upload-time = "2025-08-20T11:57:02.452Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/da/ea/80346b826349d60ca4d612a47cdf3533694e49b45e9d1c07071bb867a184/ujson-5.11.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:d7c46cb0fe5e7056b9acb748a4c35aa1b428025853032540bb7e41f46767321f", size = 55248, upload-time = "2025-08-20T11:55:19.033Z" }, + { url = "https://files.pythonhosted.org/packages/57/df/b53e747562c89515e18156513cc7c8ced2e5e3fd6c654acaa8752ffd7cd9/ujson-5.11.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:d8951bb7a505ab2a700e26f691bdfacf395bc7e3111e3416d325b513eea03a58", size = 53156, upload-time = "2025-08-20T11:55:20.174Z" }, + { url = "https://files.pythonhosted.org/packages/41/b8/ab67ec8c01b8a3721fd13e5cb9d85ab2a6066a3a5e9148d661a6870d6293/ujson-5.11.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:952c0be400229940248c0f5356514123d428cba1946af6fa2bbd7503395fef26", size = 57657, upload-time = "2025-08-20T11:55:21.296Z" }, + { url = "https://files.pythonhosted.org/packages/7b/c7/fb84f27cd80a2c7e2d3c6012367aecade0da936790429801803fa8d4bffc/ujson-5.11.0-cp311-cp311-manylinux_2_24_i686.manylinux_2_28_i686.whl", hash = "sha256:94fcae844f1e302f6f8095c5d1c45a2f0bfb928cccf9f1b99e3ace634b980a2a", size = 59779, upload-time = "2025-08-20T11:55:22.772Z" }, + { url = "https://files.pythonhosted.org/packages/5d/7c/48706f7c1e917ecb97ddcfb7b1d756040b86ed38290e28579d63bd3fcc48/ujson-5.11.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:7e0ec1646db172beb8d3df4c32a9d78015e671d2000af548252769e33079d9a6", size = 57284, upload-time = "2025-08-20T11:55:24.01Z" }, + { url = "https://files.pythonhosted.org/packages/ec/ce/48877c6eb4afddfd6bd1db6be34456538c07ca2d6ed233d3f6c6efc2efe8/ujson-5.11.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:da473b23e3a54448b008d33f742bcd6d5fb2a897e42d1fc6e7bf306ea5d18b1b", size = 1036395, upload-time = "2025-08-20T11:55:25.725Z" }, + { url = "https://files.pythonhosted.org/packages/8b/7a/2c20dc97ad70cd7c31ad0596ba8e2cf8794d77191ba4d1e0bded69865477/ujson-5.11.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:aa6b3d4f1c0d3f82930f4cbd7fe46d905a4a9205a7c13279789c1263faf06dba", size = 1195731, upload-time = "2025-08-20T11:55:27.915Z" }, + { url = "https://files.pythonhosted.org/packages/15/f5/ca454f2f6a2c840394b6f162fff2801450803f4ff56c7af8ce37640b8a2a/ujson-5.11.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:4843f3ab4fe1cc596bb7e02228ef4c25d35b4bb0809d6a260852a4bfcab37ba3", size = 1088710, upload-time = "2025-08-20T11:55:29.426Z" }, + { url = "https://files.pythonhosted.org/packages/fe/d3/9ba310e07969bc9906eb7548731e33a0f448b122ad9705fed699c9b29345/ujson-5.11.0-cp311-cp311-win32.whl", hash = "sha256:e979fbc469a7f77f04ec2f4e853ba00c441bf2b06720aa259f0f720561335e34", size = 39648, upload-time = "2025-08-20T11:55:31.194Z" }, + { url = "https://files.pythonhosted.org/packages/57/f7/da05b4a8819f1360be9e71fb20182f0bb3ec611a36c3f213f4d20709e099/ujson-5.11.0-cp311-cp311-win_amd64.whl", hash = "sha256:683f57f0dd3acdd7d9aff1de0528d603aafcb0e6d126e3dc7ce8b020a28f5d01", size = 43717, upload-time = "2025-08-20T11:55:32.241Z" }, + { url = "https://files.pythonhosted.org/packages/9a/cc/f3f9ac0f24f00a623a48d97dc3814df5c2dc368cfb00031aa4141527a24b/ujson-5.11.0-cp311-cp311-win_arm64.whl", hash = "sha256:7855ccea3f8dad5e66d8445d754fc1cf80265a4272b5f8059ebc7ec29b8d0835", size = 38402, upload-time = "2025-08-20T11:55:33.641Z" }, + { url = "https://files.pythonhosted.org/packages/b9/ef/a9cb1fce38f699123ff012161599fb9f2ff3f8d482b4b18c43a2dc35073f/ujson-5.11.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:7895f0d2d53bd6aea11743bd56e3cb82d729980636cd0ed9b89418bf66591702", size = 55434, upload-time = "2025-08-20T11:55:34.987Z" }, + { url = "https://files.pythonhosted.org/packages/b1/05/dba51a00eb30bd947791b173766cbed3492269c150a7771d2750000c965f/ujson-5.11.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:12b5e7e22a1fe01058000d1b317d3b65cc3daf61bd2ea7a2b76721fe160fa74d", size = 53190, upload-time = "2025-08-20T11:55:36.384Z" }, + { url = "https://files.pythonhosted.org/packages/03/3c/fd11a224f73fbffa299fb9644e425f38b38b30231f7923a088dd513aabb4/ujson-5.11.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:0180a480a7d099082501cad1fe85252e4d4bf926b40960fb3d9e87a3a6fbbc80", size = 57600, upload-time = "2025-08-20T11:55:37.692Z" }, + { url = "https://files.pythonhosted.org/packages/55/b9/405103cae24899df688a3431c776e00528bd4799e7d68820e7ebcf824f92/ujson-5.11.0-cp312-cp312-manylinux_2_24_i686.manylinux_2_28_i686.whl", hash = "sha256:fa79fdb47701942c2132a9dd2297a1a85941d966d8c87bfd9e29b0cf423f26cc", size = 59791, upload-time = "2025-08-20T11:55:38.877Z" }, + { url = "https://files.pythonhosted.org/packages/17/7b/2dcbc2bbfdbf68f2368fb21ab0f6735e872290bb604c75f6e06b81edcb3f/ujson-5.11.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:8254e858437c00f17cb72e7a644fc42dad0ebb21ea981b71df6e84b1072aaa7c", size = 57356, upload-time = "2025-08-20T11:55:40.036Z" }, + { url = "https://files.pythonhosted.org/packages/d1/71/fea2ca18986a366c750767b694430d5ded6b20b6985fddca72f74af38a4c/ujson-5.11.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:1aa8a2ab482f09f6c10fba37112af5f957689a79ea598399c85009f2f29898b5", size = 1036313, upload-time = "2025-08-20T11:55:41.408Z" }, + { url = "https://files.pythonhosted.org/packages/a3/bb/d4220bd7532eac6288d8115db51710fa2d7d271250797b0bfba9f1e755af/ujson-5.11.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:a638425d3c6eed0318df663df44480f4a40dc87cc7c6da44d221418312f6413b", size = 1195782, upload-time = "2025-08-20T11:55:43.357Z" }, + { url = "https://files.pythonhosted.org/packages/80/47/226e540aa38878ce1194454385701d82df538ccb5ff8db2cf1641dde849a/ujson-5.11.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:7e3cff632c1d78023b15f7e3a81c3745cd3f94c044d1e8fa8efbd6b161997bbc", size = 1088817, upload-time = "2025-08-20T11:55:45.262Z" }, + { url = "https://files.pythonhosted.org/packages/7e/81/546042f0b23c9040d61d46ea5ca76f0cc5e0d399180ddfb2ae976ebff5b5/ujson-5.11.0-cp312-cp312-win32.whl", hash = "sha256:be6b0eaf92cae8cdee4d4c9e074bde43ef1c590ed5ba037ea26c9632fb479c88", size = 39757, upload-time = "2025-08-20T11:55:46.522Z" }, + { url = "https://files.pythonhosted.org/packages/44/1b/27c05dc8c9728f44875d74b5bfa948ce91f6c33349232619279f35c6e817/ujson-5.11.0-cp312-cp312-win_amd64.whl", hash = "sha256:b7b136cc6abc7619124fd897ef75f8e63105298b5ca9bdf43ebd0e1fa0ee105f", size = 43859, upload-time = "2025-08-20T11:55:47.987Z" }, + { url = "https://files.pythonhosted.org/packages/22/2d/37b6557c97c3409c202c838aa9c960ca3896843b4295c4b7bb2bbd260664/ujson-5.11.0-cp312-cp312-win_arm64.whl", hash = "sha256:6cd2df62f24c506a0ba322d5e4fe4466d47a9467b57e881ee15a31f7ecf68ff6", size = 38361, upload-time = "2025-08-20T11:55:49.122Z" }, + { url = "https://files.pythonhosted.org/packages/1c/ec/2de9dd371d52c377abc05d2b725645326c4562fc87296a8907c7bcdf2db7/ujson-5.11.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:109f59885041b14ee9569bf0bb3f98579c3fa0652317b355669939e5fc5ede53", size = 55435, upload-time = "2025-08-20T11:55:50.243Z" }, + { url = "https://files.pythonhosted.org/packages/5b/a4/f611f816eac3a581d8a4372f6967c3ed41eddbae4008d1d77f223f1a4e0a/ujson-5.11.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:a31c6b8004438e8c20fc55ac1c0e07dad42941db24176fe9acf2815971f8e752", size = 53193, upload-time = "2025-08-20T11:55:51.373Z" }, + { url = "https://files.pythonhosted.org/packages/e9/c5/c161940967184de96f5cbbbcce45b562a4bf851d60f4c677704b1770136d/ujson-5.11.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:78c684fb21255b9b90320ba7e199780f653e03f6c2528663768965f4126a5b50", size = 57603, upload-time = "2025-08-20T11:55:52.583Z" }, + { url = "https://files.pythonhosted.org/packages/2b/d6/c7b2444238f5b2e2d0e3dab300b9ddc3606e4b1f0e4bed5a48157cebc792/ujson-5.11.0-cp313-cp313-manylinux_2_24_i686.manylinux_2_28_i686.whl", hash = "sha256:4c9f5d6a27d035dd90a146f7761c2272cf7103de5127c9ab9c4cd39ea61e878a", size = 59794, upload-time = "2025-08-20T11:55:53.69Z" }, + { url = "https://files.pythonhosted.org/packages/fe/a3/292551f936d3d02d9af148f53e1bc04306b00a7cf1fcbb86fa0d1c887242/ujson-5.11.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:837da4d27fed5fdc1b630bd18f519744b23a0b5ada1bbde1a36ba463f2900c03", size = 57363, upload-time = "2025-08-20T11:55:54.843Z" }, + { url = "https://files.pythonhosted.org/packages/90/a6/82cfa70448831b1a9e73f882225980b5c689bf539ec6400b31656a60ea46/ujson-5.11.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:787aff4a84da301b7f3bac09bc696e2e5670df829c6f8ecf39916b4e7e24e701", size = 1036311, upload-time = "2025-08-20T11:55:56.197Z" }, + { url = "https://files.pythonhosted.org/packages/84/5c/96e2266be50f21e9b27acaee8ca8f23ea0b85cb998c33d4f53147687839b/ujson-5.11.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:6dd703c3e86dc6f7044c5ac0b3ae079ed96bf297974598116aa5fb7f655c3a60", size = 1195783, upload-time = "2025-08-20T11:55:58.081Z" }, + { url = "https://files.pythonhosted.org/packages/8d/20/78abe3d808cf3bb3e76f71fca46cd208317bf461c905d79f0d26b9df20f1/ujson-5.11.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:3772e4fe6b0c1e025ba3c50841a0ca4786825a4894c8411bf8d3afe3a8061328", size = 1088822, upload-time = "2025-08-20T11:55:59.469Z" }, + { url = "https://files.pythonhosted.org/packages/d8/50/8856e24bec5e2fc7f775d867aeb7a3f137359356200ac44658f1f2c834b2/ujson-5.11.0-cp313-cp313-win32.whl", hash = "sha256:8fa2af7c1459204b7a42e98263b069bd535ea0cd978b4d6982f35af5a04a4241", size = 39753, upload-time = "2025-08-20T11:56:01.345Z" }, + { url = "https://files.pythonhosted.org/packages/5b/d8/1baee0f4179a4d0f5ce086832147b6cc9b7731c24ca08e14a3fdb8d39c32/ujson-5.11.0-cp313-cp313-win_amd64.whl", hash = "sha256:34032aeca4510a7c7102bd5933f59a37f63891f30a0706fb46487ab6f0edf8f0", size = 43866, upload-time = "2025-08-20T11:56:02.552Z" }, + { url = "https://files.pythonhosted.org/packages/a9/8c/6d85ef5be82c6d66adced3ec5ef23353ed710a11f70b0b6a836878396334/ujson-5.11.0-cp313-cp313-win_arm64.whl", hash = "sha256:ce076f2df2e1aa62b685086fbad67f2b1d3048369664b4cdccc50707325401f9", size = 38363, upload-time = "2025-08-20T11:56:03.688Z" }, + { url = "https://files.pythonhosted.org/packages/28/08/4518146f4984d112764b1dfa6fb7bad691c44a401adadaa5e23ccd930053/ujson-5.11.0-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:65724738c73645db88f70ba1f2e6fb678f913281804d5da2fd02c8c5839af302", size = 55462, upload-time = "2025-08-20T11:56:04.873Z" }, + { url = "https://files.pythonhosted.org/packages/29/37/2107b9a62168867a692654d8766b81bd2fd1e1ba13e2ec90555861e02b0c/ujson-5.11.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:29113c003ca33ab71b1b480bde952fbab2a0b6b03a4ee4c3d71687cdcbd1a29d", size = 53246, upload-time = "2025-08-20T11:56:06.054Z" }, + { url = "https://files.pythonhosted.org/packages/9b/f8/25583c70f83788edbe3ca62ce6c1b79eff465d78dec5eb2b2b56b3e98b33/ujson-5.11.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c44c703842024d796b4c78542a6fcd5c3cb948b9fc2a73ee65b9c86a22ee3638", size = 57631, upload-time = "2025-08-20T11:56:07.374Z" }, + { url = "https://files.pythonhosted.org/packages/ed/ca/19b3a632933a09d696f10dc1b0dfa1d692e65ad507d12340116ce4f67967/ujson-5.11.0-cp314-cp314-manylinux_2_24_i686.manylinux_2_28_i686.whl", hash = "sha256:e750c436fb90edf85585f5c62a35b35082502383840962c6983403d1bd96a02c", size = 59877, upload-time = "2025-08-20T11:56:08.534Z" }, + { url = "https://files.pythonhosted.org/packages/55/7a/4572af5324ad4b2bfdd2321e898a527050290147b4ea337a79a0e4e87ec7/ujson-5.11.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:f278b31a7c52eb0947b2db55a5133fbc46b6f0ef49972cd1a80843b72e135aba", size = 57363, upload-time = "2025-08-20T11:56:09.758Z" }, + { url = "https://files.pythonhosted.org/packages/7b/71/a2b8c19cf4e1efe53cf439cdf7198ac60ae15471d2f1040b490c1f0f831f/ujson-5.11.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:ab2cb8351d976e788669c8281465d44d4e94413718af497b4e7342d7b2f78018", size = 1036394, upload-time = "2025-08-20T11:56:11.168Z" }, + { url = "https://files.pythonhosted.org/packages/7a/3e/7b98668cba3bb3735929c31b999b374ebc02c19dfa98dfebaeeb5c8597ca/ujson-5.11.0-cp314-cp314-musllinux_1_2_i686.whl", hash = "sha256:090b4d11b380ae25453100b722d0609d5051ffe98f80ec52853ccf8249dfd840", size = 1195837, upload-time = "2025-08-20T11:56:12.6Z" }, + { url = "https://files.pythonhosted.org/packages/a1/ea/8870f208c20b43571a5c409ebb2fe9b9dba5f494e9e60f9314ac01ea8f78/ujson-5.11.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:80017e870d882d5517d28995b62e4e518a894f932f1e242cbc802a2fd64d365c", size = 1088837, upload-time = "2025-08-20T11:56:14.15Z" }, + { url = "https://files.pythonhosted.org/packages/63/b6/c0e6607e37fa47929920a685a968c6b990a802dec65e9c5181e97845985d/ujson-5.11.0-cp314-cp314-win32.whl", hash = "sha256:1d663b96eb34c93392e9caae19c099ec4133ba21654b081956613327f0e973ac", size = 41022, upload-time = "2025-08-20T11:56:15.509Z" }, + { url = "https://files.pythonhosted.org/packages/4e/56/f4fe86b4c9000affd63e9219e59b222dc48b01c534533093e798bf617a7e/ujson-5.11.0-cp314-cp314-win_amd64.whl", hash = "sha256:849e65b696f0d242833f1df4182096cedc50d414215d1371fca85c541fbff629", size = 45111, upload-time = "2025-08-20T11:56:16.597Z" }, + { url = "https://files.pythonhosted.org/packages/0a/f3/669437f0280308db4783b12a6d88c00730b394327d8334cc7a32ef218e64/ujson-5.11.0-cp314-cp314-win_arm64.whl", hash = "sha256:e73df8648c9470af2b6a6bf5250d4744ad2cf3d774dcf8c6e31f018bdd04d764", size = 39682, upload-time = "2025-08-20T11:56:17.763Z" }, + { url = "https://files.pythonhosted.org/packages/6e/cd/e9809b064a89fe5c4184649adeb13c1b98652db3f8518980b04227358574/ujson-5.11.0-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:de6e88f62796372fba1de973c11138f197d3e0e1d80bcb2b8aae1e826096d433", size = 55759, upload-time = "2025-08-20T11:56:18.882Z" }, + { url = "https://files.pythonhosted.org/packages/1b/be/ae26a6321179ebbb3a2e2685b9007c71bcda41ad7a77bbbe164005e956fc/ujson-5.11.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:49e56ef8066f11b80d620985ae36869a3ff7e4b74c3b6129182ec5d1df0255f3", size = 53634, upload-time = "2025-08-20T11:56:20.012Z" }, + { url = "https://files.pythonhosted.org/packages/ae/e9/fb4a220ee6939db099f4cfeeae796ecb91e7584ad4d445d4ca7f994a9135/ujson-5.11.0-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1a325fd2c3a056cf6c8e023f74a0c478dd282a93141356ae7f16d5309f5ff823", size = 58547, upload-time = "2025-08-20T11:56:21.175Z" }, + { url = "https://files.pythonhosted.org/packages/bd/f8/fc4b952b8f5fea09ea3397a0bd0ad019e474b204cabcb947cead5d4d1ffc/ujson-5.11.0-cp314-cp314t-manylinux_2_24_i686.manylinux_2_28_i686.whl", hash = "sha256:a0af6574fc1d9d53f4ff371f58c96673e6d988ed2b5bf666a6143c782fa007e9", size = 60489, upload-time = "2025-08-20T11:56:22.342Z" }, + { url = "https://files.pythonhosted.org/packages/2e/e5/af5491dfda4f8b77e24cf3da68ee0d1552f99a13e5c622f4cef1380925c3/ujson-5.11.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:10f29e71ecf4ecd93a6610bd8efa8e7b6467454a363c3d6416db65de883eb076", size = 58035, upload-time = "2025-08-20T11:56:23.92Z" }, + { url = "https://files.pythonhosted.org/packages/c4/09/0945349dd41f25cc8c38d78ace49f14c5052c5bbb7257d2f466fa7bdb533/ujson-5.11.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:1a0a9b76a89827a592656fe12e000cf4f12da9692f51a841a4a07aa4c7ecc41c", size = 1037212, upload-time = "2025-08-20T11:56:25.274Z" }, + { url = "https://files.pythonhosted.org/packages/49/44/8e04496acb3d5a1cbee3a54828d9652f67a37523efa3d3b18a347339680a/ujson-5.11.0-cp314-cp314t-musllinux_1_2_i686.whl", hash = "sha256:b16930f6a0753cdc7d637b33b4e8f10d5e351e1fb83872ba6375f1e87be39746", size = 1196500, upload-time = "2025-08-20T11:56:27.517Z" }, + { url = "https://files.pythonhosted.org/packages/64/ae/4bc825860d679a0f208a19af2f39206dfd804ace2403330fdc3170334a2f/ujson-5.11.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:04c41afc195fd477a59db3a84d5b83a871bd648ef371cf8c6f43072d89144eef", size = 1089487, upload-time = "2025-08-20T11:56:29.07Z" }, + { url = "https://files.pythonhosted.org/packages/30/ed/5a057199fb0a5deabe0957073a1c1c1c02a3e99476cd03daee98ea21fa57/ujson-5.11.0-cp314-cp314t-win32.whl", hash = "sha256:aa6d7a5e09217ff93234e050e3e380da62b084e26b9f2e277d2606406a2fc2e5", size = 41859, upload-time = "2025-08-20T11:56:30.495Z" }, + { url = "https://files.pythonhosted.org/packages/aa/03/b19c6176bdf1dc13ed84b886e99677a52764861b6cc023d5e7b6ebda249d/ujson-5.11.0-cp314-cp314t-win_amd64.whl", hash = "sha256:48055e1061c1bb1f79e75b4ac39e821f3f35a9b82de17fce92c3140149009bec", size = 46183, upload-time = "2025-08-20T11:56:31.574Z" }, + { url = "https://files.pythonhosted.org/packages/5d/ca/a0413a3874b2dc1708b8796ca895bf363292f9c70b2e8ca482b7dbc0259d/ujson-5.11.0-cp314-cp314t-win_arm64.whl", hash = "sha256:1194b943e951092db611011cb8dbdb6cf94a3b816ed07906e14d3bc6ce0e90ab", size = 40264, upload-time = "2025-08-20T11:56:32.773Z" }, + { url = "https://files.pythonhosted.org/packages/50/17/30275aa2933430d8c0c4ead951cc4fdb922f575a349aa0b48a6f35449e97/ujson-5.11.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:abae0fb58cc820092a0e9e8ba0051ac4583958495bfa5262a12f628249e3b362", size = 51206, upload-time = "2025-08-20T11:56:48.797Z" }, + { url = "https://files.pythonhosted.org/packages/c3/15/42b3924258eac2551f8f33fa4e35da20a06a53857ccf3d4deb5e5d7c0b6c/ujson-5.11.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:fac6c0649d6b7c3682a0a6e18d3de6857977378dce8d419f57a0b20e3d775b39", size = 48907, upload-time = "2025-08-20T11:56:50.136Z" }, + { url = "https://files.pythonhosted.org/packages/94/7e/0519ff7955aba581d1fe1fb1ca0e452471250455d182f686db5ac9e46119/ujson-5.11.0-pp311-pypy311_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:4b42c115c7c6012506e8168315150d1e3f76e7ba0f4f95616f4ee599a1372bbc", size = 50319, upload-time = "2025-08-20T11:56:51.63Z" }, + { url = "https://files.pythonhosted.org/packages/74/cf/209d90506b7d6c5873f82c5a226d7aad1a1da153364e9ebf61eff0740c33/ujson-5.11.0-pp311-pypy311_pp73-manylinux_2_24_i686.manylinux_2_28_i686.whl", hash = "sha256:86baf341d90b566d61a394869ce77188cc8668f76d7bb2c311d77a00f4bdf844", size = 56584, upload-time = "2025-08-20T11:56:52.89Z" }, + { url = "https://files.pythonhosted.org/packages/e9/97/bd939bb76943cb0e1d2b692d7e68629f51c711ef60425fa5bb6968037ecd/ujson-5.11.0-pp311-pypy311_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:4598bf3965fc1a936bd84034312bcbe00ba87880ef1ee33e33c1e88f2c398b49", size = 51588, upload-time = "2025-08-20T11:56:54.054Z" }, + { url = "https://files.pythonhosted.org/packages/52/5b/8c5e33228f7f83f05719964db59f3f9f276d272dc43752fa3bbf0df53e7b/ujson-5.11.0-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:416389ec19ef5f2013592f791486bef712ebce0cd59299bf9df1ba40bb2f6e04", size = 43835, upload-time = "2025-08-20T11:56:55.237Z" }, ] [[package]] @@ -15974,28 +14860,66 @@ wheels = [ [[package]] name = "urllib3" -version = "2.4.0" +version = "2.5.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/8a/78/16493d9c386d8e60e442a35feac5e00f0913c0f4b7c217c11e8ec2ff53e0/urllib3-2.4.0.tar.gz", hash = "sha256:414bc6535b787febd7567804cc015fee39daab8ad86268f1310a9250697de466", size = 390672, upload-time = "2025-04-10T15:23:39.232Z" } +sdist = { url = "https://files.pythonhosted.org/packages/15/22/9ee70a2574a4f4599c47dd506532914ce044817c7752a79b6a51286319bc/urllib3-2.5.0.tar.gz", hash = "sha256:3fc47733c7e419d4bc3f6b3dc2b4f890bb743906a30d56ba4a5bfa4bbff92760", size = 393185, upload-time = "2025-06-18T14:07:41.644Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/6b/11/cc635220681e93a0183390e26485430ca2c7b5f9d33b15c74c2861cb8091/urllib3-2.4.0-py3-none-any.whl", hash = "sha256:4e16665048960a0900c702d4a66415956a584919c03361cac9f1df5c5dd7e813", size = 128680, upload-time = "2025-04-10T15:23:37.377Z" }, + { url = "https://files.pythonhosted.org/packages/a7/c2/fe1e52489ae3122415c51f387e221dd0773709bad6c6cdaa599e8a2c5185/urllib3-2.5.0-py3-none-any.whl", hash = "sha256:e6b01673c0fa6a13e374b50871808eb3bf7046c4b125b216f6bf1cc604cff0dc", size = 129795, upload-time = "2025-06-18T14:07:40.39Z" }, +] + +[[package]] +name = "uvloop" +version = "0.22.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/06/f0/18d39dbd1971d6d62c4629cc7fa67f74821b0dc1f5a77af43719de7936a7/uvloop-0.22.1.tar.gz", hash = "sha256:6c84bae345b9147082b17371e3dd5d42775bddce91f885499017f4607fdaf39f", size = 2443250, upload-time = "2025-10-16T22:17:19.342Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c7/d5/69900f7883235562f1f50d8184bb7dd84a2fb61e9ec63f3782546fdbd057/uvloop-0.22.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:c60ebcd36f7b240b30788554b6f0782454826a0ed765d8430652621b5de674b9", size = 1352420, upload-time = "2025-10-16T22:16:21.187Z" }, + { url = "https://files.pythonhosted.org/packages/a8/73/c4e271b3bce59724e291465cc936c37758886a4868787da0278b3b56b905/uvloop-0.22.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3b7f102bf3cb1995cfeaee9321105e8f5da76fdb104cdad8986f85461a1b7b77", size = 748677, upload-time = "2025-10-16T22:16:22.558Z" }, + { url = "https://files.pythonhosted.org/packages/86/94/9fb7fad2f824d25f8ecac0d70b94d0d48107ad5ece03769a9c543444f78a/uvloop-0.22.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:53c85520781d84a4b8b230e24a5af5b0778efdb39142b424990ff1ef7c48ba21", size = 3753819, upload-time = "2025-10-16T22:16:23.903Z" }, + { url = "https://files.pythonhosted.org/packages/74/4f/256aca690709e9b008b7108bc85fba619a2bc37c6d80743d18abad16ee09/uvloop-0.22.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:56a2d1fae65fd82197cb8c53c367310b3eabe1bbb9fb5a04d28e3e3520e4f702", size = 3804529, upload-time = "2025-10-16T22:16:25.246Z" }, + { url = "https://files.pythonhosted.org/packages/7f/74/03c05ae4737e871923d21a76fe28b6aad57f5c03b6e6bfcfa5ad616013e4/uvloop-0.22.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:40631b049d5972c6755b06d0bfe8233b1bd9a8a6392d9d1c45c10b6f9e9b2733", size = 3621267, upload-time = "2025-10-16T22:16:26.819Z" }, + { url = "https://files.pythonhosted.org/packages/75/be/f8e590fe61d18b4a92070905497aec4c0e64ae1761498cad09023f3f4b3e/uvloop-0.22.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:535cc37b3a04f6cd2c1ef65fa1d370c9a35b6695df735fcff5427323f2cd5473", size = 3723105, upload-time = "2025-10-16T22:16:28.252Z" }, + { url = "https://files.pythonhosted.org/packages/3d/ff/7f72e8170be527b4977b033239a83a68d5c881cc4775fca255c677f7ac5d/uvloop-0.22.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:fe94b4564e865d968414598eea1a6de60adba0c040ba4ed05ac1300de402cd42", size = 1359936, upload-time = "2025-10-16T22:16:29.436Z" }, + { url = "https://files.pythonhosted.org/packages/c3/c6/e5d433f88fd54d81ef4be58b2b7b0cea13c442454a1db703a1eea0db1a59/uvloop-0.22.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:51eb9bd88391483410daad430813d982010f9c9c89512321f5b60e2cddbdddd6", size = 752769, upload-time = "2025-10-16T22:16:30.493Z" }, + { url = "https://files.pythonhosted.org/packages/24/68/a6ac446820273e71aa762fa21cdcc09861edd3536ff47c5cd3b7afb10eeb/uvloop-0.22.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:700e674a166ca5778255e0e1dc4e9d79ab2acc57b9171b79e65feba7184b3370", size = 4317413, upload-time = "2025-10-16T22:16:31.644Z" }, + { url = "https://files.pythonhosted.org/packages/5f/6f/e62b4dfc7ad6518e7eff2516f680d02a0f6eb62c0c212e152ca708a0085e/uvloop-0.22.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:7b5b1ac819a3f946d3b2ee07f09149578ae76066d70b44df3fa990add49a82e4", size = 4426307, upload-time = "2025-10-16T22:16:32.917Z" }, + { url = "https://files.pythonhosted.org/packages/90/60/97362554ac21e20e81bcef1150cb2a7e4ffdaf8ea1e5b2e8bf7a053caa18/uvloop-0.22.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:e047cc068570bac9866237739607d1313b9253c3051ad84738cbb095be0537b2", size = 4131970, upload-time = "2025-10-16T22:16:34.015Z" }, + { url = "https://files.pythonhosted.org/packages/99/39/6b3f7d234ba3964c428a6e40006340f53ba37993f46ed6e111c6e9141d18/uvloop-0.22.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:512fec6815e2dd45161054592441ef76c830eddaad55c8aa30952e6fe1ed07c0", size = 4296343, upload-time = "2025-10-16T22:16:35.149Z" }, + { url = "https://files.pythonhosted.org/packages/89/8c/182a2a593195bfd39842ea68ebc084e20c850806117213f5a299dfc513d9/uvloop-0.22.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:561577354eb94200d75aca23fbde86ee11be36b00e52a4eaf8f50fb0c86b7705", size = 1358611, upload-time = "2025-10-16T22:16:36.833Z" }, + { url = "https://files.pythonhosted.org/packages/d2/14/e301ee96a6dc95224b6f1162cd3312f6d1217be3907b79173b06785f2fe7/uvloop-0.22.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:1cdf5192ab3e674ca26da2eada35b288d2fa49fdd0f357a19f0e7c4e7d5077c8", size = 751811, upload-time = "2025-10-16T22:16:38.275Z" }, + { url = "https://files.pythonhosted.org/packages/b7/02/654426ce265ac19e2980bfd9ea6590ca96a56f10c76e63801a2df01c0486/uvloop-0.22.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6e2ea3d6190a2968f4a14a23019d3b16870dd2190cd69c8180f7c632d21de68d", size = 4288562, upload-time = "2025-10-16T22:16:39.375Z" }, + { url = "https://files.pythonhosted.org/packages/15/c0/0be24758891ef825f2065cd5db8741aaddabe3e248ee6acc5e8a80f04005/uvloop-0.22.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:0530a5fbad9c9e4ee3f2b33b148c6a64d47bbad8000ea63704fa8260f4cf728e", size = 4366890, upload-time = "2025-10-16T22:16:40.547Z" }, + { url = "https://files.pythonhosted.org/packages/d2/53/8369e5219a5855869bcee5f4d317f6da0e2c669aecf0ef7d371e3d084449/uvloop-0.22.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:bc5ef13bbc10b5335792360623cc378d52d7e62c2de64660616478c32cd0598e", size = 4119472, upload-time = "2025-10-16T22:16:41.694Z" }, + { url = "https://files.pythonhosted.org/packages/f8/ba/d69adbe699b768f6b29a5eec7b47dd610bd17a69de51b251126a801369ea/uvloop-0.22.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:1f38ec5e3f18c8a10ded09742f7fb8de0108796eb673f30ce7762ce1b8550cad", size = 4239051, upload-time = "2025-10-16T22:16:43.224Z" }, + { url = "https://files.pythonhosted.org/packages/90/cd/b62bdeaa429758aee8de8b00ac0dd26593a9de93d302bff3d21439e9791d/uvloop-0.22.1-cp314-cp314-macosx_10_13_universal2.whl", hash = "sha256:3879b88423ec7e97cd4eba2a443aa26ed4e59b45e6b76aabf13fe2f27023a142", size = 1362067, upload-time = "2025-10-16T22:16:44.503Z" }, + { url = "https://files.pythonhosted.org/packages/0d/f8/a132124dfda0777e489ca86732e85e69afcd1ff7686647000050ba670689/uvloop-0.22.1-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:4baa86acedf1d62115c1dc6ad1e17134476688f08c6efd8a2ab076e815665c74", size = 752423, upload-time = "2025-10-16T22:16:45.968Z" }, + { url = "https://files.pythonhosted.org/packages/a3/94/94af78c156f88da4b3a733773ad5ba0b164393e357cc4bd0ab2e2677a7d6/uvloop-0.22.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:297c27d8003520596236bdb2335e6b3f649480bd09e00d1e3a99144b691d2a35", size = 4272437, upload-time = "2025-10-16T22:16:47.451Z" }, + { url = "https://files.pythonhosted.org/packages/b5/35/60249e9fd07b32c665192cec7af29e06c7cd96fa1d08b84f012a56a0b38e/uvloop-0.22.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:c1955d5a1dd43198244d47664a5858082a3239766a839b2102a269aaff7a4e25", size = 4292101, upload-time = "2025-10-16T22:16:49.318Z" }, + { url = "https://files.pythonhosted.org/packages/02/62/67d382dfcb25d0a98ce73c11ed1a6fba5037a1a1d533dcbb7cab033a2636/uvloop-0.22.1-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:b31dc2fccbd42adc73bc4e7cdbae4fc5086cf378979e53ca5d0301838c5682c6", size = 4114158, upload-time = "2025-10-16T22:16:50.517Z" }, + { url = "https://files.pythonhosted.org/packages/f0/7a/f1171b4a882a5d13c8b7576f348acfe6074d72eaf52cccef752f748d4a9f/uvloop-0.22.1-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:93f617675b2d03af4e72a5333ef89450dfaa5321303ede6e67ba9c9d26878079", size = 4177360, upload-time = "2025-10-16T22:16:52.646Z" }, + { url = "https://files.pythonhosted.org/packages/79/7b/b01414f31546caf0919da80ad57cbfe24c56b151d12af68cee1b04922ca8/uvloop-0.22.1-cp314-cp314t-macosx_10_13_universal2.whl", hash = "sha256:37554f70528f60cad66945b885eb01f1bb514f132d92b6eeed1c90fd54ed6289", size = 1454790, upload-time = "2025-10-16T22:16:54.355Z" }, + { url = "https://files.pythonhosted.org/packages/d4/31/0bb232318dd838cad3fa8fb0c68c8b40e1145b32025581975e18b11fab40/uvloop-0.22.1-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:b76324e2dc033a0b2f435f33eb88ff9913c156ef78e153fb210e03c13da746b3", size = 796783, upload-time = "2025-10-16T22:16:55.906Z" }, + { url = "https://files.pythonhosted.org/packages/42/38/c9b09f3271a7a723a5de69f8e237ab8e7803183131bc57c890db0b6bb872/uvloop-0.22.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:badb4d8e58ee08dad957002027830d5c3b06aea446a6a3744483c2b3b745345c", size = 4647548, upload-time = "2025-10-16T22:16:57.008Z" }, + { url = "https://files.pythonhosted.org/packages/c1/37/945b4ca0ac27e3dc4952642d4c900edd030b3da6c9634875af6e13ae80e5/uvloop-0.22.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b91328c72635f6f9e0282e4a57da7470c7350ab1c9f48546c0f2866205349d21", size = 4467065, upload-time = "2025-10-16T22:16:58.206Z" }, + { url = "https://files.pythonhosted.org/packages/97/cc/48d232f33d60e2e2e0b42f4e73455b146b76ebe216487e862700457fbf3c/uvloop-0.22.1-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:daf620c2995d193449393d6c62131b3fbd40a63bf7b307a1527856ace637fe88", size = 4328384, upload-time = "2025-10-16T22:16:59.36Z" }, + { url = "https://files.pythonhosted.org/packages/e4/16/c1fd27e9549f3c4baf1dc9c20c456cd2f822dbf8de9f463824b0c0357e06/uvloop-0.22.1-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:6cde23eeda1a25c75b2e07d39970f3374105d5eafbaab2a4482be82f272d5a5e", size = 4296730, upload-time = "2025-10-16T22:17:00.744Z" }, ] [[package]] name = "vesin" -version = "0.3.7" +version = "0.4.2" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-5-mlipx-grace' or extra == 'extra-5-mlipx-matpes' or extra == 'extra-5-mlipx-mattersim' or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn')" }, - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-5-mlipx-fairchem' or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra != 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'extra-5-mlipx-grace') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-chgnet' and extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra != 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "numpy", version = "2.1.3", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform != 'linux' or extra == 'extra-5-mlipx-fairchem' or extra != 'extra-5-mlipx-grace' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-grace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/73/24/39c98cd0911a170fb94f1077f26a043d4f47df48eecb3eccd1cb11c9e991/vesin-0.3.7.tar.gz", hash = "sha256:52c11ac0ba775c228f06779877cf8641854edab7ea59036093ef5e8447379de0", size = 31534, upload-time = "2025-05-14T15:50:04.371Z" } +sdist = { url = "https://files.pythonhosted.org/packages/1b/ef/cb19340bb52bdf3ae7dfac7eb7e44b6ef9174b331403c2c0130a28e1a34c/vesin-0.4.2.tar.gz", hash = "sha256:46bcfdc4d56490d43a6d8c5882b900b5cf49cff68b6ffb78d442ff85d0104d4f", size = 38223, upload-time = "2025-11-06T21:27:08.062Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/8d/cf/a8be6255d45a1434b6027ea5675ffdea55da1851a4b0f7607be12d38b336/vesin-0.3.7-py3-none-macosx_10_13_x86_64.whl", hash = "sha256:d9ad3fe9c040764d9329925cb560e40770c7b7167ac72096c5a1f6981ecea44f", size = 25929, upload-time = "2025-05-14T15:49:57.411Z" }, - { url = "https://files.pythonhosted.org/packages/0e/69/f37c3922a0040fd5baa22516d1c82b455ea94c9f4c18c71f4a669904a434/vesin-0.3.7-py3-none-macosx_11_0_arm64.whl", hash = "sha256:1678347adb71070dca7130fe45c28b5f0cc3daa7a5461bd87ee1d93d62c9a57a", size = 26042, upload-time = "2025-05-14T15:49:58.743Z" }, - { url = "https://files.pythonhosted.org/packages/7e/42/8a8db8d202403306a51045e85eb28e7d2a1fb4d9f3ca2cde5a139b5e007f/vesin-0.3.7-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7c85dde76427eb7e03a5bde915b8bdca2cfb64a0a82f0334231174a21ced4ab9", size = 54619, upload-time = "2025-05-14T15:50:00.481Z" }, - { url = "https://files.pythonhosted.org/packages/6a/a4/aa108860fc8b563668046df37347c6ed36854981505ac36d78ea2845b33f/vesin-0.3.7-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e41dc2eb5598bb9dc759f6eb88df5e3076698a30465cf496e0ab35dc230820dc", size = 55954, upload-time = "2025-05-14T15:50:01.352Z" }, - { url = "https://files.pythonhosted.org/packages/e6/74/ff7810aa15d7c2d0562472be7dda16188e05a1bdc392ae17dbe37c5bc0b4/vesin-0.3.7-py3-none-win_amd64.whl", hash = "sha256:69e55daff9f8ffc516708bee233c258c9fabdd2a8d6683c5044479b2d38ba577", size = 58173, upload-time = "2025-05-14T15:50:02.323Z" }, + { url = "https://files.pythonhosted.org/packages/60/9c/a6d1640e69f72b22a6c6023fe5d623a739688083bf95b62ddf4e06d53596/vesin-0.4.2-py3-none-macosx_10_13_x86_64.whl", hash = "sha256:0c04157b86ebd2aba4a2e254fc2bba47cf4a7069884b81c45e2fd802e3dd906e", size = 29756, upload-time = "2025-11-06T21:27:02.493Z" }, + { url = "https://files.pythonhosted.org/packages/6a/1d/8a061603f318e965f50c39e46a56ed372a987b48c40011709f2a9219add0/vesin-0.4.2-py3-none-macosx_11_0_arm64.whl", hash = "sha256:22cd5adcedccc766f98f6185bc737e3f43fc21e6aee54b8803ced17b8e7460fb", size = 29915, upload-time = "2025-11-06T21:27:03.417Z" }, + { url = "https://files.pythonhosted.org/packages/af/6e/36b718e21a3f274117bd4a40f6d45c5a8d5a59c575b97d286858929080fc/vesin-0.4.2-py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:16fb90d0f37ff52d35de339be0722165500f7913e216ac98f70303f160417c86", size = 58272, upload-time = "2025-11-06T21:27:04.252Z" }, + { url = "https://files.pythonhosted.org/packages/f6/66/fe9c41fcf5fe73637997e632a488637d8283fe7bed327b147d26e4964a20/vesin-0.4.2-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:72b7c3e26860c5a751fa18676f9487057a1a1f0c50993fedfe1909e33ba608f2", size = 59744, upload-time = "2025-11-06T21:27:05.482Z" }, + { url = "https://files.pythonhosted.org/packages/ca/e3/556a107f6496b3f7f99c60eadf037cde6b37cf6b033f643c38617e95b8df/vesin-0.4.2-py3-none-win_amd64.whl", hash = "sha256:70f57f618c3426c1376fbf7b79e06166e5e530e57cf787e974160a1a53a49d95", size = 35603, upload-time = "2025-11-06T21:27:06.462Z" }, ] [[package]] @@ -16009,16 +14933,16 @@ wheels = [ [[package]] name = "virtualenv" -version = "20.31.2" +version = "20.35.4" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "distlib" }, { name = "filelock" }, { name = "platformdirs" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/56/2c/444f465fb2c65f40c3a104fd0c495184c4f2336d65baf398e3c75d72ea94/virtualenv-20.31.2.tar.gz", hash = "sha256:e10c0a9d02835e592521be48b332b6caee6887f332c111aa79a09b9e79efc2af", size = 6076316, upload-time = "2025-05-08T17:58:23.811Z" } +sdist = { url = "https://files.pythonhosted.org/packages/20/28/e6f1a6f655d620846bd9df527390ecc26b3805a0c5989048c210e22c5ca9/virtualenv-20.35.4.tar.gz", hash = "sha256:643d3914d73d3eeb0c552cbb12d7e82adf0e504dbf86a3182f8771a153a1971c", size = 6028799, upload-time = "2025-10-29T06:57:40.511Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/f3/40/b1c265d4b2b62b58576588510fc4d1fe60a86319c8de99fd8e9fec617d2c/virtualenv-20.31.2-py3-none-any.whl", hash = "sha256:36efd0d9650ee985f0cad72065001e66d49a6f24eb44d98980f630686243cf11", size = 6057982, upload-time = "2025-05-08T17:58:21.15Z" }, + { url = "https://files.pythonhosted.org/packages/79/0c/c05523fa3181fdf0c9c52a6ba91a23fbf3246cc095f26f6516f9c60e6771/virtualenv-20.35.4-py3-none-any.whl", hash = "sha256:c21c9cede36c9753eeade68ba7d523529f228a403463376cf821eaae2b650f1b", size = 6005095, upload-time = "2025-10-29T06:57:37.598Z" }, ] [[package]] @@ -16032,52 +14956,50 @@ wheels = [ [[package]] name = "wandb" -version = "0.20.1" +version = "0.23.1" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "click" }, - { name = "gitpython" }, - { name = "packaging" }, - { name = "platformdirs" }, - { name = "protobuf" }, - { name = "psutil" }, - { name = "pydantic" }, - { name = "pyyaml" }, - { name = "requests" }, - { name = "sentry-sdk" }, - { name = "setproctitle" }, - { name = "typing-extensions" }, + { name = "click", marker = "extra == 'extra-5-mlipx-fairchem' or extra == 'extra-5-mlipx-mattersim' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, + { name = "gitpython", marker = "extra == 'extra-5-mlipx-fairchem' or extra == 'extra-5-mlipx-mattersim' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, + { name = "packaging", marker = "extra == 'extra-5-mlipx-fairchem' or extra == 'extra-5-mlipx-mattersim' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, + { name = "platformdirs", marker = "extra == 'extra-5-mlipx-fairchem' or extra == 'extra-5-mlipx-mattersim' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, + { name = "protobuf", version = "4.25.8", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'extra-5-mlipx-mattersim') or (sys_platform != 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb')" }, + { name = "protobuf", version = "5.29.5", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'linux' and extra == 'extra-5-mlipx-mattersim') or (sys_platform == 'linux' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or extra == 'extra-5-mlipx-fairchem' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-matpes' and extra != 'extra-5-mlipx-mattersim' and extra == 'extra-5-mlipx-orb')" }, + { name = "pydantic", marker = "extra == 'extra-5-mlipx-fairchem' or extra == 'extra-5-mlipx-mattersim' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, + { name = "pyyaml", marker = "extra == 'extra-5-mlipx-fairchem' or extra == 'extra-5-mlipx-mattersim' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, + { name = "requests", marker = "extra == 'extra-5-mlipx-fairchem' or extra == 'extra-5-mlipx-mattersim' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, + { name = "sentry-sdk", marker = "extra == 'extra-5-mlipx-fairchem' or extra == 'extra-5-mlipx-mattersim' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, + { name = "typing-extensions", marker = "extra == 'extra-5-mlipx-fairchem' or extra == 'extra-5-mlipx-mattersim' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-orb' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-mace' and extra != 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-sevenn')" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/62/1f/92be0ca87fb49eb48c16dcf0845a3579a57c4734fec2b95862cf5a0494a0/wandb-0.20.1.tar.gz", hash = "sha256:dbd3fc60dfe7bf83c4de24b206b99b44949fef323f817a783883db72fc5f3bfe", size = 40320062, upload-time = "2025-06-05T00:00:24.483Z" } +sdist = { url = "https://files.pythonhosted.org/packages/0a/cc/770ae3aa7ae44f6792f7ecb81c14c0e38b672deb35235719bb1006519487/wandb-0.23.1.tar.gz", hash = "sha256:f6fb1e3717949b29675a69359de0eeb01e67d3360d581947d5b3f98c273567d6", size = 44298053, upload-time = "2025-12-03T02:25:10.79Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/c9/18/afcc37d0b93dd6f6d0f0c5683b9cfff9416ae1539931f58932a2938c0070/wandb-0.20.1-py3-none-any.whl", hash = "sha256:e6395cabf074247042be1cf0dc6ab0b06aa4c9538c2e1fdc5b507a690ce0cf17", size = 6458872, upload-time = "2025-06-04T23:59:55.441Z" }, - { url = "https://files.pythonhosted.org/packages/e6/b5/70f9e2a3d1380b729ae5853763d938edc50072df357f79bbd19b9aae8e3f/wandb-0.20.1-py3-none-macosx_10_14_x86_64.whl", hash = "sha256:2475a48c693adf677d40da9e1c8ceeaf86d745ffc3b7e3535731279d02f9e845", size = 22517483, upload-time = "2025-06-04T23:59:58.687Z" }, - { url = "https://files.pythonhosted.org/packages/cc/7e/4eb9aeb2fd974d410a8f2eb11b0219536503913a050d46a03206151705c8/wandb-0.20.1-py3-none-macosx_11_0_arm64.whl", hash = "sha256:99cce804c31ec1e0d1e691650a7d51773ed7329c41745d56384fa3655a0e9b2c", size = 22034511, upload-time = "2025-06-05T00:00:01.301Z" }, - { url = "https://files.pythonhosted.org/packages/34/38/1df22c2273e6f7ab0aae4fd032085d6d92ab112f5b261646e7dc5e675cfe/wandb-0.20.1-py3-none-macosx_11_0_x86_64.whl", hash = "sha256:ce3ee412677a1679e04b21e03a91e1e02eb90faf658d682bee86c33cf5f32e09", size = 22720771, upload-time = "2025-06-05T00:00:04.122Z" }, - { url = "https://files.pythonhosted.org/packages/38/96/78fc7a7ea7158d136c84f481423f8736c9346a2387287ec8a6d92019975c/wandb-0.20.1-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5e58ca32c7147161158f09b0fb5f5896876f8569d0d10ae7b64d0510c868ce33", size = 21537453, upload-time = "2025-06-05T00:00:09.474Z" }, - { url = "https://files.pythonhosted.org/packages/88/c9/41b8bdb493e5eda32b502bc1cc49d539335a92cacaf0ef304d7dae0240aa/wandb-0.20.1-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:591506ecbdd396648cc323ba270f3ab4aed3158e1dbfa7636c09f9f7f0253e1c", size = 23161349, upload-time = "2025-06-05T00:00:11.903Z" }, - { url = "https://files.pythonhosted.org/packages/7d/f2/79e783cc50a47d373dfbda862eb5396de8139167e8c6443a16ef0166106f/wandb-0.20.1-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:382508532db09893f81cc926b1d333caa4c8a7db057878899fadf929bbdb3b56", size = 21550624, upload-time = "2025-06-05T00:00:14.28Z" }, - { url = "https://files.pythonhosted.org/packages/26/32/23890a726302e7be28bda9fff47ce9b491af64e339aba4d32b3b8d1a7aaf/wandb-0.20.1-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:29ea495e49393db860f17437fe37e48018da90436ce10949b471780f09293bd7", size = 23237996, upload-time = "2025-06-05T00:00:16.647Z" }, - { url = "https://files.pythonhosted.org/packages/af/94/296e520b086b2a4f10e99bcea3cd5856421b9c004824663501e3789a713b/wandb-0.20.1-py3-none-win32.whl", hash = "sha256:455ee0a652e59ab1e4b546fa1dc833dd3063aa7e64eb8abf95d22f0e9f08c574", size = 22518456, upload-time = "2025-06-05T00:00:19.006Z" }, - { url = "https://files.pythonhosted.org/packages/52/5f/c44ad7b2a062ca5f4da99ae475cea274c38f6ec37bdaca1b1c653ee87274/wandb-0.20.1-py3-none-win_amd64.whl", hash = "sha256:6d2431652f096b7e394c29a99135a6441c02ed3198b963f0b351a5b5e56aeca0", size = 22518459, upload-time = "2025-06-05T00:00:21.374Z" }, + { url = "https://files.pythonhosted.org/packages/12/0b/c3d7053dfd93fd259a63c7818d9c4ac2ba0642ff8dc8db98662ea0cf9cc0/wandb-0.23.1-py3-none-macosx_12_0_arm64.whl", hash = "sha256:358e15471d19b7d73fc464e37371c19d44d39e433252ac24df107aff993a286b", size = 21527293, upload-time = "2025-12-03T02:24:48.011Z" }, + { url = "https://files.pythonhosted.org/packages/ee/9f/059420fa0cb6c511dc5c5a50184122b6aca7b178cb2aa210139e354020da/wandb-0.23.1-py3-none-macosx_12_0_x86_64.whl", hash = "sha256:110304407f4b38f163bdd50ed5c5225365e4df3092f13089c30171a75257b575", size = 22745926, upload-time = "2025-12-03T02:24:50.519Z" }, + { url = "https://files.pythonhosted.org/packages/96/b6/fd465827c14c64d056d30b4c9fcf4dac889a6969dba64489a88fc4ffa333/wandb-0.23.1-py3-none-manylinux_2_28_aarch64.whl", hash = "sha256:6cc984cf85feb2f8ee0451d76bc9fb7f39da94956bb8183e30d26284cf203b65", size = 21212973, upload-time = "2025-12-03T02:24:52.828Z" }, + { url = "https://files.pythonhosted.org/packages/5c/ee/9a8bb9a39cc1f09c3060456cc79565110226dc4099a719af5c63432da21d/wandb-0.23.1-py3-none-manylinux_2_28_x86_64.whl", hash = "sha256:67431cd3168d79fdb803e503bd669c577872ffd5dadfa86de733b3274b93088e", size = 22887885, upload-time = "2025-12-03T02:24:55.281Z" }, + { url = "https://files.pythonhosted.org/packages/6d/4d/8d9e75add529142e037b05819cb3ab1005679272950128d69d218b7e5b2e/wandb-0.23.1-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:07be70c0baa97ea25fadc4a9d0097f7371eef6dcacc5ceb525c82491a31e9244", size = 21250967, upload-time = "2025-12-03T02:24:57.603Z" }, + { url = "https://files.pythonhosted.org/packages/97/72/0b35cddc4e4168f03c759b96d9f671ad18aec8bdfdd84adfea7ecb3f5701/wandb-0.23.1-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:216c95b08e0a2ec6a6008373b056d597573d565e30b43a7a93c35a171485ee26", size = 22988382, upload-time = "2025-12-03T02:25:00.518Z" }, + { url = "https://files.pythonhosted.org/packages/c0/6d/e78093d49d68afb26f5261a70fc7877c34c114af5c2ee0ab3b1af85f5e76/wandb-0.23.1-py3-none-win32.whl", hash = "sha256:fb5cf0f85692f758a5c36ab65fea96a1284126de64e836610f92ddbb26df5ded", size = 22150756, upload-time = "2025-12-03T02:25:02.734Z" }, + { url = "https://files.pythonhosted.org/packages/05/27/4f13454b44c9eceaac3d6e4e4efa2230b6712d613ff9bf7df010eef4fd18/wandb-0.23.1-py3-none-win_amd64.whl", hash = "sha256:21c8c56e436eb707b7d54f705652e030d48e5cfcba24cf953823eb652e30e714", size = 22150760, upload-time = "2025-12-03T02:25:05.106Z" }, + { url = "https://files.pythonhosted.org/packages/30/20/6c091d451e2a07689bfbfaeb7592d488011420e721de170884fedd68c644/wandb-0.23.1-py3-none-win_arm64.whl", hash = "sha256:8aee7f3bb573f2c0acf860f497ca9c684f9b35f2ca51011ba65af3d4592b77c1", size = 20137463, upload-time = "2025-12-03T02:25:08.317Z" }, ] [[package]] name = "wcwidth" -version = "0.2.13" +version = "0.2.14" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/6c/63/53559446a878410fc5a5974feb13d31d78d752eb18aeba59c7fef1af7598/wcwidth-0.2.13.tar.gz", hash = "sha256:72ea0c06399eb286d978fdedb6923a9eb47e1c486ce63e9b4e64fc18303972b5", size = 101301, upload-time = "2024-01-06T02:10:57.829Z" } +sdist = { url = "https://files.pythonhosted.org/packages/24/30/6b0809f4510673dc723187aeaf24c7f5459922d01e2f794277a3dfb90345/wcwidth-0.2.14.tar.gz", hash = "sha256:4d478375d31bc5395a3c55c40ccdf3354688364cd61c4f6adacaa9215d0b3605", size = 102293, upload-time = "2025-09-22T16:29:53.023Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/fd/84/fd2ba7aafacbad3c4201d395674fc6348826569da3c0937e75505ead3528/wcwidth-0.2.13-py2.py3-none-any.whl", hash = "sha256:3da69048e4540d84af32131829ff948f1e022c1c6bdb8d6102117aac784f6859", size = 34166, upload-time = "2024-01-06T02:10:55.763Z" }, + { url = "https://files.pythonhosted.org/packages/af/b5/123f13c975e9f27ab9c0770f514345bd406d0e8d3b7a0723af9d43f710af/wcwidth-0.2.14-py2.py3-none-any.whl", hash = "sha256:a7bb560c8aee30f9957e5f9895805edd20602f2d7f720186dfd906e82b4982e1", size = 37286, upload-time = "2025-09-22T16:29:51.641Z" }, ] [[package]] name = "webcolors" -version = "24.11.1" +version = "25.10.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/7b/29/061ec845fb58521848f3739e466efd8250b4b7b98c1b6c5bf4d40b419b7e/webcolors-24.11.1.tar.gz", hash = "sha256:ecb3d768f32202af770477b8b65f318fa4f566c22948673a977b00d589dd80f6", size = 45064, upload-time = "2024-11-11T07:43:24.224Z" } +sdist = { url = "https://files.pythonhosted.org/packages/1d/7a/eb316761ec35664ea5174709a68bbd3389de60d4a1ebab8808bfc264ed67/webcolors-25.10.0.tar.gz", hash = "sha256:62abae86504f66d0f6364c2a8520de4a0c47b80c03fc3a5f1815fedbef7c19bf", size = 53491, upload-time = "2025-10-31T07:51:03.977Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/60/e8/c0e05e4684d13459f93d312077a9a2efbe04d59c393bc2b8802248c908d4/webcolors-24.11.1-py3-none-any.whl", hash = "sha256:515291393b4cdf0eb19c155749a096f779f7d909f7cceea072791cb9095b92e9", size = 14934, upload-time = "2024-11-11T07:43:22.529Z" }, + { url = "https://files.pythonhosted.org/packages/e2/cc/e097523dd85c9cf5d354f78310927f1656c422bd7b2613b2db3e3f9a0f2c/webcolors-25.10.0-py3-none-any.whl", hash = "sha256:032c727334856fc0b968f63daa252a1ac93d33db2f5267756623c210e57a4f1d", size = 14905, upload-time = "2025-10-31T07:51:01.778Z" }, ] [[package]] @@ -16091,23 +15013,65 @@ wheels = [ [[package]] name = "websocket-client" -version = "1.8.0" +version = "1.9.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/e6/30/fba0d96b4b5fbf5948ed3f4681f7da2f9f64512e1d303f94b4cc174c24a5/websocket_client-1.8.0.tar.gz", hash = "sha256:3239df9f44da632f96012472805d40a23281a991027ce11d2f45a6f24ac4c3da", size = 54648, upload-time = "2024-04-23T22:16:16.976Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/5a/84/44687a29792a70e111c5c477230a72c4b957d88d16141199bf9acb7537a3/websocket_client-1.8.0-py3-none-any.whl", hash = "sha256:17b44cc997f5c498e809b22cdf2d9c7a9e71c02c8cc2b6c56e7c2d1239bfa526", size = 58826, upload-time = "2024-04-23T22:16:14.422Z" }, +sdist = { url = "https://files.pythonhosted.org/packages/2c/41/aa4bf9664e4cda14c3b39865b12251e8e7d239f4cd0e3cc1b6c2ccde25c1/websocket_client-1.9.0.tar.gz", hash = "sha256:9e813624b6eb619999a97dc7958469217c3176312b3a16a4bd1bc7e08a46ec98", size = 70576, upload-time = "2025-10-07T21:16:36.495Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/34/db/b10e48aa8fff7407e67470363eac595018441cf32d5e1001567a7aeba5d2/websocket_client-1.9.0-py3-none-any.whl", hash = "sha256:af248a825037ef591efbf6ed20cc5faa03d3b47b9e5a2230a529eeee1c1fc3ef", size = 82616, upload-time = "2025-10-07T21:16:34.951Z" }, +] + +[[package]] +name = "websockets" +version = "15.0.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/21/e6/26d09fab466b7ca9c7737474c52be4f76a40301b08362eb2dbc19dcc16c1/websockets-15.0.1.tar.gz", hash = "sha256:82544de02076bafba038ce055ee6412d68da13ab47f0c60cab827346de828dee", size = 177016, upload-time = "2025-03-05T20:03:41.606Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9f/32/18fcd5919c293a398db67443acd33fde142f283853076049824fc58e6f75/websockets-15.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:823c248b690b2fd9303ba00c4f66cd5e2d8c3ba4aa968b2779be9532a4dad431", size = 175423, upload-time = "2025-03-05T20:01:56.276Z" }, + { url = "https://files.pythonhosted.org/packages/76/70/ba1ad96b07869275ef42e2ce21f07a5b0148936688c2baf7e4a1f60d5058/websockets-15.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:678999709e68425ae2593acf2e3ebcbcf2e69885a5ee78f9eb80e6e371f1bf57", size = 173082, upload-time = "2025-03-05T20:01:57.563Z" }, + { url = "https://files.pythonhosted.org/packages/86/f2/10b55821dd40eb696ce4704a87d57774696f9451108cff0d2824c97e0f97/websockets-15.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:d50fd1ee42388dcfb2b3676132c78116490976f1300da28eb629272d5d93e905", size = 173330, upload-time = "2025-03-05T20:01:59.063Z" }, + { url = "https://files.pythonhosted.org/packages/a5/90/1c37ae8b8a113d3daf1065222b6af61cc44102da95388ac0018fcb7d93d9/websockets-15.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d99e5546bf73dbad5bf3547174cd6cb8ba7273062a23808ffea025ecb1cf8562", size = 182878, upload-time = "2025-03-05T20:02:00.305Z" }, + { url = "https://files.pythonhosted.org/packages/8e/8d/96e8e288b2a41dffafb78e8904ea7367ee4f891dafc2ab8d87e2124cb3d3/websockets-15.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:66dd88c918e3287efc22409d426c8f729688d89a0c587c88971a0faa2c2f3792", size = 181883, upload-time = "2025-03-05T20:02:03.148Z" }, + { url = "https://files.pythonhosted.org/packages/93/1f/5d6dbf551766308f6f50f8baf8e9860be6182911e8106da7a7f73785f4c4/websockets-15.0.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8dd8327c795b3e3f219760fa603dcae1dcc148172290a8ab15158cf85a953413", size = 182252, upload-time = "2025-03-05T20:02:05.29Z" }, + { url = "https://files.pythonhosted.org/packages/d4/78/2d4fed9123e6620cbf1706c0de8a1632e1a28e7774d94346d7de1bba2ca3/websockets-15.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8fdc51055e6ff4adeb88d58a11042ec9a5eae317a0a53d12c062c8a8865909e8", size = 182521, upload-time = "2025-03-05T20:02:07.458Z" }, + { url = "https://files.pythonhosted.org/packages/e7/3b/66d4c1b444dd1a9823c4a81f50231b921bab54eee2f69e70319b4e21f1ca/websockets-15.0.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:693f0192126df6c2327cce3baa7c06f2a117575e32ab2308f7f8216c29d9e2e3", size = 181958, upload-time = "2025-03-05T20:02:09.842Z" }, + { url = "https://files.pythonhosted.org/packages/08/ff/e9eed2ee5fed6f76fdd6032ca5cd38c57ca9661430bb3d5fb2872dc8703c/websockets-15.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:54479983bd5fb469c38f2f5c7e3a24f9a4e70594cd68cd1fa6b9340dadaff7cf", size = 181918, upload-time = "2025-03-05T20:02:11.968Z" }, + { url = "https://files.pythonhosted.org/packages/d8/75/994634a49b7e12532be6a42103597b71098fd25900f7437d6055ed39930a/websockets-15.0.1-cp311-cp311-win32.whl", hash = "sha256:16b6c1b3e57799b9d38427dda63edcbe4926352c47cf88588c0be4ace18dac85", size = 176388, upload-time = "2025-03-05T20:02:13.32Z" }, + { url = "https://files.pythonhosted.org/packages/98/93/e36c73f78400a65f5e236cd376713c34182e6663f6889cd45a4a04d8f203/websockets-15.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:27ccee0071a0e75d22cb35849b1db43f2ecd3e161041ac1ee9d2352ddf72f065", size = 176828, upload-time = "2025-03-05T20:02:14.585Z" }, + { url = "https://files.pythonhosted.org/packages/51/6b/4545a0d843594f5d0771e86463606a3988b5a09ca5123136f8a76580dd63/websockets-15.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:3e90baa811a5d73f3ca0bcbf32064d663ed81318ab225ee4f427ad4e26e5aff3", size = 175437, upload-time = "2025-03-05T20:02:16.706Z" }, + { url = "https://files.pythonhosted.org/packages/f4/71/809a0f5f6a06522af902e0f2ea2757f71ead94610010cf570ab5c98e99ed/websockets-15.0.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:592f1a9fe869c778694f0aa806ba0374e97648ab57936f092fd9d87f8bc03665", size = 173096, upload-time = "2025-03-05T20:02:18.832Z" }, + { url = "https://files.pythonhosted.org/packages/3d/69/1a681dd6f02180916f116894181eab8b2e25b31e484c5d0eae637ec01f7c/websockets-15.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0701bc3cfcb9164d04a14b149fd74be7347a530ad3bbf15ab2c678a2cd3dd9a2", size = 173332, upload-time = "2025-03-05T20:02:20.187Z" }, + { url = "https://files.pythonhosted.org/packages/a6/02/0073b3952f5bce97eafbb35757f8d0d54812b6174ed8dd952aa08429bcc3/websockets-15.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e8b56bdcdb4505c8078cb6c7157d9811a85790f2f2b3632c7d1462ab5783d215", size = 183152, upload-time = "2025-03-05T20:02:22.286Z" }, + { url = "https://files.pythonhosted.org/packages/74/45/c205c8480eafd114b428284840da0b1be9ffd0e4f87338dc95dc6ff961a1/websockets-15.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0af68c55afbd5f07986df82831c7bff04846928ea8d1fd7f30052638788bc9b5", size = 182096, upload-time = "2025-03-05T20:02:24.368Z" }, + { url = "https://files.pythonhosted.org/packages/14/8f/aa61f528fba38578ec553c145857a181384c72b98156f858ca5c8e82d9d3/websockets-15.0.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:64dee438fed052b52e4f98f76c5790513235efaa1ef7f3f2192c392cd7c91b65", size = 182523, upload-time = "2025-03-05T20:02:25.669Z" }, + { url = "https://files.pythonhosted.org/packages/ec/6d/0267396610add5bc0d0d3e77f546d4cd287200804fe02323797de77dbce9/websockets-15.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d5f6b181bb38171a8ad1d6aa58a67a6aa9d4b38d0f8c5f496b9e42561dfc62fe", size = 182790, upload-time = "2025-03-05T20:02:26.99Z" }, + { url = "https://files.pythonhosted.org/packages/02/05/c68c5adbf679cf610ae2f74a9b871ae84564462955d991178f95a1ddb7dd/websockets-15.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:5d54b09eba2bada6011aea5375542a157637b91029687eb4fdb2dab11059c1b4", size = 182165, upload-time = "2025-03-05T20:02:30.291Z" }, + { url = "https://files.pythonhosted.org/packages/29/93/bb672df7b2f5faac89761cb5fa34f5cec45a4026c383a4b5761c6cea5c16/websockets-15.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:3be571a8b5afed347da347bfcf27ba12b069d9d7f42cb8c7028b5e98bbb12597", size = 182160, upload-time = "2025-03-05T20:02:31.634Z" }, + { url = "https://files.pythonhosted.org/packages/ff/83/de1f7709376dc3ca9b7eeb4b9a07b4526b14876b6d372a4dc62312bebee0/websockets-15.0.1-cp312-cp312-win32.whl", hash = "sha256:c338ffa0520bdb12fbc527265235639fb76e7bc7faafbb93f6ba80d9c06578a9", size = 176395, upload-time = "2025-03-05T20:02:33.017Z" }, + { url = "https://files.pythonhosted.org/packages/7d/71/abf2ebc3bbfa40f391ce1428c7168fb20582d0ff57019b69ea20fa698043/websockets-15.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:fcd5cf9e305d7b8338754470cf69cf81f420459dbae8a3b40cee57417f4614a7", size = 176841, upload-time = "2025-03-05T20:02:34.498Z" }, + { url = "https://files.pythonhosted.org/packages/cb/9f/51f0cf64471a9d2b4d0fc6c534f323b664e7095640c34562f5182e5a7195/websockets-15.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ee443ef070bb3b6ed74514f5efaa37a252af57c90eb33b956d35c8e9c10a1931", size = 175440, upload-time = "2025-03-05T20:02:36.695Z" }, + { url = "https://files.pythonhosted.org/packages/8a/05/aa116ec9943c718905997412c5989f7ed671bc0188ee2ba89520e8765d7b/websockets-15.0.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:5a939de6b7b4e18ca683218320fc67ea886038265fd1ed30173f5ce3f8e85675", size = 173098, upload-time = "2025-03-05T20:02:37.985Z" }, + { url = "https://files.pythonhosted.org/packages/ff/0b/33cef55ff24f2d92924923c99926dcce78e7bd922d649467f0eda8368923/websockets-15.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:746ee8dba912cd6fc889a8147168991d50ed70447bf18bcda7039f7d2e3d9151", size = 173329, upload-time = "2025-03-05T20:02:39.298Z" }, + { url = "https://files.pythonhosted.org/packages/31/1d/063b25dcc01faa8fada1469bdf769de3768b7044eac9d41f734fd7b6ad6d/websockets-15.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:595b6c3969023ecf9041b2936ac3827e4623bfa3ccf007575f04c5a6aa318c22", size = 183111, upload-time = "2025-03-05T20:02:40.595Z" }, + { url = "https://files.pythonhosted.org/packages/93/53/9a87ee494a51bf63e4ec9241c1ccc4f7c2f45fff85d5bde2ff74fcb68b9e/websockets-15.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3c714d2fc58b5ca3e285461a4cc0c9a66bd0e24c5da9911e30158286c9b5be7f", size = 182054, upload-time = "2025-03-05T20:02:41.926Z" }, + { url = "https://files.pythonhosted.org/packages/ff/b2/83a6ddf56cdcbad4e3d841fcc55d6ba7d19aeb89c50f24dd7e859ec0805f/websockets-15.0.1-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0f3c1e2ab208db911594ae5b4f79addeb3501604a165019dd221c0bdcabe4db8", size = 182496, upload-time = "2025-03-05T20:02:43.304Z" }, + { url = "https://files.pythonhosted.org/packages/98/41/e7038944ed0abf34c45aa4635ba28136f06052e08fc2168520bb8b25149f/websockets-15.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:229cf1d3ca6c1804400b0a9790dc66528e08a6a1feec0d5040e8b9eb14422375", size = 182829, upload-time = "2025-03-05T20:02:48.812Z" }, + { url = "https://files.pythonhosted.org/packages/e0/17/de15b6158680c7623c6ef0db361da965ab25d813ae54fcfeae2e5b9ef910/websockets-15.0.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:756c56e867a90fb00177d530dca4b097dd753cde348448a1012ed6c5131f8b7d", size = 182217, upload-time = "2025-03-05T20:02:50.14Z" }, + { url = "https://files.pythonhosted.org/packages/33/2b/1f168cb6041853eef0362fb9554c3824367c5560cbdaad89ac40f8c2edfc/websockets-15.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:558d023b3df0bffe50a04e710bc87742de35060580a293c2a984299ed83bc4e4", size = 182195, upload-time = "2025-03-05T20:02:51.561Z" }, + { url = "https://files.pythonhosted.org/packages/86/eb/20b6cdf273913d0ad05a6a14aed4b9a85591c18a987a3d47f20fa13dcc47/websockets-15.0.1-cp313-cp313-win32.whl", hash = "sha256:ba9e56e8ceeeedb2e080147ba85ffcd5cd0711b89576b83784d8605a7df455fa", size = 176393, upload-time = "2025-03-05T20:02:53.814Z" }, + { url = "https://files.pythonhosted.org/packages/1b/6c/c65773d6cab416a64d191d6ee8a8b1c68a09970ea6909d16965d26bfed1e/websockets-15.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:e09473f095a819042ecb2ab9465aee615bd9c2028e4ef7d933600a8401c79561", size = 176837, upload-time = "2025-03-05T20:02:55.237Z" }, + { url = "https://files.pythonhosted.org/packages/fa/a8/5b41e0da817d64113292ab1f8247140aac61cbf6cfd085d6a0fa77f4984f/websockets-15.0.1-py3-none-any.whl", hash = "sha256:f7a866fbc1e97b5c617ee4116daaa09b722101d4a3c170c787450ba409f9736f", size = 169743, upload-time = "2025-03-05T20:03:39.41Z" }, ] [[package]] name = "werkzeug" -version = "3.1.3" +version = "3.1.4" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "markupsafe" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/9f/69/83029f1f6300c5fb2471d621ab06f6ec6b3324685a2ce0f9777fd4a8b71e/werkzeug-3.1.3.tar.gz", hash = "sha256:60723ce945c19328679790e3282cc758aa4a6040e4bb330f53d30fa546d44746", size = 806925, upload-time = "2024-11-08T15:52:18.093Z" } +sdist = { url = "https://files.pythonhosted.org/packages/45/ea/b0f8eeb287f8df9066e56e831c7824ac6bab645dd6c7a8f4b2d767944f9b/werkzeug-3.1.4.tar.gz", hash = "sha256:cd3cd98b1b92dc3b7b3995038826c68097dcb16f9baa63abe35f20eafeb9fe5e", size = 864687, upload-time = "2025-11-29T02:15:22.841Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/52/24/ab44c871b0f07f491e5d2ad12c9bd7358e527510618cb1b803a88e986db1/werkzeug-3.1.3-py3-none-any.whl", hash = "sha256:54b78bf3716d19a65be4fceccc0d1d7b89e608834989dfae50ea87564639213e", size = 224498, upload-time = "2024-11-08T15:52:16.132Z" }, + { url = "https://files.pythonhosted.org/packages/2f/f9/9e082990c2585c744734f85bec79b5dae5df9c974ffee58fe421652c8e91/werkzeug-3.1.4-py3-none-any.whl", hash = "sha256:2ad50fb9ed09cc3af22c54698351027ace879a0b60a3b5edf5730b2f7d876905", size = 224960, upload-time = "2025-11-29T02:15:21.13Z" }, ] [[package]] @@ -16121,11 +15085,11 @@ wheels = [ [[package]] name = "widgetsnbextension" -version = "4.0.14" +version = "4.0.15" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/41/53/2e0253c5efd69c9656b1843892052a31c36d37ad42812b5da45c62191f7e/widgetsnbextension-4.0.14.tar.gz", hash = "sha256:a3629b04e3edb893212df862038c7232f62973373869db5084aed739b437b5af", size = 1097428, upload-time = "2025-04-10T13:01:25.628Z" } +sdist = { url = "https://files.pythonhosted.org/packages/bd/f4/c67440c7fb409a71b7404b7aefcd7569a9c0d6bd071299bf4198ae7a5d95/widgetsnbextension-4.0.15.tar.gz", hash = "sha256:de8610639996f1567952d763a5a41af8af37f2575a41f9852a38f947eb82a3b9", size = 1097402, upload-time = "2025-11-01T21:15:55.178Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/ca/51/5447876806d1088a0f8f71e16542bf350918128d0a69437df26047c8e46f/widgetsnbextension-4.0.14-py3-none-any.whl", hash = "sha256:4875a9eaf72fbf5079dc372a51a9f268fc38d46f767cbf85c43a36da5cb9b575", size = 2196503, upload-time = "2025-04-10T13:01:23.086Z" }, + { url = "https://files.pythonhosted.org/packages/3f/0e/fa3b193432cfc60c93b42f3be03365f5f909d2b3ea410295cf36df739e31/widgetsnbextension-4.0.15-py3-none-any.whl", hash = "sha256:8156704e4346a571d9ce73b84bee86a29906c9abfd7223b7228a28899ccf3366", size = 2196503, upload-time = "2025-11-01T21:15:53.565Z" }, ] [[package]] @@ -16139,194 +15103,303 @@ wheels = [ [[package]] name = "wrapt" -version = "1.17.2" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/c3/fc/e91cc220803d7bc4db93fb02facd8461c37364151b8494762cc88b0fbcef/wrapt-1.17.2.tar.gz", hash = "sha256:41388e9d4d1522446fe79d3213196bd9e3b301a336965b9e27ca2788ebd122f3", size = 55531, upload-time = "2025-01-14T10:35:45.465Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/5a/d1/1daec934997e8b160040c78d7b31789f19b122110a75eca3d4e8da0049e1/wrapt-1.17.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:3d57c572081fed831ad2d26fd430d565b76aa277ed1d30ff4d40670b1c0dd984", size = 53307, upload-time = "2025-01-14T10:33:13.616Z" }, - { url = "https://files.pythonhosted.org/packages/1b/7b/13369d42651b809389c1a7153baa01d9700430576c81a2f5c5e460df0ed9/wrapt-1.17.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:b5e251054542ae57ac7f3fba5d10bfff615b6c2fb09abeb37d2f1463f841ae22", size = 38486, upload-time = "2025-01-14T10:33:15.947Z" }, - { url = "https://files.pythonhosted.org/packages/62/bf/e0105016f907c30b4bd9e377867c48c34dc9c6c0c104556c9c9126bd89ed/wrapt-1.17.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:80dd7db6a7cb57ffbc279c4394246414ec99537ae81ffd702443335a61dbf3a7", size = 38777, upload-time = "2025-01-14T10:33:17.462Z" }, - { url = "https://files.pythonhosted.org/packages/27/70/0f6e0679845cbf8b165e027d43402a55494779295c4b08414097b258ac87/wrapt-1.17.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0a6e821770cf99cc586d33833b2ff32faebdbe886bd6322395606cf55153246c", size = 83314, upload-time = "2025-01-14T10:33:21.282Z" }, - { url = "https://files.pythonhosted.org/packages/0f/77/0576d841bf84af8579124a93d216f55d6f74374e4445264cb378a6ed33eb/wrapt-1.17.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b60fb58b90c6d63779cb0c0c54eeb38941bae3ecf7a73c764c52c88c2dcb9d72", size = 74947, upload-time = "2025-01-14T10:33:24.414Z" }, - { url = "https://files.pythonhosted.org/packages/90/ec/00759565518f268ed707dcc40f7eeec38637d46b098a1f5143bff488fe97/wrapt-1.17.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b870b5df5b71d8c3359d21be8f0d6c485fa0ebdb6477dda51a1ea54a9b558061", size = 82778, upload-time = "2025-01-14T10:33:26.152Z" }, - { url = "https://files.pythonhosted.org/packages/f8/5a/7cffd26b1c607b0b0c8a9ca9d75757ad7620c9c0a9b4a25d3f8a1480fafc/wrapt-1.17.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:4011d137b9955791f9084749cba9a367c68d50ab8d11d64c50ba1688c9b457f2", size = 81716, upload-time = "2025-01-14T10:33:27.372Z" }, - { url = "https://files.pythonhosted.org/packages/7e/09/dccf68fa98e862df7e6a60a61d43d644b7d095a5fc36dbb591bbd4a1c7b2/wrapt-1.17.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:1473400e5b2733e58b396a04eb7f35f541e1fb976d0c0724d0223dd607e0f74c", size = 74548, upload-time = "2025-01-14T10:33:28.52Z" }, - { url = "https://files.pythonhosted.org/packages/b7/8e/067021fa3c8814952c5e228d916963c1115b983e21393289de15128e867e/wrapt-1.17.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:3cedbfa9c940fdad3e6e941db7138e26ce8aad38ab5fe9dcfadfed9db7a54e62", size = 81334, upload-time = "2025-01-14T10:33:29.643Z" }, - { url = "https://files.pythonhosted.org/packages/4b/0d/9d4b5219ae4393f718699ca1c05f5ebc0c40d076f7e65fd48f5f693294fb/wrapt-1.17.2-cp310-cp310-win32.whl", hash = "sha256:582530701bff1dec6779efa00c516496968edd851fba224fbd86e46cc6b73563", size = 36427, upload-time = "2025-01-14T10:33:30.832Z" }, - { url = "https://files.pythonhosted.org/packages/72/6a/c5a83e8f61aec1e1aeef939807602fb880e5872371e95df2137142f5c58e/wrapt-1.17.2-cp310-cp310-win_amd64.whl", hash = "sha256:58705da316756681ad3c9c73fd15499aa4d8c69f9fd38dc8a35e06c12468582f", size = 38774, upload-time = "2025-01-14T10:33:32.897Z" }, - { url = "https://files.pythonhosted.org/packages/cd/f7/a2aab2cbc7a665efab072344a8949a71081eed1d2f451f7f7d2b966594a2/wrapt-1.17.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ff04ef6eec3eee8a5efef2401495967a916feaa353643defcc03fc74fe213b58", size = 53308, upload-time = "2025-01-14T10:33:33.992Z" }, - { url = "https://files.pythonhosted.org/packages/50/ff/149aba8365fdacef52b31a258c4dc1c57c79759c335eff0b3316a2664a64/wrapt-1.17.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:4db983e7bca53819efdbd64590ee96c9213894272c776966ca6306b73e4affda", size = 38488, upload-time = "2025-01-14T10:33:35.264Z" }, - { url = "https://files.pythonhosted.org/packages/65/46/5a917ce85b5c3b490d35c02bf71aedaa9f2f63f2d15d9949cc4ba56e8ba9/wrapt-1.17.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:9abc77a4ce4c6f2a3168ff34b1da9b0f311a8f1cfd694ec96b0603dff1c79438", size = 38776, upload-time = "2025-01-14T10:33:38.28Z" }, - { url = "https://files.pythonhosted.org/packages/ca/74/336c918d2915a4943501c77566db41d1bd6e9f4dbc317f356b9a244dfe83/wrapt-1.17.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0b929ac182f5ace000d459c59c2c9c33047e20e935f8e39371fa6e3b85d56f4a", size = 83776, upload-time = "2025-01-14T10:33:40.678Z" }, - { url = "https://files.pythonhosted.org/packages/09/99/c0c844a5ccde0fe5761d4305485297f91d67cf2a1a824c5f282e661ec7ff/wrapt-1.17.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f09b286faeff3c750a879d336fb6d8713206fc97af3adc14def0cdd349df6000", size = 75420, upload-time = "2025-01-14T10:33:41.868Z" }, - { url = "https://files.pythonhosted.org/packages/b4/b0/9fc566b0fe08b282c850063591a756057c3247b2362b9286429ec5bf1721/wrapt-1.17.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1a7ed2d9d039bd41e889f6fb9364554052ca21ce823580f6a07c4ec245c1f5d6", size = 83199, upload-time = "2025-01-14T10:33:43.598Z" }, - { url = "https://files.pythonhosted.org/packages/9d/4b/71996e62d543b0a0bd95dda485219856def3347e3e9380cc0d6cf10cfb2f/wrapt-1.17.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:129a150f5c445165ff941fc02ee27df65940fcb8a22a61828b1853c98763a64b", size = 82307, upload-time = "2025-01-14T10:33:48.499Z" }, - { url = "https://files.pythonhosted.org/packages/39/35/0282c0d8789c0dc9bcc738911776c762a701f95cfe113fb8f0b40e45c2b9/wrapt-1.17.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:1fb5699e4464afe5c7e65fa51d4f99e0b2eadcc176e4aa33600a3df7801d6662", size = 75025, upload-time = "2025-01-14T10:33:51.191Z" }, - { url = "https://files.pythonhosted.org/packages/4f/6d/90c9fd2c3c6fee181feecb620d95105370198b6b98a0770cba090441a828/wrapt-1.17.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:9a2bce789a5ea90e51a02dfcc39e31b7f1e662bc3317979aa7e5538e3a034f72", size = 81879, upload-time = "2025-01-14T10:33:52.328Z" }, - { url = "https://files.pythonhosted.org/packages/8f/fa/9fb6e594f2ce03ef03eddbdb5f4f90acb1452221a5351116c7c4708ac865/wrapt-1.17.2-cp311-cp311-win32.whl", hash = "sha256:4afd5814270fdf6380616b321fd31435a462019d834f83c8611a0ce7484c7317", size = 36419, upload-time = "2025-01-14T10:33:53.551Z" }, - { url = "https://files.pythonhosted.org/packages/47/f8/fb1773491a253cbc123c5d5dc15c86041f746ed30416535f2a8df1f4a392/wrapt-1.17.2-cp311-cp311-win_amd64.whl", hash = "sha256:acc130bc0375999da18e3d19e5a86403667ac0c4042a094fefb7eec8ebac7cf3", size = 38773, upload-time = "2025-01-14T10:33:56.323Z" }, - { url = "https://files.pythonhosted.org/packages/a1/bd/ab55f849fd1f9a58ed7ea47f5559ff09741b25f00c191231f9f059c83949/wrapt-1.17.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:d5e2439eecc762cd85e7bd37161d4714aa03a33c5ba884e26c81559817ca0925", size = 53799, upload-time = "2025-01-14T10:33:57.4Z" }, - { url = "https://files.pythonhosted.org/packages/53/18/75ddc64c3f63988f5a1d7e10fb204ffe5762bc663f8023f18ecaf31a332e/wrapt-1.17.2-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:3fc7cb4c1c744f8c05cd5f9438a3caa6ab94ce8344e952d7c45a8ed59dd88392", size = 38821, upload-time = "2025-01-14T10:33:59.334Z" }, - { url = "https://files.pythonhosted.org/packages/48/2a/97928387d6ed1c1ebbfd4efc4133a0633546bec8481a2dd5ec961313a1c7/wrapt-1.17.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:8fdbdb757d5390f7c675e558fd3186d590973244fab0c5fe63d373ade3e99d40", size = 38919, upload-time = "2025-01-14T10:34:04.093Z" }, - { url = "https://files.pythonhosted.org/packages/73/54/3bfe5a1febbbccb7a2f77de47b989c0b85ed3a6a41614b104204a788c20e/wrapt-1.17.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5bb1d0dbf99411f3d871deb6faa9aabb9d4e744d67dcaaa05399af89d847a91d", size = 88721, upload-time = "2025-01-14T10:34:07.163Z" }, - { url = "https://files.pythonhosted.org/packages/25/cb/7262bc1b0300b4b64af50c2720ef958c2c1917525238d661c3e9a2b71b7b/wrapt-1.17.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d18a4865f46b8579d44e4fe1e2bcbc6472ad83d98e22a26c963d46e4c125ef0b", size = 80899, upload-time = "2025-01-14T10:34:09.82Z" }, - { url = "https://files.pythonhosted.org/packages/2a/5a/04cde32b07a7431d4ed0553a76fdb7a61270e78c5fd5a603e190ac389f14/wrapt-1.17.2-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc570b5f14a79734437cb7b0500376b6b791153314986074486e0b0fa8d71d98", size = 89222, upload-time = "2025-01-14T10:34:11.258Z" }, - { url = "https://files.pythonhosted.org/packages/09/28/2e45a4f4771fcfb109e244d5dbe54259e970362a311b67a965555ba65026/wrapt-1.17.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:6d9187b01bebc3875bac9b087948a2bccefe464a7d8f627cf6e48b1bbae30f82", size = 86707, upload-time = "2025-01-14T10:34:12.49Z" }, - { url = "https://files.pythonhosted.org/packages/c6/d2/dcb56bf5f32fcd4bd9aacc77b50a539abdd5b6536872413fd3f428b21bed/wrapt-1.17.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:9e8659775f1adf02eb1e6f109751268e493c73716ca5761f8acb695e52a756ae", size = 79685, upload-time = "2025-01-14T10:34:15.043Z" }, - { url = "https://files.pythonhosted.org/packages/80/4e/eb8b353e36711347893f502ce91c770b0b0929f8f0bed2670a6856e667a9/wrapt-1.17.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:e8b2816ebef96d83657b56306152a93909a83f23994f4b30ad4573b00bd11bb9", size = 87567, upload-time = "2025-01-14T10:34:16.563Z" }, - { url = "https://files.pythonhosted.org/packages/17/27/4fe749a54e7fae6e7146f1c7d914d28ef599dacd4416566c055564080fe2/wrapt-1.17.2-cp312-cp312-win32.whl", hash = "sha256:468090021f391fe0056ad3e807e3d9034e0fd01adcd3bdfba977b6fdf4213ea9", size = 36672, upload-time = "2025-01-14T10:34:17.727Z" }, - { url = "https://files.pythonhosted.org/packages/15/06/1dbf478ea45c03e78a6a8c4be4fdc3c3bddea5c8de8a93bc971415e47f0f/wrapt-1.17.2-cp312-cp312-win_amd64.whl", hash = "sha256:ec89ed91f2fa8e3f52ae53cd3cf640d6feff92ba90d62236a81e4e563ac0e991", size = 38865, upload-time = "2025-01-14T10:34:19.577Z" }, - { url = "https://files.pythonhosted.org/packages/ce/b9/0ffd557a92f3b11d4c5d5e0c5e4ad057bd9eb8586615cdaf901409920b14/wrapt-1.17.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:6ed6ffac43aecfe6d86ec5b74b06a5be33d5bb9243d055141e8cabb12aa08125", size = 53800, upload-time = "2025-01-14T10:34:21.571Z" }, - { url = "https://files.pythonhosted.org/packages/c0/ef/8be90a0b7e73c32e550c73cfb2fa09db62234227ece47b0e80a05073b375/wrapt-1.17.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:35621ae4c00e056adb0009f8e86e28eb4a41a4bfa8f9bfa9fca7d343fe94f998", size = 38824, upload-time = "2025-01-14T10:34:22.999Z" }, - { url = "https://files.pythonhosted.org/packages/36/89/0aae34c10fe524cce30fe5fc433210376bce94cf74d05b0d68344c8ba46e/wrapt-1.17.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:a604bf7a053f8362d27eb9fefd2097f82600b856d5abe996d623babd067b1ab5", size = 38920, upload-time = "2025-01-14T10:34:25.386Z" }, - { url = "https://files.pythonhosted.org/packages/3b/24/11c4510de906d77e0cfb5197f1b1445d4fec42c9a39ea853d482698ac681/wrapt-1.17.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5cbabee4f083b6b4cd282f5b817a867cf0b1028c54d445b7ec7cfe6505057cf8", size = 88690, upload-time = "2025-01-14T10:34:28.058Z" }, - { url = "https://files.pythonhosted.org/packages/71/d7/cfcf842291267bf455b3e266c0c29dcb675b5540ee8b50ba1699abf3af45/wrapt-1.17.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:49703ce2ddc220df165bd2962f8e03b84c89fee2d65e1c24a7defff6f988f4d6", size = 80861, upload-time = "2025-01-14T10:34:29.167Z" }, - { url = "https://files.pythonhosted.org/packages/d5/66/5d973e9f3e7370fd686fb47a9af3319418ed925c27d72ce16b791231576d/wrapt-1.17.2-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8112e52c5822fc4253f3901b676c55ddf288614dc7011634e2719718eaa187dc", size = 89174, upload-time = "2025-01-14T10:34:31.702Z" }, - { url = "https://files.pythonhosted.org/packages/a7/d3/8e17bb70f6ae25dabc1aaf990f86824e4fd98ee9cadf197054e068500d27/wrapt-1.17.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:9fee687dce376205d9a494e9c121e27183b2a3df18037f89d69bd7b35bcf59e2", size = 86721, upload-time = "2025-01-14T10:34:32.91Z" }, - { url = "https://files.pythonhosted.org/packages/6f/54/f170dfb278fe1c30d0ff864513cff526d624ab8de3254b20abb9cffedc24/wrapt-1.17.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:18983c537e04d11cf027fbb60a1e8dfd5190e2b60cc27bc0808e653e7b218d1b", size = 79763, upload-time = "2025-01-14T10:34:34.903Z" }, - { url = "https://files.pythonhosted.org/packages/4a/98/de07243751f1c4a9b15c76019250210dd3486ce098c3d80d5f729cba029c/wrapt-1.17.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:703919b1633412ab54bcf920ab388735832fdcb9f9a00ae49387f0fe67dad504", size = 87585, upload-time = "2025-01-14T10:34:36.13Z" }, - { url = "https://files.pythonhosted.org/packages/f9/f0/13925f4bd6548013038cdeb11ee2cbd4e37c30f8bfd5db9e5a2a370d6e20/wrapt-1.17.2-cp313-cp313-win32.whl", hash = "sha256:abbb9e76177c35d4e8568e58650aa6926040d6a9f6f03435b7a522bf1c487f9a", size = 36676, upload-time = "2025-01-14T10:34:37.962Z" }, - { url = "https://files.pythonhosted.org/packages/bf/ae/743f16ef8c2e3628df3ddfd652b7d4c555d12c84b53f3d8218498f4ade9b/wrapt-1.17.2-cp313-cp313-win_amd64.whl", hash = "sha256:69606d7bb691b50a4240ce6b22ebb319c1cfb164e5f6569835058196e0f3a845", size = 38871, upload-time = "2025-01-14T10:34:39.13Z" }, - { url = "https://files.pythonhosted.org/packages/3d/bc/30f903f891a82d402ffb5fda27ec1d621cc97cb74c16fea0b6141f1d4e87/wrapt-1.17.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:4a721d3c943dae44f8e243b380cb645a709ba5bd35d3ad27bc2ed947e9c68192", size = 56312, upload-time = "2025-01-14T10:34:40.604Z" }, - { url = "https://files.pythonhosted.org/packages/8a/04/c97273eb491b5f1c918857cd26f314b74fc9b29224521f5b83f872253725/wrapt-1.17.2-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:766d8bbefcb9e00c3ac3b000d9acc51f1b399513f44d77dfe0eb026ad7c9a19b", size = 40062, upload-time = "2025-01-14T10:34:45.011Z" }, - { url = "https://files.pythonhosted.org/packages/4e/ca/3b7afa1eae3a9e7fefe499db9b96813f41828b9fdb016ee836c4c379dadb/wrapt-1.17.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:e496a8ce2c256da1eb98bd15803a79bee00fc351f5dfb9ea82594a3f058309e0", size = 40155, upload-time = "2025-01-14T10:34:47.25Z" }, - { url = "https://files.pythonhosted.org/packages/89/be/7c1baed43290775cb9030c774bc53c860db140397047cc49aedaf0a15477/wrapt-1.17.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40d615e4fe22f4ad3528448c193b218e077656ca9ccb22ce2cb20db730f8d306", size = 113471, upload-time = "2025-01-14T10:34:50.934Z" }, - { url = "https://files.pythonhosted.org/packages/32/98/4ed894cf012b6d6aae5f5cc974006bdeb92f0241775addad3f8cd6ab71c8/wrapt-1.17.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a5aaeff38654462bc4b09023918b7f21790efb807f54c000a39d41d69cf552cb", size = 101208, upload-time = "2025-01-14T10:34:52.297Z" }, - { url = "https://files.pythonhosted.org/packages/ea/fd/0c30f2301ca94e655e5e057012e83284ce8c545df7661a78d8bfca2fac7a/wrapt-1.17.2-cp313-cp313t-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9a7d15bbd2bc99e92e39f49a04653062ee6085c0e18b3b7512a4f2fe91f2d681", size = 109339, upload-time = "2025-01-14T10:34:53.489Z" }, - { url = "https://files.pythonhosted.org/packages/75/56/05d000de894c4cfcb84bcd6b1df6214297b8089a7bd324c21a4765e49b14/wrapt-1.17.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:e3890b508a23299083e065f435a492b5435eba6e304a7114d2f919d400888cc6", size = 110232, upload-time = "2025-01-14T10:34:55.327Z" }, - { url = "https://files.pythonhosted.org/packages/53/f8/c3f6b2cf9b9277fb0813418e1503e68414cd036b3b099c823379c9575e6d/wrapt-1.17.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:8c8b293cd65ad716d13d8dd3624e42e5a19cc2a2f1acc74b30c2c13f15cb61a6", size = 100476, upload-time = "2025-01-14T10:34:58.055Z" }, - { url = "https://files.pythonhosted.org/packages/a7/b1/0bb11e29aa5139d90b770ebbfa167267b1fc548d2302c30c8f7572851738/wrapt-1.17.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:4c82b8785d98cdd9fed4cac84d765d234ed3251bd6afe34cb7ac523cb93e8b4f", size = 106377, upload-time = "2025-01-14T10:34:59.3Z" }, - { url = "https://files.pythonhosted.org/packages/6a/e1/0122853035b40b3f333bbb25f1939fc1045e21dd518f7f0922b60c156f7c/wrapt-1.17.2-cp313-cp313t-win32.whl", hash = "sha256:13e6afb7fe71fe7485a4550a8844cc9ffbe263c0f1a1eea569bc7091d4898555", size = 37986, upload-time = "2025-01-14T10:35:00.498Z" }, - { url = "https://files.pythonhosted.org/packages/09/5e/1655cf481e079c1f22d0cabdd4e51733679932718dc23bf2db175f329b76/wrapt-1.17.2-cp313-cp313t-win_amd64.whl", hash = "sha256:eaf675418ed6b3b31c7a989fd007fa7c3be66ce14e5c3b27336383604c9da85c", size = 40750, upload-time = "2025-01-14T10:35:03.378Z" }, - { url = "https://files.pythonhosted.org/packages/2d/82/f56956041adef78f849db6b289b282e72b55ab8045a75abad81898c28d19/wrapt-1.17.2-py3-none-any.whl", hash = "sha256:b18f2d1533a71f069c7f82d524a52599053d4c7166e9dd374ae2136b7f40f7c8", size = 23594, upload-time = "2025-01-14T10:35:44.018Z" }, +version = "1.17.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/95/8f/aeb76c5b46e273670962298c23e7ddde79916cb74db802131d49a85e4b7d/wrapt-1.17.3.tar.gz", hash = "sha256:f66eb08feaa410fe4eebd17f2a2c8e2e46d3476e9f8c783daa8e09e0faa666d0", size = 55547, upload-time = "2025-08-12T05:53:21.714Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/52/db/00e2a219213856074a213503fdac0511203dceefff26e1daa15250cc01a0/wrapt-1.17.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:273a736c4645e63ac582c60a56b0acb529ef07f78e08dc6bfadf6a46b19c0da7", size = 53482, upload-time = "2025-08-12T05:51:45.79Z" }, + { url = "https://files.pythonhosted.org/packages/5e/30/ca3c4a5eba478408572096fe9ce36e6e915994dd26a4e9e98b4f729c06d9/wrapt-1.17.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:5531d911795e3f935a9c23eb1c8c03c211661a5060aab167065896bbf62a5f85", size = 38674, upload-time = "2025-08-12T05:51:34.629Z" }, + { url = "https://files.pythonhosted.org/packages/31/25/3e8cc2c46b5329c5957cec959cb76a10718e1a513309c31399a4dad07eb3/wrapt-1.17.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:0610b46293c59a3adbae3dee552b648b984176f8562ee0dba099a56cfbe4df1f", size = 38959, upload-time = "2025-08-12T05:51:56.074Z" }, + { url = "https://files.pythonhosted.org/packages/5d/8f/a32a99fc03e4b37e31b57cb9cefc65050ea08147a8ce12f288616b05ef54/wrapt-1.17.3-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:b32888aad8b6e68f83a8fdccbf3165f5469702a7544472bdf41f582970ed3311", size = 82376, upload-time = "2025-08-12T05:52:32.134Z" }, + { url = "https://files.pythonhosted.org/packages/31/57/4930cb8d9d70d59c27ee1332a318c20291749b4fba31f113c2f8ac49a72e/wrapt-1.17.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:8cccf4f81371f257440c88faed6b74f1053eef90807b77e31ca057b2db74edb1", size = 83604, upload-time = "2025-08-12T05:52:11.663Z" }, + { url = "https://files.pythonhosted.org/packages/a8/f3/1afd48de81d63dd66e01b263a6fbb86e1b5053b419b9b33d13e1f6d0f7d0/wrapt-1.17.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8a210b158a34164de8bb68b0e7780041a903d7b00c87e906fb69928bf7890d5", size = 82782, upload-time = "2025-08-12T05:52:12.626Z" }, + { url = "https://files.pythonhosted.org/packages/1e/d7/4ad5327612173b144998232f98a85bb24b60c352afb73bc48e3e0d2bdc4e/wrapt-1.17.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:79573c24a46ce11aab457b472efd8d125e5a51da2d1d24387666cd85f54c05b2", size = 82076, upload-time = "2025-08-12T05:52:33.168Z" }, + { url = "https://files.pythonhosted.org/packages/bb/59/e0adfc831674a65694f18ea6dc821f9fcb9ec82c2ce7e3d73a88ba2e8718/wrapt-1.17.3-cp311-cp311-win32.whl", hash = "sha256:c31eebe420a9a5d2887b13000b043ff6ca27c452a9a22fa71f35f118e8d4bf89", size = 36457, upload-time = "2025-08-12T05:53:03.936Z" }, + { url = "https://files.pythonhosted.org/packages/83/88/16b7231ba49861b6f75fc309b11012ede4d6b0a9c90969d9e0db8d991aeb/wrapt-1.17.3-cp311-cp311-win_amd64.whl", hash = "sha256:0b1831115c97f0663cb77aa27d381237e73ad4f721391a9bfb2fe8bc25fa6e77", size = 38745, upload-time = "2025-08-12T05:53:02.885Z" }, + { url = "https://files.pythonhosted.org/packages/9a/1e/c4d4f3398ec073012c51d1c8d87f715f56765444e1a4b11e5180577b7e6e/wrapt-1.17.3-cp311-cp311-win_arm64.whl", hash = "sha256:5a7b3c1ee8265eb4c8f1b7d29943f195c00673f5ab60c192eba2d4a7eae5f46a", size = 36806, upload-time = "2025-08-12T05:52:53.368Z" }, + { url = "https://files.pythonhosted.org/packages/9f/41/cad1aba93e752f1f9268c77270da3c469883d56e2798e7df6240dcb2287b/wrapt-1.17.3-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:ab232e7fdb44cdfbf55fc3afa31bcdb0d8980b9b95c38b6405df2acb672af0e0", size = 53998, upload-time = "2025-08-12T05:51:47.138Z" }, + { url = "https://files.pythonhosted.org/packages/60/f8/096a7cc13097a1869fe44efe68dace40d2a16ecb853141394047f0780b96/wrapt-1.17.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:9baa544e6acc91130e926e8c802a17f3b16fbea0fd441b5a60f5cf2cc5c3deba", size = 39020, upload-time = "2025-08-12T05:51:35.906Z" }, + { url = "https://files.pythonhosted.org/packages/33/df/bdf864b8997aab4febb96a9ae5c124f700a5abd9b5e13d2a3214ec4be705/wrapt-1.17.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:6b538e31eca1a7ea4605e44f81a48aa24c4632a277431a6ed3f328835901f4fd", size = 39098, upload-time = "2025-08-12T05:51:57.474Z" }, + { url = "https://files.pythonhosted.org/packages/9f/81/5d931d78d0eb732b95dc3ddaeeb71c8bb572fb01356e9133916cd729ecdd/wrapt-1.17.3-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:042ec3bb8f319c147b1301f2393bc19dba6e176b7da446853406d041c36c7828", size = 88036, upload-time = "2025-08-12T05:52:34.784Z" }, + { url = "https://files.pythonhosted.org/packages/ca/38/2e1785df03b3d72d34fc6252d91d9d12dc27a5c89caef3335a1bbb8908ca/wrapt-1.17.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:3af60380ba0b7b5aeb329bc4e402acd25bd877e98b3727b0135cb5c2efdaefe9", size = 88156, upload-time = "2025-08-12T05:52:13.599Z" }, + { url = "https://files.pythonhosted.org/packages/b3/8b/48cdb60fe0603e34e05cffda0b2a4adab81fd43718e11111a4b0100fd7c1/wrapt-1.17.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:0b02e424deef65c9f7326d8c19220a2c9040c51dc165cddb732f16198c168396", size = 87102, upload-time = "2025-08-12T05:52:14.56Z" }, + { url = "https://files.pythonhosted.org/packages/3c/51/d81abca783b58f40a154f1b2c56db1d2d9e0d04fa2d4224e357529f57a57/wrapt-1.17.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:74afa28374a3c3a11b3b5e5fca0ae03bef8450d6aa3ab3a1e2c30e3a75d023dc", size = 87732, upload-time = "2025-08-12T05:52:36.165Z" }, + { url = "https://files.pythonhosted.org/packages/9e/b1/43b286ca1392a006d5336412d41663eeef1ad57485f3e52c767376ba7e5a/wrapt-1.17.3-cp312-cp312-win32.whl", hash = "sha256:4da9f45279fff3543c371d5ababc57a0384f70be244de7759c85a7f989cb4ebe", size = 36705, upload-time = "2025-08-12T05:53:07.123Z" }, + { url = "https://files.pythonhosted.org/packages/28/de/49493f962bd3c586ab4b88066e967aa2e0703d6ef2c43aa28cb83bf7b507/wrapt-1.17.3-cp312-cp312-win_amd64.whl", hash = "sha256:e71d5c6ebac14875668a1e90baf2ea0ef5b7ac7918355850c0908ae82bcb297c", size = 38877, upload-time = "2025-08-12T05:53:05.436Z" }, + { url = "https://files.pythonhosted.org/packages/f1/48/0f7102fe9cb1e8a5a77f80d4f0956d62d97034bbe88d33e94699f99d181d/wrapt-1.17.3-cp312-cp312-win_arm64.whl", hash = "sha256:604d076c55e2fdd4c1c03d06dc1a31b95130010517b5019db15365ec4a405fc6", size = 36885, upload-time = "2025-08-12T05:52:54.367Z" }, + { url = "https://files.pythonhosted.org/packages/fc/f6/759ece88472157acb55fc195e5b116e06730f1b651b5b314c66291729193/wrapt-1.17.3-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:a47681378a0439215912ef542c45a783484d4dd82bac412b71e59cf9c0e1cea0", size = 54003, upload-time = "2025-08-12T05:51:48.627Z" }, + { url = "https://files.pythonhosted.org/packages/4f/a9/49940b9dc6d47027dc850c116d79b4155f15c08547d04db0f07121499347/wrapt-1.17.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:54a30837587c6ee3cd1a4d1c2ec5d24e77984d44e2f34547e2323ddb4e22eb77", size = 39025, upload-time = "2025-08-12T05:51:37.156Z" }, + { url = "https://files.pythonhosted.org/packages/45/35/6a08de0f2c96dcdd7fe464d7420ddb9a7655a6561150e5fc4da9356aeaab/wrapt-1.17.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:16ecf15d6af39246fe33e507105d67e4b81d8f8d2c6598ff7e3ca1b8a37213f7", size = 39108, upload-time = "2025-08-12T05:51:58.425Z" }, + { url = "https://files.pythonhosted.org/packages/0c/37/6faf15cfa41bf1f3dba80cd3f5ccc6622dfccb660ab26ed79f0178c7497f/wrapt-1.17.3-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:6fd1ad24dc235e4ab88cda009e19bf347aabb975e44fd5c2fb22a3f6e4141277", size = 88072, upload-time = "2025-08-12T05:52:37.53Z" }, + { url = "https://files.pythonhosted.org/packages/78/f2/efe19ada4a38e4e15b6dff39c3e3f3f73f5decf901f66e6f72fe79623a06/wrapt-1.17.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:0ed61b7c2d49cee3c027372df5809a59d60cf1b6c2f81ee980a091f3afed6a2d", size = 88214, upload-time = "2025-08-12T05:52:15.886Z" }, + { url = "https://files.pythonhosted.org/packages/40/90/ca86701e9de1622b16e09689fc24b76f69b06bb0150990f6f4e8b0eeb576/wrapt-1.17.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:423ed5420ad5f5529db9ce89eac09c8a2f97da18eb1c870237e84c5a5c2d60aa", size = 87105, upload-time = "2025-08-12T05:52:17.914Z" }, + { url = "https://files.pythonhosted.org/packages/fd/e0/d10bd257c9a3e15cbf5523025252cc14d77468e8ed644aafb2d6f54cb95d/wrapt-1.17.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:e01375f275f010fcbf7f643b4279896d04e571889b8a5b3f848423d91bf07050", size = 87766, upload-time = "2025-08-12T05:52:39.243Z" }, + { url = "https://files.pythonhosted.org/packages/e8/cf/7d848740203c7b4b27eb55dbfede11aca974a51c3d894f6cc4b865f42f58/wrapt-1.17.3-cp313-cp313-win32.whl", hash = "sha256:53e5e39ff71b3fc484df8a522c933ea2b7cdd0d5d15ae82e5b23fde87d44cbd8", size = 36711, upload-time = "2025-08-12T05:53:10.074Z" }, + { url = "https://files.pythonhosted.org/packages/57/54/35a84d0a4d23ea675994104e667ceff49227ce473ba6a59ba2c84f250b74/wrapt-1.17.3-cp313-cp313-win_amd64.whl", hash = "sha256:1f0b2f40cf341ee8cc1a97d51ff50dddb9fcc73241b9143ec74b30fc4f44f6cb", size = 38885, upload-time = "2025-08-12T05:53:08.695Z" }, + { url = "https://files.pythonhosted.org/packages/01/77/66e54407c59d7b02a3c4e0af3783168fff8e5d61def52cda8728439d86bc/wrapt-1.17.3-cp313-cp313-win_arm64.whl", hash = "sha256:7425ac3c54430f5fc5e7b6f41d41e704db073309acfc09305816bc6a0b26bb16", size = 36896, upload-time = "2025-08-12T05:52:55.34Z" }, + { url = "https://files.pythonhosted.org/packages/02/a2/cd864b2a14f20d14f4c496fab97802001560f9f41554eef6df201cd7f76c/wrapt-1.17.3-cp314-cp314-macosx_10_13_universal2.whl", hash = "sha256:cf30f6e3c077c8e6a9a7809c94551203c8843e74ba0c960f4a98cd80d4665d39", size = 54132, upload-time = "2025-08-12T05:51:49.864Z" }, + { url = "https://files.pythonhosted.org/packages/d5/46/d011725b0c89e853dc44cceb738a307cde5d240d023d6d40a82d1b4e1182/wrapt-1.17.3-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:e228514a06843cae89621384cfe3a80418f3c04aadf8a3b14e46a7be704e4235", size = 39091, upload-time = "2025-08-12T05:51:38.935Z" }, + { url = "https://files.pythonhosted.org/packages/2e/9e/3ad852d77c35aae7ddebdbc3b6d35ec8013af7d7dddad0ad911f3d891dae/wrapt-1.17.3-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:5ea5eb3c0c071862997d6f3e02af1d055f381b1d25b286b9d6644b79db77657c", size = 39172, upload-time = "2025-08-12T05:51:59.365Z" }, + { url = "https://files.pythonhosted.org/packages/c3/f7/c983d2762bcce2326c317c26a6a1e7016f7eb039c27cdf5c4e30f4160f31/wrapt-1.17.3-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:281262213373b6d5e4bb4353bc36d1ba4084e6d6b5d242863721ef2bf2c2930b", size = 87163, upload-time = "2025-08-12T05:52:40.965Z" }, + { url = "https://files.pythonhosted.org/packages/e4/0f/f673f75d489c7f22d17fe0193e84b41540d962f75fce579cf6873167c29b/wrapt-1.17.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:dc4a8d2b25efb6681ecacad42fca8859f88092d8732b170de6a5dddd80a1c8fa", size = 87963, upload-time = "2025-08-12T05:52:20.326Z" }, + { url = "https://files.pythonhosted.org/packages/df/61/515ad6caca68995da2fac7a6af97faab8f78ebe3bf4f761e1b77efbc47b5/wrapt-1.17.3-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:373342dd05b1d07d752cecbec0c41817231f29f3a89aa8b8843f7b95992ed0c7", size = 86945, upload-time = "2025-08-12T05:52:21.581Z" }, + { url = "https://files.pythonhosted.org/packages/d3/bd/4e70162ce398462a467bc09e768bee112f1412e563620adc353de9055d33/wrapt-1.17.3-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:d40770d7c0fd5cbed9d84b2c3f2e156431a12c9a37dc6284060fb4bec0b7ffd4", size = 86857, upload-time = "2025-08-12T05:52:43.043Z" }, + { url = "https://files.pythonhosted.org/packages/2b/b8/da8560695e9284810b8d3df8a19396a6e40e7518059584a1a394a2b35e0a/wrapt-1.17.3-cp314-cp314-win32.whl", hash = "sha256:fbd3c8319de8e1dc79d346929cd71d523622da527cca14e0c1d257e31c2b8b10", size = 37178, upload-time = "2025-08-12T05:53:12.605Z" }, + { url = "https://files.pythonhosted.org/packages/db/c8/b71eeb192c440d67a5a0449aaee2310a1a1e8eca41676046f99ed2487e9f/wrapt-1.17.3-cp314-cp314-win_amd64.whl", hash = "sha256:e1a4120ae5705f673727d3253de3ed0e016f7cd78dc463db1b31e2463e1f3cf6", size = 39310, upload-time = "2025-08-12T05:53:11.106Z" }, + { url = "https://files.pythonhosted.org/packages/45/20/2cda20fd4865fa40f86f6c46ed37a2a8356a7a2fde0773269311f2af56c7/wrapt-1.17.3-cp314-cp314-win_arm64.whl", hash = "sha256:507553480670cab08a800b9463bdb881b2edeed77dc677b0a5915e6106e91a58", size = 37266, upload-time = "2025-08-12T05:52:56.531Z" }, + { url = "https://files.pythonhosted.org/packages/77/ed/dd5cf21aec36c80443c6f900449260b80e2a65cf963668eaef3b9accce36/wrapt-1.17.3-cp314-cp314t-macosx_10_13_universal2.whl", hash = "sha256:ed7c635ae45cfbc1a7371f708727bf74690daedc49b4dba310590ca0bd28aa8a", size = 56544, upload-time = "2025-08-12T05:51:51.109Z" }, + { url = "https://files.pythonhosted.org/packages/8d/96/450c651cc753877ad100c7949ab4d2e2ecc4d97157e00fa8f45df682456a/wrapt-1.17.3-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:249f88ed15503f6492a71f01442abddd73856a0032ae860de6d75ca62eed8067", size = 40283, upload-time = "2025-08-12T05:51:39.912Z" }, + { url = "https://files.pythonhosted.org/packages/d1/86/2fcad95994d9b572db57632acb6f900695a648c3e063f2cd344b3f5c5a37/wrapt-1.17.3-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:5a03a38adec8066d5a37bea22f2ba6bbf39fcdefbe2d91419ab864c3fb515454", size = 40366, upload-time = "2025-08-12T05:52:00.693Z" }, + { url = "https://files.pythonhosted.org/packages/64/0e/f4472f2fdde2d4617975144311f8800ef73677a159be7fe61fa50997d6c0/wrapt-1.17.3-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:5d4478d72eb61c36e5b446e375bbc49ed002430d17cdec3cecb36993398e1a9e", size = 108571, upload-time = "2025-08-12T05:52:44.521Z" }, + { url = "https://files.pythonhosted.org/packages/cc/01/9b85a99996b0a97c8a17484684f206cbb6ba73c1ce6890ac668bcf3838fb/wrapt-1.17.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:223db574bb38637e8230eb14b185565023ab624474df94d2af18f1cdb625216f", size = 113094, upload-time = "2025-08-12T05:52:22.618Z" }, + { url = "https://files.pythonhosted.org/packages/25/02/78926c1efddcc7b3aa0bc3d6b33a822f7d898059f7cd9ace8c8318e559ef/wrapt-1.17.3-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:e405adefb53a435f01efa7ccdec012c016b5a1d3f35459990afc39b6be4d5056", size = 110659, upload-time = "2025-08-12T05:52:24.057Z" }, + { url = "https://files.pythonhosted.org/packages/dc/ee/c414501ad518ac3e6fe184753632fe5e5ecacdcf0effc23f31c1e4f7bfcf/wrapt-1.17.3-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:88547535b787a6c9ce4086917b6e1d291aa8ed914fdd3a838b3539dc95c12804", size = 106946, upload-time = "2025-08-12T05:52:45.976Z" }, + { url = "https://files.pythonhosted.org/packages/be/44/a1bd64b723d13bb151d6cc91b986146a1952385e0392a78567e12149c7b4/wrapt-1.17.3-cp314-cp314t-win32.whl", hash = "sha256:41b1d2bc74c2cac6f9074df52b2efbef2b30bdfe5f40cb78f8ca22963bc62977", size = 38717, upload-time = "2025-08-12T05:53:15.214Z" }, + { url = "https://files.pythonhosted.org/packages/79/d9/7cfd5a312760ac4dd8bf0184a6ee9e43c33e47f3dadc303032ce012b8fa3/wrapt-1.17.3-cp314-cp314t-win_amd64.whl", hash = "sha256:73d496de46cd2cdbdbcce4ae4bcdb4afb6a11234a1df9c085249d55166b95116", size = 41334, upload-time = "2025-08-12T05:53:14.178Z" }, + { url = "https://files.pythonhosted.org/packages/46/78/10ad9781128ed2f99dbc474f43283b13fea8ba58723e98844367531c18e9/wrapt-1.17.3-cp314-cp314t-win_arm64.whl", hash = "sha256:f38e60678850c42461d4202739f9bf1e3a737c7ad283638251e79cc49effb6b6", size = 38471, upload-time = "2025-08-12T05:52:57.784Z" }, + { url = "https://files.pythonhosted.org/packages/1f/f6/a933bd70f98e9cf3e08167fc5cd7aaaca49147e48411c0bd5ae701bb2194/wrapt-1.17.3-py3-none-any.whl", hash = "sha256:7171ae35d2c33d326ac19dd8facb1e82e5fd04ef8c6c0e394d7af55a55051c22", size = 23591, upload-time = "2025-08-12T05:53:20.674Z" }, ] [[package]] name = "wsproto" -version = "1.2.0" +version = "1.3.2" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "h11" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/c9/4a/44d3c295350d776427904d73c189e10aeae66d7f555bb2feee16d1e4ba5a/wsproto-1.2.0.tar.gz", hash = "sha256:ad565f26ecb92588a3e43bc3d96164de84cd9902482b130d0ddbaa9664a85065", size = 53425, upload-time = "2022-08-23T19:58:21.447Z" } +sdist = { url = "https://files.pythonhosted.org/packages/c7/79/12135bdf8b9c9367b8701c2c19a14c913c120b882d50b014ca0d38083c2c/wsproto-1.3.2.tar.gz", hash = "sha256:b86885dcf294e15204919950f666e06ffc6c7c114ca900b060d6e16293528294", size = 50116, upload-time = "2025-11-20T18:18:01.871Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/78/58/e860788190eba3bcce367f74d29c4675466ce8dddfba85f7827588416f01/wsproto-1.2.0-py3-none-any.whl", hash = "sha256:b9acddd652b585d75b20477888c56642fdade28bdfd3579aa24a4d2c037dd736", size = 24226, upload-time = "2022-08-23T19:58:19.96Z" }, + { url = "https://files.pythonhosted.org/packages/a4/f5/10b68b7b1544245097b2a1b8238f66f2fc6dcaeb24ba5d917f52bd2eed4f/wsproto-1.3.2-py3-none-any.whl", hash = "sha256:61eea322cdf56e8cc904bd3ad7573359a242ba65688716b0710a5eb12beab584", size = 24405, upload-time = "2025-11-20T18:18:00.454Z" }, +] + +[[package]] +name = "xxhash" +version = "3.6.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/02/84/30869e01909fb37a6cc7e18688ee8bf1e42d57e7e0777636bd47524c43c7/xxhash-3.6.0.tar.gz", hash = "sha256:f0162a78b13a0d7617b2845b90c763339d1f1d82bb04a4b07f4ab535cc5e05d6", size = 85160, upload-time = "2025-10-02T14:37:08.097Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/17/d4/cc2f0400e9154df4b9964249da78ebd72f318e35ccc425e9f403c392f22a/xxhash-3.6.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b47bbd8cf2d72797f3c2772eaaac0ded3d3af26481a26d7d7d41dc2d3c46b04a", size = 32844, upload-time = "2025-10-02T14:34:14.037Z" }, + { url = "https://files.pythonhosted.org/packages/5e/ec/1cc11cd13e26ea8bc3cb4af4eaadd8d46d5014aebb67be3f71fb0b68802a/xxhash-3.6.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:2b6821e94346f96db75abaa6e255706fb06ebd530899ed76d32cd99f20dc52fa", size = 30809, upload-time = "2025-10-02T14:34:15.484Z" }, + { url = "https://files.pythonhosted.org/packages/04/5f/19fe357ea348d98ca22f456f75a30ac0916b51c753e1f8b2e0e6fb884cce/xxhash-3.6.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:d0a9751f71a1a65ce3584e9cae4467651c7e70c9d31017fa57574583a4540248", size = 194665, upload-time = "2025-10-02T14:34:16.541Z" }, + { url = "https://files.pythonhosted.org/packages/90/3b/d1f1a8f5442a5fd8beedae110c5af7604dc37349a8e16519c13c19a9a2de/xxhash-3.6.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:8b29ee68625ab37b04c0b40c3fafdf24d2f75ccd778333cfb698f65f6c463f62", size = 213550, upload-time = "2025-10-02T14:34:17.878Z" }, + { url = "https://files.pythonhosted.org/packages/c4/ef/3a9b05eb527457d5db13a135a2ae1a26c80fecd624d20f3e8dcc4cb170f3/xxhash-3.6.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:6812c25fe0d6c36a46ccb002f40f27ac903bf18af9f6dd8f9669cb4d176ab18f", size = 212384, upload-time = "2025-10-02T14:34:19.182Z" }, + { url = "https://files.pythonhosted.org/packages/0f/18/ccc194ee698c6c623acbf0f8c2969811a8a4b6185af5e824cd27b9e4fd3e/xxhash-3.6.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:4ccbff013972390b51a18ef1255ef5ac125c92dc9143b2d1909f59abc765540e", size = 445749, upload-time = "2025-10-02T14:34:20.659Z" }, + { url = "https://files.pythonhosted.org/packages/a5/86/cf2c0321dc3940a7aa73076f4fd677a0fb3e405cb297ead7d864fd90847e/xxhash-3.6.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:297b7fbf86c82c550e12e8fb71968b3f033d27b874276ba3624ea868c11165a8", size = 193880, upload-time = "2025-10-02T14:34:22.431Z" }, + { url = "https://files.pythonhosted.org/packages/82/fb/96213c8560e6f948a1ecc9a7613f8032b19ee45f747f4fca4eb31bb6d6ed/xxhash-3.6.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:dea26ae1eb293db089798d3973a5fc928a18fdd97cc8801226fae705b02b14b0", size = 210912, upload-time = "2025-10-02T14:34:23.937Z" }, + { url = "https://files.pythonhosted.org/packages/40/aa/4395e669b0606a096d6788f40dbdf2b819d6773aa290c19e6e83cbfc312f/xxhash-3.6.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7a0b169aafb98f4284f73635a8e93f0735f9cbde17bd5ec332480484241aaa77", size = 198654, upload-time = "2025-10-02T14:34:25.644Z" }, + { url = "https://files.pythonhosted.org/packages/67/74/b044fcd6b3d89e9b1b665924d85d3f400636c23590226feb1eb09e1176ce/xxhash-3.6.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:08d45aef063a4531b785cd72de4887766d01dc8f362a515693df349fdb825e0c", size = 210867, upload-time = "2025-10-02T14:34:27.203Z" }, + { url = "https://files.pythonhosted.org/packages/bc/fd/3ce73bf753b08cb19daee1eb14aa0d7fe331f8da9c02dd95316ddfe5275e/xxhash-3.6.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:929142361a48ee07f09121fe9e96a84950e8d4df3bb298ca5d88061969f34d7b", size = 414012, upload-time = "2025-10-02T14:34:28.409Z" }, + { url = "https://files.pythonhosted.org/packages/ba/b3/5a4241309217c5c876f156b10778f3ab3af7ba7e3259e6d5f5c7d0129eb2/xxhash-3.6.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:51312c768403d8540487dbbfb557454cfc55589bbde6424456951f7fcd4facb3", size = 191409, upload-time = "2025-10-02T14:34:29.696Z" }, + { url = "https://files.pythonhosted.org/packages/c0/01/99bfbc15fb9abb9a72b088c1d95219fc4782b7d01fc835bd5744d66dd0b8/xxhash-3.6.0-cp311-cp311-win32.whl", hash = "sha256:d1927a69feddc24c987b337ce81ac15c4720955b667fe9b588e02254b80446fd", size = 30574, upload-time = "2025-10-02T14:34:31.028Z" }, + { url = "https://files.pythonhosted.org/packages/65/79/9d24d7f53819fe301b231044ea362ce64e86c74f6e8c8e51320de248b3e5/xxhash-3.6.0-cp311-cp311-win_amd64.whl", hash = "sha256:26734cdc2d4ffe449b41d186bbeac416f704a482ed835d375a5c0cb02bc63fef", size = 31481, upload-time = "2025-10-02T14:34:32.062Z" }, + { url = "https://files.pythonhosted.org/packages/30/4e/15cd0e3e8772071344eab2961ce83f6e485111fed8beb491a3f1ce100270/xxhash-3.6.0-cp311-cp311-win_arm64.whl", hash = "sha256:d72f67ef8bf36e05f5b6c65e8524f265bd61071471cd4cf1d36743ebeeeb06b7", size = 27861, upload-time = "2025-10-02T14:34:33.555Z" }, + { url = "https://files.pythonhosted.org/packages/9a/07/d9412f3d7d462347e4511181dea65e47e0d0e16e26fbee2ea86a2aefb657/xxhash-3.6.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:01362c4331775398e7bb34e3ab403bc9ee9f7c497bc7dee6272114055277dd3c", size = 32744, upload-time = "2025-10-02T14:34:34.622Z" }, + { url = "https://files.pythonhosted.org/packages/79/35/0429ee11d035fc33abe32dca1b2b69e8c18d236547b9a9b72c1929189b9a/xxhash-3.6.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:b7b2df81a23f8cb99656378e72501b2cb41b1827c0f5a86f87d6b06b69f9f204", size = 30816, upload-time = "2025-10-02T14:34:36.043Z" }, + { url = "https://files.pythonhosted.org/packages/b7/f2/57eb99aa0f7d98624c0932c5b9a170e1806406cdbcdb510546634a1359e0/xxhash-3.6.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:dc94790144e66b14f67b10ac8ed75b39ca47536bf8800eb7c24b50271ea0c490", size = 194035, upload-time = "2025-10-02T14:34:37.354Z" }, + { url = "https://files.pythonhosted.org/packages/4c/ed/6224ba353690d73af7a3f1c7cdb1fc1b002e38f783cb991ae338e1eb3d79/xxhash-3.6.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:93f107c673bccf0d592cdba077dedaf52fe7f42dcd7676eba1f6d6f0c3efffd2", size = 212914, upload-time = "2025-10-02T14:34:38.6Z" }, + { url = "https://files.pythonhosted.org/packages/38/86/fb6b6130d8dd6b8942cc17ab4d90e223653a89aa32ad2776f8af7064ed13/xxhash-3.6.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:2aa5ee3444c25b69813663c9f8067dcfaa2e126dc55e8dddf40f4d1c25d7effa", size = 212163, upload-time = "2025-10-02T14:34:39.872Z" }, + { url = "https://files.pythonhosted.org/packages/ee/dc/e84875682b0593e884ad73b2d40767b5790d417bde603cceb6878901d647/xxhash-3.6.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:f7f99123f0e1194fa59cc69ad46dbae2e07becec5df50a0509a808f90a0f03f0", size = 445411, upload-time = "2025-10-02T14:34:41.569Z" }, + { url = "https://files.pythonhosted.org/packages/11/4f/426f91b96701ec2f37bb2b8cec664eff4f658a11f3fa9d94f0a887ea6d2b/xxhash-3.6.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:49e03e6fe2cac4a1bc64952dd250cf0dbc5ef4ebb7b8d96bce82e2de163c82a2", size = 193883, upload-time = "2025-10-02T14:34:43.249Z" }, + { url = "https://files.pythonhosted.org/packages/53/5a/ddbb83eee8e28b778eacfc5a85c969673e4023cdeedcfcef61f36731610b/xxhash-3.6.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:bd17fede52a17a4f9a7bc4472a5867cb0b160deeb431795c0e4abe158bc784e9", size = 210392, upload-time = "2025-10-02T14:34:45.042Z" }, + { url = "https://files.pythonhosted.org/packages/1e/c2/ff69efd07c8c074ccdf0a4f36fcdd3d27363665bcdf4ba399abebe643465/xxhash-3.6.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:6fb5f5476bef678f69db04f2bd1efbed3030d2aba305b0fc1773645f187d6a4e", size = 197898, upload-time = "2025-10-02T14:34:46.302Z" }, + { url = "https://files.pythonhosted.org/packages/58/ca/faa05ac19b3b622c7c9317ac3e23954187516298a091eb02c976d0d3dd45/xxhash-3.6.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:843b52f6d88071f87eba1631b684fcb4b2068cd2180a0224122fe4ef011a9374", size = 210655, upload-time = "2025-10-02T14:34:47.571Z" }, + { url = "https://files.pythonhosted.org/packages/d4/7a/06aa7482345480cc0cb597f5c875b11a82c3953f534394f620b0be2f700c/xxhash-3.6.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:7d14a6cfaf03b1b6f5f9790f76880601ccc7896aff7ab9cd8978a939c1eb7e0d", size = 414001, upload-time = "2025-10-02T14:34:49.273Z" }, + { url = "https://files.pythonhosted.org/packages/23/07/63ffb386cd47029aa2916b3d2f454e6cc5b9f5c5ada3790377d5430084e7/xxhash-3.6.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:418daf3db71e1413cfe211c2f9a528456936645c17f46b5204705581a45390ae", size = 191431, upload-time = "2025-10-02T14:34:50.798Z" }, + { url = "https://files.pythonhosted.org/packages/0f/93/14fde614cadb4ddf5e7cebf8918b7e8fac5ae7861c1875964f17e678205c/xxhash-3.6.0-cp312-cp312-win32.whl", hash = "sha256:50fc255f39428a27299c20e280d6193d8b63b8ef8028995323bf834a026b4fbb", size = 30617, upload-time = "2025-10-02T14:34:51.954Z" }, + { url = "https://files.pythonhosted.org/packages/13/5d/0d125536cbe7565a83d06e43783389ecae0c0f2ed037b48ede185de477c0/xxhash-3.6.0-cp312-cp312-win_amd64.whl", hash = "sha256:c0f2ab8c715630565ab8991b536ecded9416d615538be8ecddce43ccf26cbc7c", size = 31534, upload-time = "2025-10-02T14:34:53.276Z" }, + { url = "https://files.pythonhosted.org/packages/54/85/6ec269b0952ec7e36ba019125982cf11d91256a778c7c3f98a4c5043d283/xxhash-3.6.0-cp312-cp312-win_arm64.whl", hash = "sha256:eae5c13f3bc455a3bbb68bdc513912dc7356de7e2280363ea235f71f54064829", size = 27876, upload-time = "2025-10-02T14:34:54.371Z" }, + { url = "https://files.pythonhosted.org/packages/33/76/35d05267ac82f53ae9b0e554da7c5e281ee61f3cad44c743f0fcd354f211/xxhash-3.6.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:599e64ba7f67472481ceb6ee80fa3bd828fd61ba59fb11475572cc5ee52b89ec", size = 32738, upload-time = "2025-10-02T14:34:55.839Z" }, + { url = "https://files.pythonhosted.org/packages/31/a8/3fbce1cd96534a95e35d5120637bf29b0d7f5d8fa2f6374e31b4156dd419/xxhash-3.6.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:7d8b8aaa30fca4f16f0c84a5c8d7ddee0e25250ec2796c973775373257dde8f1", size = 30821, upload-time = "2025-10-02T14:34:57.219Z" }, + { url = "https://files.pythonhosted.org/packages/0c/ea/d387530ca7ecfa183cb358027f1833297c6ac6098223fd14f9782cd0015c/xxhash-3.6.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:d597acf8506d6e7101a4a44a5e428977a51c0fadbbfd3c39650cca9253f6e5a6", size = 194127, upload-time = "2025-10-02T14:34:59.21Z" }, + { url = "https://files.pythonhosted.org/packages/ba/0c/71435dcb99874b09a43b8d7c54071e600a7481e42b3e3ce1eb5226a5711a/xxhash-3.6.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:858dc935963a33bc33490128edc1c12b0c14d9c7ebaa4e387a7869ecc4f3e263", size = 212975, upload-time = "2025-10-02T14:35:00.816Z" }, + { url = "https://files.pythonhosted.org/packages/84/7a/c2b3d071e4bb4a90b7057228a99b10d51744878f4a8a6dd643c8bd897620/xxhash-3.6.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:ba284920194615cb8edf73bf52236ce2e1664ccd4a38fdb543506413529cc546", size = 212241, upload-time = "2025-10-02T14:35:02.207Z" }, + { url = "https://files.pythonhosted.org/packages/81/5f/640b6eac0128e215f177df99eadcd0f1b7c42c274ab6a394a05059694c5a/xxhash-3.6.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:4b54219177f6c6674d5378bd862c6aedf64725f70dd29c472eaae154df1a2e89", size = 445471, upload-time = "2025-10-02T14:35:03.61Z" }, + { url = "https://files.pythonhosted.org/packages/5e/1e/3c3d3ef071b051cc3abbe3721ffb8365033a172613c04af2da89d5548a87/xxhash-3.6.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:42c36dd7dbad2f5238950c377fcbf6811b1cdb1c444fab447960030cea60504d", size = 193936, upload-time = "2025-10-02T14:35:05.013Z" }, + { url = "https://files.pythonhosted.org/packages/2c/bd/4a5f68381939219abfe1c22a9e3a5854a4f6f6f3c4983a87d255f21f2e5d/xxhash-3.6.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:f22927652cba98c44639ffdc7aaf35828dccf679b10b31c4ad72a5b530a18eb7", size = 210440, upload-time = "2025-10-02T14:35:06.239Z" }, + { url = "https://files.pythonhosted.org/packages/eb/37/b80fe3d5cfb9faff01a02121a0f4d565eb7237e9e5fc66e73017e74dcd36/xxhash-3.6.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:b45fad44d9c5c119e9c6fbf2e1c656a46dc68e280275007bbfd3d572b21426db", size = 197990, upload-time = "2025-10-02T14:35:07.735Z" }, + { url = "https://files.pythonhosted.org/packages/d7/fd/2c0a00c97b9e18f72e1f240ad4e8f8a90fd9d408289ba9c7c495ed7dc05c/xxhash-3.6.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:6f2580ffab1a8b68ef2b901cde7e55fa8da5e4be0977c68f78fc80f3c143de42", size = 210689, upload-time = "2025-10-02T14:35:09.438Z" }, + { url = "https://files.pythonhosted.org/packages/93/86/5dd8076a926b9a95db3206aba20d89a7fc14dd5aac16e5c4de4b56033140/xxhash-3.6.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:40c391dd3cd041ebc3ffe6f2c862f402e306eb571422e0aa918d8070ba31da11", size = 414068, upload-time = "2025-10-02T14:35:11.162Z" }, + { url = "https://files.pythonhosted.org/packages/af/3c/0bb129170ee8f3650f08e993baee550a09593462a5cddd8e44d0011102b1/xxhash-3.6.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:f205badabde7aafd1a31e8ca2a3e5a763107a71c397c4481d6a804eb5063d8bd", size = 191495, upload-time = "2025-10-02T14:35:12.971Z" }, + { url = "https://files.pythonhosted.org/packages/e9/3a/6797e0114c21d1725e2577508e24006fd7ff1d8c0c502d3b52e45c1771d8/xxhash-3.6.0-cp313-cp313-win32.whl", hash = "sha256:2577b276e060b73b73a53042ea5bd5203d3e6347ce0d09f98500f418a9fcf799", size = 30620, upload-time = "2025-10-02T14:35:14.129Z" }, + { url = "https://files.pythonhosted.org/packages/86/15/9bc32671e9a38b413a76d24722a2bf8784a132c043063a8f5152d390b0f9/xxhash-3.6.0-cp313-cp313-win_amd64.whl", hash = "sha256:757320d45d2fbcce8f30c42a6b2f47862967aea7bf458b9625b4bbe7ee390392", size = 31542, upload-time = "2025-10-02T14:35:15.21Z" }, + { url = "https://files.pythonhosted.org/packages/39/c5/cc01e4f6188656e56112d6a8e0dfe298a16934b8c47a247236549a3f7695/xxhash-3.6.0-cp313-cp313-win_arm64.whl", hash = "sha256:457b8f85dec5825eed7b69c11ae86834a018b8e3df5e77783c999663da2f96d6", size = 27880, upload-time = "2025-10-02T14:35:16.315Z" }, + { url = "https://files.pythonhosted.org/packages/f3/30/25e5321c8732759e930c555176d37e24ab84365482d257c3b16362235212/xxhash-3.6.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:a42e633d75cdad6d625434e3468126c73f13f7584545a9cf34e883aa1710e702", size = 32956, upload-time = "2025-10-02T14:35:17.413Z" }, + { url = "https://files.pythonhosted.org/packages/9f/3c/0573299560d7d9f8ab1838f1efc021a280b5ae5ae2e849034ef3dee18810/xxhash-3.6.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:568a6d743219e717b07b4e03b0a828ce593833e498c3b64752e0f5df6bfe84db", size = 31072, upload-time = "2025-10-02T14:35:18.844Z" }, + { url = "https://files.pythonhosted.org/packages/7a/1c/52d83a06e417cd9d4137722693424885cc9878249beb3a7c829e74bf7ce9/xxhash-3.6.0-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:bec91b562d8012dae276af8025a55811b875baace6af510412a5e58e3121bc54", size = 196409, upload-time = "2025-10-02T14:35:20.31Z" }, + { url = "https://files.pythonhosted.org/packages/e3/8e/c6d158d12a79bbd0b878f8355432075fc82759e356ab5a111463422a239b/xxhash-3.6.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:78e7f2f4c521c30ad5e786fdd6bae89d47a32672a80195467b5de0480aa97b1f", size = 215736, upload-time = "2025-10-02T14:35:21.616Z" }, + { url = "https://files.pythonhosted.org/packages/bc/68/c4c80614716345d55071a396cf03d06e34b5f4917a467faf43083c995155/xxhash-3.6.0-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:3ed0df1b11a79856df5ffcab572cbd6b9627034c1c748c5566fa79df9048a7c5", size = 214833, upload-time = "2025-10-02T14:35:23.32Z" }, + { url = "https://files.pythonhosted.org/packages/7e/e9/ae27c8ffec8b953efa84c7c4a6c6802c263d587b9fc0d6e7cea64e08c3af/xxhash-3.6.0-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:0e4edbfc7d420925b0dd5e792478ed393d6e75ff8fc219a6546fb446b6a417b1", size = 448348, upload-time = "2025-10-02T14:35:25.111Z" }, + { url = "https://files.pythonhosted.org/packages/d7/6b/33e21afb1b5b3f46b74b6bd1913639066af218d704cc0941404ca717fc57/xxhash-3.6.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:fba27a198363a7ef87f8c0f6b171ec36b674fe9053742c58dd7e3201c1ab30ee", size = 196070, upload-time = "2025-10-02T14:35:26.586Z" }, + { url = "https://files.pythonhosted.org/packages/96/b6/fcabd337bc5fa624e7203aa0fa7d0c49eed22f72e93229431752bddc83d9/xxhash-3.6.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:794fe9145fe60191c6532fa95063765529770edcdd67b3d537793e8004cabbfd", size = 212907, upload-time = "2025-10-02T14:35:28.087Z" }, + { url = "https://files.pythonhosted.org/packages/4b/d3/9ee6160e644d660fcf176c5825e61411c7f62648728f69c79ba237250143/xxhash-3.6.0-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:6105ef7e62b5ac73a837778efc331a591d8442f8ef5c7e102376506cb4ae2729", size = 200839, upload-time = "2025-10-02T14:35:29.857Z" }, + { url = "https://files.pythonhosted.org/packages/0d/98/e8de5baa5109394baf5118f5e72ab21a86387c4f89b0e77ef3e2f6b0327b/xxhash-3.6.0-cp313-cp313t-musllinux_1_2_ppc64le.whl", hash = "sha256:f01375c0e55395b814a679b3eea205db7919ac2af213f4a6682e01220e5fe292", size = 213304, upload-time = "2025-10-02T14:35:31.222Z" }, + { url = "https://files.pythonhosted.org/packages/7b/1d/71056535dec5c3177eeb53e38e3d367dd1d16e024e63b1cee208d572a033/xxhash-3.6.0-cp313-cp313t-musllinux_1_2_s390x.whl", hash = "sha256:d706dca2d24d834a4661619dcacf51a75c16d65985718d6a7d73c1eeeb903ddf", size = 416930, upload-time = "2025-10-02T14:35:32.517Z" }, + { url = "https://files.pythonhosted.org/packages/dc/6c/5cbde9de2cd967c322e651c65c543700b19e7ae3e0aae8ece3469bf9683d/xxhash-3.6.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:5f059d9faeacd49c0215d66f4056e1326c80503f51a1532ca336a385edadd033", size = 193787, upload-time = "2025-10-02T14:35:33.827Z" }, + { url = "https://files.pythonhosted.org/packages/19/fa/0172e350361d61febcea941b0cc541d6e6c8d65d153e85f850a7b256ff8a/xxhash-3.6.0-cp313-cp313t-win32.whl", hash = "sha256:1244460adc3a9be84731d72b8e80625788e5815b68da3da8b83f78115a40a7ec", size = 30916, upload-time = "2025-10-02T14:35:35.107Z" }, + { url = "https://files.pythonhosted.org/packages/ad/e6/e8cf858a2b19d6d45820f072eff1bea413910592ff17157cabc5f1227a16/xxhash-3.6.0-cp313-cp313t-win_amd64.whl", hash = "sha256:b1e420ef35c503869c4064f4a2f2b08ad6431ab7b229a05cce39d74268bca6b8", size = 31799, upload-time = "2025-10-02T14:35:36.165Z" }, + { url = "https://files.pythonhosted.org/packages/56/15/064b197e855bfb7b343210e82490ae672f8bc7cdf3ddb02e92f64304ee8a/xxhash-3.6.0-cp313-cp313t-win_arm64.whl", hash = "sha256:ec44b73a4220623235f67a996c862049f375df3b1052d9899f40a6382c32d746", size = 28044, upload-time = "2025-10-02T14:35:37.195Z" }, + { url = "https://files.pythonhosted.org/packages/7e/5e/0138bc4484ea9b897864d59fce9be9086030825bc778b76cb5a33a906d37/xxhash-3.6.0-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:a40a3d35b204b7cc7643cbcf8c9976d818cb47befcfac8bbefec8038ac363f3e", size = 32754, upload-time = "2025-10-02T14:35:38.245Z" }, + { url = "https://files.pythonhosted.org/packages/18/d7/5dac2eb2ec75fd771957a13e5dda560efb2176d5203f39502a5fc571f899/xxhash-3.6.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:a54844be970d3fc22630b32d515e79a90d0a3ddb2644d8d7402e3c4c8da61405", size = 30846, upload-time = "2025-10-02T14:35:39.6Z" }, + { url = "https://files.pythonhosted.org/packages/fe/71/8bc5be2bb00deb5682e92e8da955ebe5fa982da13a69da5a40a4c8db12fb/xxhash-3.6.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:016e9190af8f0a4e3741343777710e3d5717427f175adfdc3e72508f59e2a7f3", size = 194343, upload-time = "2025-10-02T14:35:40.69Z" }, + { url = "https://files.pythonhosted.org/packages/e7/3b/52badfb2aecec2c377ddf1ae75f55db3ba2d321c5e164f14461c90837ef3/xxhash-3.6.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:4f6f72232f849eb9d0141e2ebe2677ece15adfd0fa599bc058aad83c714bb2c6", size = 213074, upload-time = "2025-10-02T14:35:42.29Z" }, + { url = "https://files.pythonhosted.org/packages/a2/2b/ae46b4e9b92e537fa30d03dbc19cdae57ed407e9c26d163895e968e3de85/xxhash-3.6.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:63275a8aba7865e44b1813d2177e0f5ea7eadad3dd063a21f7cf9afdc7054063", size = 212388, upload-time = "2025-10-02T14:35:43.929Z" }, + { url = "https://files.pythonhosted.org/packages/f5/80/49f88d3afc724b4ac7fbd664c8452d6db51b49915be48c6982659e0e7942/xxhash-3.6.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:3cd01fa2aa00d8b017c97eb46b9a794fbdca53fc14f845f5a328c71254b0abb7", size = 445614, upload-time = "2025-10-02T14:35:45.216Z" }, + { url = "https://files.pythonhosted.org/packages/ed/ba/603ce3961e339413543d8cd44f21f2c80e2a7c5cfe692a7b1f2cccf58f3c/xxhash-3.6.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:0226aa89035b62b6a86d3c68df4d7c1f47a342b8683da2b60cedcddb46c4d95b", size = 194024, upload-time = "2025-10-02T14:35:46.959Z" }, + { url = "https://files.pythonhosted.org/packages/78/d1/8e225ff7113bf81545cfdcd79eef124a7b7064a0bba53605ff39590b95c2/xxhash-3.6.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:c6e193e9f56e4ca4923c61238cdaced324f0feac782544eb4c6d55ad5cc99ddd", size = 210541, upload-time = "2025-10-02T14:35:48.301Z" }, + { url = "https://files.pythonhosted.org/packages/6f/58/0f89d149f0bad89def1a8dd38feb50ccdeb643d9797ec84707091d4cb494/xxhash-3.6.0-cp314-cp314-musllinux_1_2_i686.whl", hash = "sha256:9176dcaddf4ca963d4deb93866d739a343c01c969231dbe21680e13a5d1a5bf0", size = 198305, upload-time = "2025-10-02T14:35:49.584Z" }, + { url = "https://files.pythonhosted.org/packages/11/38/5eab81580703c4df93feb5f32ff8fa7fe1e2c51c1f183ee4e48d4bb9d3d7/xxhash-3.6.0-cp314-cp314-musllinux_1_2_ppc64le.whl", hash = "sha256:c1ce4009c97a752e682b897aa99aef84191077a9433eb237774689f14f8ec152", size = 210848, upload-time = "2025-10-02T14:35:50.877Z" }, + { url = "https://files.pythonhosted.org/packages/5e/6b/953dc4b05c3ce678abca756416e4c130d2382f877a9c30a20d08ee6a77c0/xxhash-3.6.0-cp314-cp314-musllinux_1_2_s390x.whl", hash = "sha256:8cb2f4f679b01513b7adbb9b1b2f0f9cdc31b70007eaf9d59d0878809f385b11", size = 414142, upload-time = "2025-10-02T14:35:52.15Z" }, + { url = "https://files.pythonhosted.org/packages/08/a9/238ec0d4e81a10eb5026d4a6972677cbc898ba6c8b9dbaec12ae001b1b35/xxhash-3.6.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:653a91d7c2ab54a92c19ccf43508b6a555440b9be1bc8be553376778be7f20b5", size = 191547, upload-time = "2025-10-02T14:35:53.547Z" }, + { url = "https://files.pythonhosted.org/packages/f1/ee/3cf8589e06c2164ac77c3bf0aa127012801128f1feebf2a079272da5737c/xxhash-3.6.0-cp314-cp314-win32.whl", hash = "sha256:a756fe893389483ee8c394d06b5ab765d96e68fbbfe6fde7aa17e11f5720559f", size = 31214, upload-time = "2025-10-02T14:35:54.746Z" }, + { url = "https://files.pythonhosted.org/packages/02/5d/a19552fbc6ad4cb54ff953c3908bbc095f4a921bc569433d791f755186f1/xxhash-3.6.0-cp314-cp314-win_amd64.whl", hash = "sha256:39be8e4e142550ef69629c9cd71b88c90e9a5db703fecbcf265546d9536ca4ad", size = 32290, upload-time = "2025-10-02T14:35:55.791Z" }, + { url = "https://files.pythonhosted.org/packages/b1/11/dafa0643bc30442c887b55baf8e73353a344ee89c1901b5a5c54a6c17d39/xxhash-3.6.0-cp314-cp314-win_arm64.whl", hash = "sha256:25915e6000338999236f1eb68a02a32c3275ac338628a7eaa5a269c401995679", size = 28795, upload-time = "2025-10-02T14:35:57.162Z" }, + { url = "https://files.pythonhosted.org/packages/2c/db/0e99732ed7f64182aef4a6fb145e1a295558deec2a746265dcdec12d191e/xxhash-3.6.0-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:c5294f596a9017ca5a3e3f8884c00b91ab2ad2933cf288f4923c3fd4346cf3d4", size = 32955, upload-time = "2025-10-02T14:35:58.267Z" }, + { url = "https://files.pythonhosted.org/packages/55/f4/2a7c3c68e564a099becfa44bb3d398810cc0ff6749b0d3cb8ccb93f23c14/xxhash-3.6.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:1cf9dcc4ab9cff01dfbba78544297a3a01dafd60f3bde4e2bfd016cf7e4ddc67", size = 31072, upload-time = "2025-10-02T14:35:59.382Z" }, + { url = "https://files.pythonhosted.org/packages/c6/d9/72a29cddc7250e8a5819dad5d466facb5dc4c802ce120645630149127e73/xxhash-3.6.0-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:01262da8798422d0685f7cef03b2bd3f4f46511b02830861df548d7def4402ad", size = 196579, upload-time = "2025-10-02T14:36:00.838Z" }, + { url = "https://files.pythonhosted.org/packages/63/93/b21590e1e381040e2ca305a884d89e1c345b347404f7780f07f2cdd47ef4/xxhash-3.6.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:51a73fb7cb3a3ead9f7a8b583ffd9b8038e277cdb8cb87cf890e88b3456afa0b", size = 215854, upload-time = "2025-10-02T14:36:02.207Z" }, + { url = "https://files.pythonhosted.org/packages/ce/b8/edab8a7d4fa14e924b29be877d54155dcbd8b80be85ea00d2be3413a9ed4/xxhash-3.6.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:b9c6df83594f7df8f7f708ce5ebeacfc69f72c9fbaaababf6cf4758eaada0c9b", size = 214965, upload-time = "2025-10-02T14:36:03.507Z" }, + { url = "https://files.pythonhosted.org/packages/27/67/dfa980ac7f0d509d54ea0d5a486d2bb4b80c3f1bb22b66e6a05d3efaf6c0/xxhash-3.6.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:627f0af069b0ea56f312fd5189001c24578868643203bca1abbc2c52d3a6f3ca", size = 448484, upload-time = "2025-10-02T14:36:04.828Z" }, + { url = "https://files.pythonhosted.org/packages/8c/63/8ffc2cc97e811c0ca5d00ab36604b3ea6f4254f20b7bc658ca825ce6c954/xxhash-3.6.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:aa912c62f842dfd013c5f21a642c9c10cd9f4c4e943e0af83618b4a404d9091a", size = 196162, upload-time = "2025-10-02T14:36:06.182Z" }, + { url = "https://files.pythonhosted.org/packages/4b/77/07f0e7a3edd11a6097e990f6e5b815b6592459cb16dae990d967693e6ea9/xxhash-3.6.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:b465afd7909db30168ab62afe40b2fcf79eedc0b89a6c0ab3123515dc0df8b99", size = 213007, upload-time = "2025-10-02T14:36:07.733Z" }, + { url = "https://files.pythonhosted.org/packages/ae/d8/bc5fa0d152837117eb0bef6f83f956c509332ce133c91c63ce07ee7c4873/xxhash-3.6.0-cp314-cp314t-musllinux_1_2_i686.whl", hash = "sha256:a881851cf38b0a70e7c4d3ce81fc7afd86fbc2a024f4cfb2a97cf49ce04b75d3", size = 200956, upload-time = "2025-10-02T14:36:09.106Z" }, + { url = "https://files.pythonhosted.org/packages/26/a5/d749334130de9411783873e9b98ecc46688dad5db64ca6e04b02acc8b473/xxhash-3.6.0-cp314-cp314t-musllinux_1_2_ppc64le.whl", hash = "sha256:9b3222c686a919a0f3253cfc12bb118b8b103506612253b5baeaac10d8027cf6", size = 213401, upload-time = "2025-10-02T14:36:10.585Z" }, + { url = "https://files.pythonhosted.org/packages/89/72/abed959c956a4bfc72b58c0384bb7940663c678127538634d896b1195c10/xxhash-3.6.0-cp314-cp314t-musllinux_1_2_s390x.whl", hash = "sha256:c5aa639bc113e9286137cec8fadc20e9cd732b2cc385c0b7fa673b84fc1f2a93", size = 417083, upload-time = "2025-10-02T14:36:12.276Z" }, + { url = "https://files.pythonhosted.org/packages/0c/b3/62fd2b586283b7d7d665fb98e266decadf31f058f1cf6c478741f68af0cb/xxhash-3.6.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:5c1343d49ac102799905e115aee590183c3921d475356cb24b4de29a4bc56518", size = 193913, upload-time = "2025-10-02T14:36:14.025Z" }, + { url = "https://files.pythonhosted.org/packages/9a/9a/c19c42c5b3f5a4aad748a6d5b4f23df3bed7ee5445accc65a0fb3ff03953/xxhash-3.6.0-cp314-cp314t-win32.whl", hash = "sha256:5851f033c3030dd95c086b4a36a2683c2ff4a799b23af60977188b057e467119", size = 31586, upload-time = "2025-10-02T14:36:15.603Z" }, + { url = "https://files.pythonhosted.org/packages/03/d6/4cc450345be9924fd5dc8c590ceda1db5b43a0a889587b0ae81a95511360/xxhash-3.6.0-cp314-cp314t-win_amd64.whl", hash = "sha256:0444e7967dac37569052d2409b00a8860c2135cff05502df4da80267d384849f", size = 32526, upload-time = "2025-10-02T14:36:16.708Z" }, + { url = "https://files.pythonhosted.org/packages/0f/c9/7243eb3f9eaabd1a88a5a5acadf06df2d83b100c62684b7425c6a11bcaa8/xxhash-3.6.0-cp314-cp314t-win_arm64.whl", hash = "sha256:bb79b1e63f6fd84ec778a4b1916dfe0a7c3fdb986c06addd5db3a0d413819d95", size = 28898, upload-time = "2025-10-02T14:36:17.843Z" }, + { url = "https://files.pythonhosted.org/packages/93/1e/8aec23647a34a249f62e2398c42955acd9b4c6ed5cf08cbea94dc46f78d2/xxhash-3.6.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:0f7b7e2ec26c1666ad5fc9dbfa426a6a3367ceaf79db5dd76264659d509d73b0", size = 30662, upload-time = "2025-10-02T14:37:01.743Z" }, + { url = "https://files.pythonhosted.org/packages/b8/0b/b14510b38ba91caf43006209db846a696ceea6a847a0c9ba0a5b1adc53d6/xxhash-3.6.0-pp311-pypy311_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:5dc1e14d14fa0f5789ec29a7062004b5933964bb9b02aae6622b8f530dc40296", size = 41056, upload-time = "2025-10-02T14:37:02.879Z" }, + { url = "https://files.pythonhosted.org/packages/50/55/15a7b8a56590e66ccd374bbfa3f9ffc45b810886c8c3b614e3f90bd2367c/xxhash-3.6.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:881b47fc47e051b37d94d13e7455131054b56749b91b508b0907eb07900d1c13", size = 36251, upload-time = "2025-10-02T14:37:04.44Z" }, + { url = "https://files.pythonhosted.org/packages/62/b2/5ac99a041a29e58e95f907876b04f7067a0242cb85b5f39e726153981503/xxhash-3.6.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:c6dc31591899f5e5666f04cc2e529e69b4072827085c1ef15294d91a004bc1bd", size = 32481, upload-time = "2025-10-02T14:37:05.869Z" }, + { url = "https://files.pythonhosted.org/packages/7b/d9/8d95e906764a386a3d3b596f3c68bb63687dfca806373509f51ce8eea81f/xxhash-3.6.0-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:15e0dac10eb9309508bfc41f7f9deaa7755c69e35af835db9cb10751adebc35d", size = 31565, upload-time = "2025-10-02T14:37:06.966Z" }, ] [[package]] name = "yarl" -version = "1.20.1" +version = "1.22.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "idna" }, { name = "multidict" }, { name = "propcache" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/3c/fb/efaa23fa4e45537b827620f04cf8f3cd658b76642205162e072703a5b963/yarl-1.20.1.tar.gz", hash = "sha256:d017a4997ee50c91fd5466cef416231bb82177b93b029906cefc542ce14c35ac", size = 186428, upload-time = "2025-06-10T00:46:09.923Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/cb/65/7fed0d774abf47487c64be14e9223749468922817b5e8792b8a64792a1bb/yarl-1.20.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:6032e6da6abd41e4acda34d75a816012717000fa6839f37124a47fcefc49bec4", size = 132910, upload-time = "2025-06-10T00:42:31.108Z" }, - { url = "https://files.pythonhosted.org/packages/8a/7b/988f55a52da99df9e56dc733b8e4e5a6ae2090081dc2754fc8fd34e60aa0/yarl-1.20.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:2c7b34d804b8cf9b214f05015c4fee2ebe7ed05cf581e7192c06555c71f4446a", size = 90644, upload-time = "2025-06-10T00:42:33.851Z" }, - { url = "https://files.pythonhosted.org/packages/f7/de/30d98f03e95d30c7e3cc093759982d038c8833ec2451001d45ef4854edc1/yarl-1.20.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:0c869f2651cc77465f6cd01d938d91a11d9ea5d798738c1dc077f3de0b5e5fed", size = 89322, upload-time = "2025-06-10T00:42:35.688Z" }, - { url = "https://files.pythonhosted.org/packages/e0/7a/f2f314f5ebfe9200724b0b748de2186b927acb334cf964fd312eb86fc286/yarl-1.20.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:62915e6688eb4d180d93840cda4110995ad50c459bf931b8b3775b37c264af1e", size = 323786, upload-time = "2025-06-10T00:42:37.817Z" }, - { url = "https://files.pythonhosted.org/packages/15/3f/718d26f189db96d993d14b984ce91de52e76309d0fd1d4296f34039856aa/yarl-1.20.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:41ebd28167bc6af8abb97fec1a399f412eec5fd61a3ccbe2305a18b84fb4ca73", size = 319627, upload-time = "2025-06-10T00:42:39.937Z" }, - { url = "https://files.pythonhosted.org/packages/a5/76/8fcfbf5fa2369157b9898962a4a7d96764b287b085b5b3d9ffae69cdefd1/yarl-1.20.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:21242b4288a6d56f04ea193adde174b7e347ac46ce6bc84989ff7c1b1ecea84e", size = 339149, upload-time = "2025-06-10T00:42:42.627Z" }, - { url = "https://files.pythonhosted.org/packages/3c/95/d7fc301cc4661785967acc04f54a4a42d5124905e27db27bb578aac49b5c/yarl-1.20.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:bea21cdae6c7eb02ba02a475f37463abfe0a01f5d7200121b03e605d6a0439f8", size = 333327, upload-time = "2025-06-10T00:42:44.842Z" }, - { url = "https://files.pythonhosted.org/packages/65/94/e21269718349582eee81efc5c1c08ee71c816bfc1585b77d0ec3f58089eb/yarl-1.20.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1f8a891e4a22a89f5dde7862994485e19db246b70bb288d3ce73a34422e55b23", size = 326054, upload-time = "2025-06-10T00:42:47.149Z" }, - { url = "https://files.pythonhosted.org/packages/32/ae/8616d1f07853704523519f6131d21f092e567c5af93de7e3e94b38d7f065/yarl-1.20.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dd803820d44c8853a109a34e3660e5a61beae12970da479cf44aa2954019bf70", size = 315035, upload-time = "2025-06-10T00:42:48.852Z" }, - { url = "https://files.pythonhosted.org/packages/48/aa/0ace06280861ef055855333707db5e49c6e3a08840a7ce62682259d0a6c0/yarl-1.20.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:b982fa7f74c80d5c0c7b5b38f908971e513380a10fecea528091405f519b9ebb", size = 338962, upload-time = "2025-06-10T00:42:51.024Z" }, - { url = "https://files.pythonhosted.org/packages/20/52/1e9d0e6916f45a8fb50e6844f01cb34692455f1acd548606cbda8134cd1e/yarl-1.20.1-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:33f29ecfe0330c570d997bcf1afd304377f2e48f61447f37e846a6058a4d33b2", size = 335399, upload-time = "2025-06-10T00:42:53.007Z" }, - { url = "https://files.pythonhosted.org/packages/f2/65/60452df742952c630e82f394cd409de10610481d9043aa14c61bf846b7b1/yarl-1.20.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:835ab2cfc74d5eb4a6a528c57f05688099da41cf4957cf08cad38647e4a83b30", size = 338649, upload-time = "2025-06-10T00:42:54.964Z" }, - { url = "https://files.pythonhosted.org/packages/7b/f5/6cd4ff38dcde57a70f23719a838665ee17079640c77087404c3d34da6727/yarl-1.20.1-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:46b5e0ccf1943a9a6e766b2c2b8c732c55b34e28be57d8daa2b3c1d1d4009309", size = 358563, upload-time = "2025-06-10T00:42:57.28Z" }, - { url = "https://files.pythonhosted.org/packages/d1/90/c42eefd79d0d8222cb3227bdd51b640c0c1d0aa33fe4cc86c36eccba77d3/yarl-1.20.1-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:df47c55f7d74127d1b11251fe6397d84afdde0d53b90bedb46a23c0e534f9d24", size = 357609, upload-time = "2025-06-10T00:42:59.055Z" }, - { url = "https://files.pythonhosted.org/packages/03/c8/cea6b232cb4617514232e0f8a718153a95b5d82b5290711b201545825532/yarl-1.20.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:76d12524d05841276b0e22573f28d5fbcb67589836772ae9244d90dd7d66aa13", size = 350224, upload-time = "2025-06-10T00:43:01.248Z" }, - { url = "https://files.pythonhosted.org/packages/ce/a3/eaa0ab9712f1f3d01faf43cf6f1f7210ce4ea4a7e9b28b489a2261ca8db9/yarl-1.20.1-cp310-cp310-win32.whl", hash = "sha256:6c4fbf6b02d70e512d7ade4b1f998f237137f1417ab07ec06358ea04f69134f8", size = 81753, upload-time = "2025-06-10T00:43:03.486Z" }, - { url = "https://files.pythonhosted.org/packages/8f/34/e4abde70a9256465fe31c88ed02c3f8502b7b5dead693a4f350a06413f28/yarl-1.20.1-cp310-cp310-win_amd64.whl", hash = "sha256:aef6c4d69554d44b7f9d923245f8ad9a707d971e6209d51279196d8e8fe1ae16", size = 86817, upload-time = "2025-06-10T00:43:05.231Z" }, - { url = "https://files.pythonhosted.org/packages/b1/18/893b50efc2350e47a874c5c2d67e55a0ea5df91186b2a6f5ac52eff887cd/yarl-1.20.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:47ee6188fea634bdfaeb2cc420f5b3b17332e6225ce88149a17c413c77ff269e", size = 133833, upload-time = "2025-06-10T00:43:07.393Z" }, - { url = "https://files.pythonhosted.org/packages/89/ed/b8773448030e6fc47fa797f099ab9eab151a43a25717f9ac043844ad5ea3/yarl-1.20.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:d0f6500f69e8402d513e5eedb77a4e1818691e8f45e6b687147963514d84b44b", size = 91070, upload-time = "2025-06-10T00:43:09.538Z" }, - { url = "https://files.pythonhosted.org/packages/e3/e3/409bd17b1e42619bf69f60e4f031ce1ccb29bd7380117a55529e76933464/yarl-1.20.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:7a8900a42fcdaad568de58887c7b2f602962356908eedb7628eaf6021a6e435b", size = 89818, upload-time = "2025-06-10T00:43:11.575Z" }, - { url = "https://files.pythonhosted.org/packages/f8/77/64d8431a4d77c856eb2d82aa3de2ad6741365245a29b3a9543cd598ed8c5/yarl-1.20.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bad6d131fda8ef508b36be3ece16d0902e80b88ea7200f030a0f6c11d9e508d4", size = 347003, upload-time = "2025-06-10T00:43:14.088Z" }, - { url = "https://files.pythonhosted.org/packages/8d/d2/0c7e4def093dcef0bd9fa22d4d24b023788b0a33b8d0088b51aa51e21e99/yarl-1.20.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:df018d92fe22aaebb679a7f89fe0c0f368ec497e3dda6cb81a567610f04501f1", size = 336537, upload-time = "2025-06-10T00:43:16.431Z" }, - { url = "https://files.pythonhosted.org/packages/f0/f3/fc514f4b2cf02cb59d10cbfe228691d25929ce8f72a38db07d3febc3f706/yarl-1.20.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8f969afbb0a9b63c18d0feecf0db09d164b7a44a053e78a7d05f5df163e43833", size = 362358, upload-time = "2025-06-10T00:43:18.704Z" }, - { url = "https://files.pythonhosted.org/packages/ea/6d/a313ac8d8391381ff9006ac05f1d4331cee3b1efaa833a53d12253733255/yarl-1.20.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:812303eb4aa98e302886ccda58d6b099e3576b1b9276161469c25803a8db277d", size = 357362, upload-time = "2025-06-10T00:43:20.888Z" }, - { url = "https://files.pythonhosted.org/packages/00/70/8f78a95d6935a70263d46caa3dd18e1f223cf2f2ff2037baa01a22bc5b22/yarl-1.20.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:98c4a7d166635147924aa0bf9bfe8d8abad6fffa6102de9c99ea04a1376f91e8", size = 348979, upload-time = "2025-06-10T00:43:23.169Z" }, - { url = "https://files.pythonhosted.org/packages/cb/05/42773027968968f4f15143553970ee36ead27038d627f457cc44bbbeecf3/yarl-1.20.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:12e768f966538e81e6e7550f9086a6236b16e26cd964cf4df35349970f3551cf", size = 337274, upload-time = "2025-06-10T00:43:27.111Z" }, - { url = "https://files.pythonhosted.org/packages/05/be/665634aa196954156741ea591d2f946f1b78ceee8bb8f28488bf28c0dd62/yarl-1.20.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:fe41919b9d899661c5c28a8b4b0acf704510b88f27f0934ac7a7bebdd8938d5e", size = 363294, upload-time = "2025-06-10T00:43:28.96Z" }, - { url = "https://files.pythonhosted.org/packages/eb/90/73448401d36fa4e210ece5579895731f190d5119c4b66b43b52182e88cd5/yarl-1.20.1-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:8601bc010d1d7780592f3fc1bdc6c72e2b6466ea34569778422943e1a1f3c389", size = 358169, upload-time = "2025-06-10T00:43:30.701Z" }, - { url = "https://files.pythonhosted.org/packages/c3/b0/fce922d46dc1eb43c811f1889f7daa6001b27a4005587e94878570300881/yarl-1.20.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:daadbdc1f2a9033a2399c42646fbd46da7992e868a5fe9513860122d7fe7a73f", size = 362776, upload-time = "2025-06-10T00:43:32.51Z" }, - { url = "https://files.pythonhosted.org/packages/f1/0d/b172628fce039dae8977fd22caeff3eeebffd52e86060413f5673767c427/yarl-1.20.1-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:03aa1e041727cb438ca762628109ef1333498b122e4c76dd858d186a37cec845", size = 381341, upload-time = "2025-06-10T00:43:34.543Z" }, - { url = "https://files.pythonhosted.org/packages/6b/9b/5b886d7671f4580209e855974fe1cecec409aa4a89ea58b8f0560dc529b1/yarl-1.20.1-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:642980ef5e0fa1de5fa96d905c7e00cb2c47cb468bfcac5a18c58e27dbf8d8d1", size = 379988, upload-time = "2025-06-10T00:43:36.489Z" }, - { url = "https://files.pythonhosted.org/packages/73/be/75ef5fd0fcd8f083a5d13f78fd3f009528132a1f2a1d7c925c39fa20aa79/yarl-1.20.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:86971e2795584fe8c002356d3b97ef6c61862720eeff03db2a7c86b678d85b3e", size = 371113, upload-time = "2025-06-10T00:43:38.592Z" }, - { url = "https://files.pythonhosted.org/packages/50/4f/62faab3b479dfdcb741fe9e3f0323e2a7d5cd1ab2edc73221d57ad4834b2/yarl-1.20.1-cp311-cp311-win32.whl", hash = "sha256:597f40615b8d25812f14562699e287f0dcc035d25eb74da72cae043bb884d773", size = 81485, upload-time = "2025-06-10T00:43:41.038Z" }, - { url = "https://files.pythonhosted.org/packages/f0/09/d9c7942f8f05c32ec72cd5c8e041c8b29b5807328b68b4801ff2511d4d5e/yarl-1.20.1-cp311-cp311-win_amd64.whl", hash = "sha256:26ef53a9e726e61e9cd1cda6b478f17e350fb5800b4bd1cd9fe81c4d91cfeb2e", size = 86686, upload-time = "2025-06-10T00:43:42.692Z" }, - { url = "https://files.pythonhosted.org/packages/5f/9a/cb7fad7d73c69f296eda6815e4a2c7ed53fc70c2f136479a91c8e5fbdb6d/yarl-1.20.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:bdcc4cd244e58593a4379fe60fdee5ac0331f8eb70320a24d591a3be197b94a9", size = 133667, upload-time = "2025-06-10T00:43:44.369Z" }, - { url = "https://files.pythonhosted.org/packages/67/38/688577a1cb1e656e3971fb66a3492501c5a5df56d99722e57c98249e5b8a/yarl-1.20.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:b29a2c385a5f5b9c7d9347e5812b6f7ab267193c62d282a540b4fc528c8a9d2a", size = 91025, upload-time = "2025-06-10T00:43:46.295Z" }, - { url = "https://files.pythonhosted.org/packages/50/ec/72991ae51febeb11a42813fc259f0d4c8e0507f2b74b5514618d8b640365/yarl-1.20.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:1112ae8154186dfe2de4732197f59c05a83dc814849a5ced892b708033f40dc2", size = 89709, upload-time = "2025-06-10T00:43:48.22Z" }, - { url = "https://files.pythonhosted.org/packages/99/da/4d798025490e89426e9f976702e5f9482005c548c579bdae792a4c37769e/yarl-1.20.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:90bbd29c4fe234233f7fa2b9b121fb63c321830e5d05b45153a2ca68f7d310ee", size = 352287, upload-time = "2025-06-10T00:43:49.924Z" }, - { url = "https://files.pythonhosted.org/packages/1a/26/54a15c6a567aac1c61b18aa0f4b8aa2e285a52d547d1be8bf48abe2b3991/yarl-1.20.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:680e19c7ce3710ac4cd964e90dad99bf9b5029372ba0c7cbfcd55e54d90ea819", size = 345429, upload-time = "2025-06-10T00:43:51.7Z" }, - { url = "https://files.pythonhosted.org/packages/d6/95/9dcf2386cb875b234353b93ec43e40219e14900e046bf6ac118f94b1e353/yarl-1.20.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4a979218c1fdb4246a05efc2cc23859d47c89af463a90b99b7c56094daf25a16", size = 365429, upload-time = "2025-06-10T00:43:53.494Z" }, - { url = "https://files.pythonhosted.org/packages/91/b2/33a8750f6a4bc224242a635f5f2cff6d6ad5ba651f6edcccf721992c21a0/yarl-1.20.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:255b468adf57b4a7b65d8aad5b5138dce6a0752c139965711bdcb81bc370e1b6", size = 363862, upload-time = "2025-06-10T00:43:55.766Z" }, - { url = "https://files.pythonhosted.org/packages/98/28/3ab7acc5b51f4434b181b0cee8f1f4b77a65919700a355fb3617f9488874/yarl-1.20.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a97d67108e79cfe22e2b430d80d7571ae57d19f17cda8bb967057ca8a7bf5bfd", size = 355616, upload-time = "2025-06-10T00:43:58.056Z" }, - { url = "https://files.pythonhosted.org/packages/36/a3/f666894aa947a371724ec7cd2e5daa78ee8a777b21509b4252dd7bd15e29/yarl-1.20.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8570d998db4ddbfb9a590b185a0a33dbf8aafb831d07a5257b4ec9948df9cb0a", size = 339954, upload-time = "2025-06-10T00:43:59.773Z" }, - { url = "https://files.pythonhosted.org/packages/f1/81/5f466427e09773c04219d3450d7a1256138a010b6c9f0af2d48565e9ad13/yarl-1.20.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:97c75596019baae7c71ccf1d8cc4738bc08134060d0adfcbe5642f778d1dca38", size = 365575, upload-time = "2025-06-10T00:44:02.051Z" }, - { url = "https://files.pythonhosted.org/packages/2e/e3/e4b0ad8403e97e6c9972dd587388940a032f030ebec196ab81a3b8e94d31/yarl-1.20.1-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:1c48912653e63aef91ff988c5432832692ac5a1d8f0fb8a33091520b5bbe19ef", size = 365061, upload-time = "2025-06-10T00:44:04.196Z" }, - { url = "https://files.pythonhosted.org/packages/ac/99/b8a142e79eb86c926f9f06452eb13ecb1bb5713bd01dc0038faf5452e544/yarl-1.20.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:4c3ae28f3ae1563c50f3d37f064ddb1511ecc1d5584e88c6b7c63cf7702a6d5f", size = 364142, upload-time = "2025-06-10T00:44:06.527Z" }, - { url = "https://files.pythonhosted.org/packages/34/f2/08ed34a4a506d82a1a3e5bab99ccd930a040f9b6449e9fd050320e45845c/yarl-1.20.1-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:c5e9642f27036283550f5f57dc6156c51084b458570b9d0d96100c8bebb186a8", size = 381894, upload-time = "2025-06-10T00:44:08.379Z" }, - { url = "https://files.pythonhosted.org/packages/92/f8/9a3fbf0968eac704f681726eff595dce9b49c8a25cd92bf83df209668285/yarl-1.20.1-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:2c26b0c49220d5799f7b22c6838409ee9bc58ee5c95361a4d7831f03cc225b5a", size = 383378, upload-time = "2025-06-10T00:44:10.51Z" }, - { url = "https://files.pythonhosted.org/packages/af/85/9363f77bdfa1e4d690957cd39d192c4cacd1c58965df0470a4905253b54f/yarl-1.20.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:564ab3d517e3d01c408c67f2e5247aad4019dcf1969982aba3974b4093279004", size = 374069, upload-time = "2025-06-10T00:44:12.834Z" }, - { url = "https://files.pythonhosted.org/packages/35/99/9918c8739ba271dcd935400cff8b32e3cd319eaf02fcd023d5dcd487a7c8/yarl-1.20.1-cp312-cp312-win32.whl", hash = "sha256:daea0d313868da1cf2fac6b2d3a25c6e3a9e879483244be38c8e6a41f1d876a5", size = 81249, upload-time = "2025-06-10T00:44:14.731Z" }, - { url = "https://files.pythonhosted.org/packages/eb/83/5d9092950565481b413b31a23e75dd3418ff0a277d6e0abf3729d4d1ce25/yarl-1.20.1-cp312-cp312-win_amd64.whl", hash = "sha256:48ea7d7f9be0487339828a4de0360d7ce0efc06524a48e1810f945c45b813698", size = 86710, upload-time = "2025-06-10T00:44:16.716Z" }, - { url = "https://files.pythonhosted.org/packages/8a/e1/2411b6d7f769a07687acee88a062af5833cf1966b7266f3d8dfb3d3dc7d3/yarl-1.20.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:0b5ff0fbb7c9f1b1b5ab53330acbfc5247893069e7716840c8e7d5bb7355038a", size = 131811, upload-time = "2025-06-10T00:44:18.933Z" }, - { url = "https://files.pythonhosted.org/packages/b2/27/584394e1cb76fb771371770eccad35de400e7b434ce3142c2dd27392c968/yarl-1.20.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:14f326acd845c2b2e2eb38fb1346c94f7f3b01a4f5c788f8144f9b630bfff9a3", size = 90078, upload-time = "2025-06-10T00:44:20.635Z" }, - { url = "https://files.pythonhosted.org/packages/bf/9a/3246ae92d4049099f52d9b0fe3486e3b500e29b7ea872d0f152966fc209d/yarl-1.20.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f60e4ad5db23f0b96e49c018596707c3ae89f5d0bd97f0ad3684bcbad899f1e7", size = 88748, upload-time = "2025-06-10T00:44:22.34Z" }, - { url = "https://files.pythonhosted.org/packages/a3/25/35afe384e31115a1a801fbcf84012d7a066d89035befae7c5d4284df1e03/yarl-1.20.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:49bdd1b8e00ce57e68ba51916e4bb04461746e794e7c4d4bbc42ba2f18297691", size = 349595, upload-time = "2025-06-10T00:44:24.314Z" }, - { url = "https://files.pythonhosted.org/packages/28/2d/8aca6cb2cabc8f12efcb82749b9cefecbccfc7b0384e56cd71058ccee433/yarl-1.20.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:66252d780b45189975abfed839616e8fd2dbacbdc262105ad7742c6ae58f3e31", size = 342616, upload-time = "2025-06-10T00:44:26.167Z" }, - { url = "https://files.pythonhosted.org/packages/0b/e9/1312633d16b31acf0098d30440ca855e3492d66623dafb8e25b03d00c3da/yarl-1.20.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:59174e7332f5d153d8f7452a102b103e2e74035ad085f404df2e40e663a22b28", size = 361324, upload-time = "2025-06-10T00:44:27.915Z" }, - { url = "https://files.pythonhosted.org/packages/bc/a0/688cc99463f12f7669eec7c8acc71ef56a1521b99eab7cd3abb75af887b0/yarl-1.20.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e3968ec7d92a0c0f9ac34d5ecfd03869ec0cab0697c91a45db3fbbd95fe1b653", size = 359676, upload-time = "2025-06-10T00:44:30.041Z" }, - { url = "https://files.pythonhosted.org/packages/af/44/46407d7f7a56e9a85a4c207724c9f2c545c060380718eea9088f222ba697/yarl-1.20.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d1a4fbb50e14396ba3d375f68bfe02215d8e7bc3ec49da8341fe3157f59d2ff5", size = 352614, upload-time = "2025-06-10T00:44:32.171Z" }, - { url = "https://files.pythonhosted.org/packages/b1/91/31163295e82b8d5485d31d9cf7754d973d41915cadce070491778d9c9825/yarl-1.20.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:11a62c839c3a8eac2410e951301309426f368388ff2f33799052787035793b02", size = 336766, upload-time = "2025-06-10T00:44:34.494Z" }, - { url = "https://files.pythonhosted.org/packages/b4/8e/c41a5bc482121f51c083c4c2bcd16b9e01e1cf8729e380273a952513a21f/yarl-1.20.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:041eaa14f73ff5a8986b4388ac6bb43a77f2ea09bf1913df7a35d4646db69e53", size = 364615, upload-time = "2025-06-10T00:44:36.856Z" }, - { url = "https://files.pythonhosted.org/packages/e3/5b/61a3b054238d33d70ea06ebba7e58597891b71c699e247df35cc984ab393/yarl-1.20.1-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:377fae2fef158e8fd9d60b4c8751387b8d1fb121d3d0b8e9b0be07d1b41e83dc", size = 360982, upload-time = "2025-06-10T00:44:39.141Z" }, - { url = "https://files.pythonhosted.org/packages/df/a3/6a72fb83f8d478cb201d14927bc8040af901811a88e0ff2da7842dd0ed19/yarl-1.20.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:1c92f4390e407513f619d49319023664643d3339bd5e5a56a3bebe01bc67ec04", size = 369792, upload-time = "2025-06-10T00:44:40.934Z" }, - { url = "https://files.pythonhosted.org/packages/7c/af/4cc3c36dfc7c077f8dedb561eb21f69e1e9f2456b91b593882b0b18c19dc/yarl-1.20.1-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:d25ddcf954df1754ab0f86bb696af765c5bfaba39b74095f27eececa049ef9a4", size = 382049, upload-time = "2025-06-10T00:44:42.854Z" }, - { url = "https://files.pythonhosted.org/packages/19/3a/e54e2c4752160115183a66dc9ee75a153f81f3ab2ba4bf79c3c53b33de34/yarl-1.20.1-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:909313577e9619dcff8c31a0ea2aa0a2a828341d92673015456b3ae492e7317b", size = 384774, upload-time = "2025-06-10T00:44:45.275Z" }, - { url = "https://files.pythonhosted.org/packages/9c/20/200ae86dabfca89060ec6447649f219b4cbd94531e425e50d57e5f5ac330/yarl-1.20.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:793fd0580cb9664548c6b83c63b43c477212c0260891ddf86809e1c06c8b08f1", size = 374252, upload-time = "2025-06-10T00:44:47.31Z" }, - { url = "https://files.pythonhosted.org/packages/83/75/11ee332f2f516b3d094e89448da73d557687f7d137d5a0f48c40ff211487/yarl-1.20.1-cp313-cp313-win32.whl", hash = "sha256:468f6e40285de5a5b3c44981ca3a319a4b208ccc07d526b20b12aeedcfa654b7", size = 81198, upload-time = "2025-06-10T00:44:49.164Z" }, - { url = "https://files.pythonhosted.org/packages/ba/ba/39b1ecbf51620b40ab402b0fc817f0ff750f6d92712b44689c2c215be89d/yarl-1.20.1-cp313-cp313-win_amd64.whl", hash = "sha256:495b4ef2fea40596bfc0affe3837411d6aa3371abcf31aac0ccc4bdd64d4ef5c", size = 86346, upload-time = "2025-06-10T00:44:51.182Z" }, - { url = "https://files.pythonhosted.org/packages/43/c7/669c52519dca4c95153c8ad96dd123c79f354a376346b198f438e56ffeb4/yarl-1.20.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:f60233b98423aab21d249a30eb27c389c14929f47be8430efa7dbd91493a729d", size = 138826, upload-time = "2025-06-10T00:44:52.883Z" }, - { url = "https://files.pythonhosted.org/packages/6a/42/fc0053719b44f6ad04a75d7f05e0e9674d45ef62f2d9ad2c1163e5c05827/yarl-1.20.1-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:6f3eff4cc3f03d650d8755c6eefc844edde99d641d0dcf4da3ab27141a5f8ddf", size = 93217, upload-time = "2025-06-10T00:44:54.658Z" }, - { url = "https://files.pythonhosted.org/packages/4f/7f/fa59c4c27e2a076bba0d959386e26eba77eb52ea4a0aac48e3515c186b4c/yarl-1.20.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:69ff8439d8ba832d6bed88af2c2b3445977eba9a4588b787b32945871c2444e3", size = 92700, upload-time = "2025-06-10T00:44:56.784Z" }, - { url = "https://files.pythonhosted.org/packages/2f/d4/062b2f48e7c93481e88eff97a6312dca15ea200e959f23e96d8ab898c5b8/yarl-1.20.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3cf34efa60eb81dd2645a2e13e00bb98b76c35ab5061a3989c7a70f78c85006d", size = 347644, upload-time = "2025-06-10T00:44:59.071Z" }, - { url = "https://files.pythonhosted.org/packages/89/47/78b7f40d13c8f62b499cc702fdf69e090455518ae544c00a3bf4afc9fc77/yarl-1.20.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:8e0fe9364ad0fddab2688ce72cb7a8e61ea42eff3c7caeeb83874a5d479c896c", size = 323452, upload-time = "2025-06-10T00:45:01.605Z" }, - { url = "https://files.pythonhosted.org/packages/eb/2b/490d3b2dc66f52987d4ee0d3090a147ea67732ce6b4d61e362c1846d0d32/yarl-1.20.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8f64fbf81878ba914562c672024089e3401974a39767747691c65080a67b18c1", size = 346378, upload-time = "2025-06-10T00:45:03.946Z" }, - { url = "https://files.pythonhosted.org/packages/66/ad/775da9c8a94ce925d1537f939a4f17d782efef1f973039d821cbe4bcc211/yarl-1.20.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f6342d643bf9a1de97e512e45e4b9560a043347e779a173250824f8b254bd5ce", size = 353261, upload-time = "2025-06-10T00:45:05.992Z" }, - { url = "https://files.pythonhosted.org/packages/4b/23/0ed0922b47a4f5c6eb9065d5ff1e459747226ddce5c6a4c111e728c9f701/yarl-1.20.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:56dac5f452ed25eef0f6e3c6a066c6ab68971d96a9fb441791cad0efba6140d3", size = 335987, upload-time = "2025-06-10T00:45:08.227Z" }, - { url = "https://files.pythonhosted.org/packages/3e/49/bc728a7fe7d0e9336e2b78f0958a2d6b288ba89f25a1762407a222bf53c3/yarl-1.20.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c7d7f497126d65e2cad8dc5f97d34c27b19199b6414a40cb36b52f41b79014be", size = 329361, upload-time = "2025-06-10T00:45:10.11Z" }, - { url = "https://files.pythonhosted.org/packages/93/8f/b811b9d1f617c83c907e7082a76e2b92b655400e61730cd61a1f67178393/yarl-1.20.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:67e708dfb8e78d8a19169818eeb5c7a80717562de9051bf2413aca8e3696bf16", size = 346460, upload-time = "2025-06-10T00:45:12.055Z" }, - { url = "https://files.pythonhosted.org/packages/70/fd/af94f04f275f95da2c3b8b5e1d49e3e79f1ed8b6ceb0f1664cbd902773ff/yarl-1.20.1-cp313-cp313t-musllinux_1_2_armv7l.whl", hash = "sha256:595c07bc79af2494365cc96ddeb772f76272364ef7c80fb892ef9d0649586513", size = 334486, upload-time = "2025-06-10T00:45:13.995Z" }, - { url = "https://files.pythonhosted.org/packages/84/65/04c62e82704e7dd0a9b3f61dbaa8447f8507655fd16c51da0637b39b2910/yarl-1.20.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:7bdd2f80f4a7df852ab9ab49484a4dee8030023aa536df41f2d922fd57bf023f", size = 342219, upload-time = "2025-06-10T00:45:16.479Z" }, - { url = "https://files.pythonhosted.org/packages/91/95/459ca62eb958381b342d94ab9a4b6aec1ddec1f7057c487e926f03c06d30/yarl-1.20.1-cp313-cp313t-musllinux_1_2_ppc64le.whl", hash = "sha256:c03bfebc4ae8d862f853a9757199677ab74ec25424d0ebd68a0027e9c639a390", size = 350693, upload-time = "2025-06-10T00:45:18.399Z" }, - { url = "https://files.pythonhosted.org/packages/a6/00/d393e82dd955ad20617abc546a8f1aee40534d599ff555ea053d0ec9bf03/yarl-1.20.1-cp313-cp313t-musllinux_1_2_s390x.whl", hash = "sha256:344d1103e9c1523f32a5ed704d576172d2cabed3122ea90b1d4e11fe17c66458", size = 355803, upload-time = "2025-06-10T00:45:20.677Z" }, - { url = "https://files.pythonhosted.org/packages/9e/ed/c5fb04869b99b717985e244fd93029c7a8e8febdfcffa06093e32d7d44e7/yarl-1.20.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:88cab98aa4e13e1ade8c141daeedd300a4603b7132819c484841bb7af3edce9e", size = 341709, upload-time = "2025-06-10T00:45:23.221Z" }, - { url = "https://files.pythonhosted.org/packages/24/fd/725b8e73ac2a50e78a4534ac43c6addf5c1c2d65380dd48a9169cc6739a9/yarl-1.20.1-cp313-cp313t-win32.whl", hash = "sha256:b121ff6a7cbd4abc28985b6028235491941b9fe8fe226e6fdc539c977ea1739d", size = 86591, upload-time = "2025-06-10T00:45:25.793Z" }, - { url = "https://files.pythonhosted.org/packages/94/c3/b2e9f38bc3e11191981d57ea08cab2166e74ea770024a646617c9cddd9f6/yarl-1.20.1-cp313-cp313t-win_amd64.whl", hash = "sha256:541d050a355bbbc27e55d906bc91cb6fe42f96c01413dd0f4ed5a5240513874f", size = 93003, upload-time = "2025-06-10T00:45:27.752Z" }, - { url = "https://files.pythonhosted.org/packages/b4/2d/2345fce04cfd4bee161bf1e7d9cdc702e3e16109021035dbb24db654a622/yarl-1.20.1-py3-none-any.whl", hash = "sha256:83b8eb083fe4683c6115795d9fc1cfaf2cbbefb19b3a1cb68f6527460f483a77", size = 46542, upload-time = "2025-06-10T00:46:07.521Z" }, +sdist = { url = "https://files.pythonhosted.org/packages/57/63/0c6ebca57330cd313f6102b16dd57ffaf3ec4c83403dcb45dbd15c6f3ea1/yarl-1.22.0.tar.gz", hash = "sha256:bebf8557577d4401ba8bd9ff33906f1376c877aa78d1fe216ad01b4d6745af71", size = 187169, upload-time = "2025-10-06T14:12:55.963Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/4d/27/5ab13fc84c76a0250afd3d26d5936349a35be56ce5785447d6c423b26d92/yarl-1.22.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:1ab72135b1f2db3fed3997d7e7dc1b80573c67138023852b6efb336a5eae6511", size = 141607, upload-time = "2025-10-06T14:09:16.298Z" }, + { url = "https://files.pythonhosted.org/packages/6a/a1/d065d51d02dc02ce81501d476b9ed2229d9a990818332242a882d5d60340/yarl-1.22.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:669930400e375570189492dc8d8341301578e8493aec04aebc20d4717f899dd6", size = 94027, upload-time = "2025-10-06T14:09:17.786Z" }, + { url = "https://files.pythonhosted.org/packages/c1/da/8da9f6a53f67b5106ffe902c6fa0164e10398d4e150d85838b82f424072a/yarl-1.22.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:792a2af6d58177ef7c19cbf0097aba92ca1b9cb3ffdd9c7470e156c8f9b5e028", size = 94963, upload-time = "2025-10-06T14:09:19.662Z" }, + { url = "https://files.pythonhosted.org/packages/68/fe/2c1f674960c376e29cb0bec1249b117d11738db92a6ccc4a530b972648db/yarl-1.22.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:3ea66b1c11c9150f1372f69afb6b8116f2dd7286f38e14ea71a44eee9ec51b9d", size = 368406, upload-time = "2025-10-06T14:09:21.402Z" }, + { url = "https://files.pythonhosted.org/packages/95/26/812a540e1c3c6418fec60e9bbd38e871eaba9545e94fa5eff8f4a8e28e1e/yarl-1.22.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:3e2daa88dc91870215961e96a039ec73e4937da13cf77ce17f9cad0c18df3503", size = 336581, upload-time = "2025-10-06T14:09:22.98Z" }, + { url = "https://files.pythonhosted.org/packages/0b/f5/5777b19e26fdf98563985e481f8be3d8a39f8734147a6ebf459d0dab5a6b/yarl-1.22.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:ba440ae430c00eee41509353628600212112cd5018d5def7e9b05ea7ac34eb65", size = 388924, upload-time = "2025-10-06T14:09:24.655Z" }, + { url = "https://files.pythonhosted.org/packages/86/08/24bd2477bd59c0bbd994fe1d93b126e0472e4e3df5a96a277b0a55309e89/yarl-1.22.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:e6438cc8f23a9c1478633d216b16104a586b9761db62bfacb6425bac0a36679e", size = 392890, upload-time = "2025-10-06T14:09:26.617Z" }, + { url = "https://files.pythonhosted.org/packages/46/00/71b90ed48e895667ecfb1eaab27c1523ee2fa217433ed77a73b13205ca4b/yarl-1.22.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:4c52a6e78aef5cf47a98ef8e934755abf53953379b7d53e68b15ff4420e6683d", size = 365819, upload-time = "2025-10-06T14:09:28.544Z" }, + { url = "https://files.pythonhosted.org/packages/30/2d/f715501cae832651d3282387c6a9236cd26bd00d0ff1e404b3dc52447884/yarl-1.22.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:3b06bcadaac49c70f4c88af4ffcfbe3dc155aab3163e75777818092478bcbbe7", size = 363601, upload-time = "2025-10-06T14:09:30.568Z" }, + { url = "https://files.pythonhosted.org/packages/f8/f9/a678c992d78e394e7126ee0b0e4e71bd2775e4334d00a9278c06a6cce96a/yarl-1.22.0-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:6944b2dc72c4d7f7052683487e3677456050ff77fcf5e6204e98caf785ad1967", size = 358072, upload-time = "2025-10-06T14:09:32.528Z" }, + { url = "https://files.pythonhosted.org/packages/2c/d1/b49454411a60edb6fefdcad4f8e6dbba7d8019e3a508a1c5836cba6d0781/yarl-1.22.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:d5372ca1df0f91a86b047d1277c2aaf1edb32d78bbcefffc81b40ffd18f027ed", size = 385311, upload-time = "2025-10-06T14:09:34.634Z" }, + { url = "https://files.pythonhosted.org/packages/87/e5/40d7a94debb8448c7771a916d1861d6609dddf7958dc381117e7ba36d9e8/yarl-1.22.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:51af598701f5299012b8416486b40fceef8c26fc87dc6d7d1f6fc30609ea0aa6", size = 381094, upload-time = "2025-10-06T14:09:36.268Z" }, + { url = "https://files.pythonhosted.org/packages/35/d8/611cc282502381ad855448643e1ad0538957fc82ae83dfe7762c14069e14/yarl-1.22.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:b266bd01fedeffeeac01a79ae181719ff848a5a13ce10075adbefc8f1daee70e", size = 370944, upload-time = "2025-10-06T14:09:37.872Z" }, + { url = "https://files.pythonhosted.org/packages/2d/df/fadd00fb1c90e1a5a8bd731fa3d3de2e165e5a3666a095b04e31b04d9cb6/yarl-1.22.0-cp311-cp311-win32.whl", hash = "sha256:a9b1ba5610a4e20f655258d5a1fdc7ebe3d837bb0e45b581398b99eb98b1f5ca", size = 81804, upload-time = "2025-10-06T14:09:39.359Z" }, + { url = "https://files.pythonhosted.org/packages/b5/f7/149bb6f45f267cb5c074ac40c01c6b3ea6d8a620d34b337f6321928a1b4d/yarl-1.22.0-cp311-cp311-win_amd64.whl", hash = "sha256:078278b9b0b11568937d9509b589ee83ef98ed6d561dfe2020e24a9fd08eaa2b", size = 86858, upload-time = "2025-10-06T14:09:41.068Z" }, + { url = "https://files.pythonhosted.org/packages/2b/13/88b78b93ad3f2f0b78e13bfaaa24d11cbc746e93fe76d8c06bf139615646/yarl-1.22.0-cp311-cp311-win_arm64.whl", hash = "sha256:b6a6f620cfe13ccec221fa312139135166e47ae169f8253f72a0abc0dae94376", size = 81637, upload-time = "2025-10-06T14:09:42.712Z" }, + { url = "https://files.pythonhosted.org/packages/75/ff/46736024fee3429b80a165a732e38e5d5a238721e634ab41b040d49f8738/yarl-1.22.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:e340382d1afa5d32b892b3ff062436d592ec3d692aeea3bef3a5cfe11bbf8c6f", size = 142000, upload-time = "2025-10-06T14:09:44.631Z" }, + { url = "https://files.pythonhosted.org/packages/5a/9a/b312ed670df903145598914770eb12de1bac44599549b3360acc96878df8/yarl-1.22.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:f1e09112a2c31ffe8d80be1b0988fa6a18c5d5cad92a9ffbb1c04c91bfe52ad2", size = 94338, upload-time = "2025-10-06T14:09:46.372Z" }, + { url = "https://files.pythonhosted.org/packages/ba/f5/0601483296f09c3c65e303d60c070a5c19fcdbc72daa061e96170785bc7d/yarl-1.22.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:939fe60db294c786f6b7c2d2e121576628468f65453d86b0fe36cb52f987bd74", size = 94909, upload-time = "2025-10-06T14:09:48.648Z" }, + { url = "https://files.pythonhosted.org/packages/60/41/9a1fe0b73dbcefce72e46cf149b0e0a67612d60bfc90fb59c2b2efdfbd86/yarl-1.22.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e1651bf8e0398574646744c1885a41198eba53dc8a9312b954073f845c90a8df", size = 372940, upload-time = "2025-10-06T14:09:50.089Z" }, + { url = "https://files.pythonhosted.org/packages/17/7a/795cb6dfee561961c30b800f0ed616b923a2ec6258b5def2a00bf8231334/yarl-1.22.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:b8a0588521a26bf92a57a1705b77b8b59044cdceccac7151bd8d229e66b8dedb", size = 345825, upload-time = "2025-10-06T14:09:52.142Z" }, + { url = "https://files.pythonhosted.org/packages/d7/93/a58f4d596d2be2ae7bab1a5846c4d270b894958845753b2c606d666744d3/yarl-1.22.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:42188e6a615c1a75bcaa6e150c3fe8f3e8680471a6b10150c5f7e83f47cc34d2", size = 386705, upload-time = "2025-10-06T14:09:54.128Z" }, + { url = "https://files.pythonhosted.org/packages/61/92/682279d0e099d0e14d7fd2e176bd04f48de1484f56546a3e1313cd6c8e7c/yarl-1.22.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:f6d2cb59377d99718913ad9a151030d6f83ef420a2b8f521d94609ecc106ee82", size = 396518, upload-time = "2025-10-06T14:09:55.762Z" }, + { url = "https://files.pythonhosted.org/packages/db/0f/0d52c98b8a885aeda831224b78f3be7ec2e1aa4a62091f9f9188c3c65b56/yarl-1.22.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:50678a3b71c751d58d7908edc96d332af328839eea883bb554a43f539101277a", size = 377267, upload-time = "2025-10-06T14:09:57.958Z" }, + { url = "https://files.pythonhosted.org/packages/22/42/d2685e35908cbeaa6532c1fc73e89e7f2efb5d8a7df3959ea8e37177c5a3/yarl-1.22.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:1e8fbaa7cec507aa24ea27a01456e8dd4b6fab829059b69844bd348f2d467124", size = 365797, upload-time = "2025-10-06T14:09:59.527Z" }, + { url = "https://files.pythonhosted.org/packages/a2/83/cf8c7bcc6355631762f7d8bdab920ad09b82efa6b722999dfb05afa6cfac/yarl-1.22.0-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:433885ab5431bc3d3d4f2f9bd15bfa1614c522b0f1405d62c4f926ccd69d04fa", size = 365535, upload-time = "2025-10-06T14:10:01.139Z" }, + { url = "https://files.pythonhosted.org/packages/25/e1/5302ff9b28f0c59cac913b91fe3f16c59a033887e57ce9ca5d41a3a94737/yarl-1.22.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:b790b39c7e9a4192dc2e201a282109ed2985a1ddbd5ac08dc56d0e121400a8f7", size = 382324, upload-time = "2025-10-06T14:10:02.756Z" }, + { url = "https://files.pythonhosted.org/packages/bf/cd/4617eb60f032f19ae3a688dc990d8f0d89ee0ea378b61cac81ede3e52fae/yarl-1.22.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:31f0b53913220599446872d757257be5898019c85e7971599065bc55065dc99d", size = 383803, upload-time = "2025-10-06T14:10:04.552Z" }, + { url = "https://files.pythonhosted.org/packages/59/65/afc6e62bb506a319ea67b694551dab4a7e6fb7bf604e9bd9f3e11d575fec/yarl-1.22.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:a49370e8f711daec68d09b821a34e1167792ee2d24d405cbc2387be4f158b520", size = 374220, upload-time = "2025-10-06T14:10:06.489Z" }, + { url = "https://files.pythonhosted.org/packages/e7/3d/68bf18d50dc674b942daec86a9ba922d3113d8399b0e52b9897530442da2/yarl-1.22.0-cp312-cp312-win32.whl", hash = "sha256:70dfd4f241c04bd9239d53b17f11e6ab672b9f1420364af63e8531198e3f5fe8", size = 81589, upload-time = "2025-10-06T14:10:09.254Z" }, + { url = "https://files.pythonhosted.org/packages/c8/9a/6ad1a9b37c2f72874f93e691b2e7ecb6137fb2b899983125db4204e47575/yarl-1.22.0-cp312-cp312-win_amd64.whl", hash = "sha256:8884d8b332a5e9b88e23f60bb166890009429391864c685e17bd73a9eda9105c", size = 87213, upload-time = "2025-10-06T14:10:11.369Z" }, + { url = "https://files.pythonhosted.org/packages/44/c5/c21b562d1680a77634d748e30c653c3ca918beb35555cff24986fff54598/yarl-1.22.0-cp312-cp312-win_arm64.whl", hash = "sha256:ea70f61a47f3cc93bdf8b2f368ed359ef02a01ca6393916bc8ff877427181e74", size = 81330, upload-time = "2025-10-06T14:10:13.112Z" }, + { url = "https://files.pythonhosted.org/packages/ea/f3/d67de7260456ee105dc1d162d43a019ecad6b91e2f51809d6cddaa56690e/yarl-1.22.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:8dee9c25c74997f6a750cd317b8ca63545169c098faee42c84aa5e506c819b53", size = 139980, upload-time = "2025-10-06T14:10:14.601Z" }, + { url = "https://files.pythonhosted.org/packages/01/88/04d98af0b47e0ef42597b9b28863b9060bb515524da0a65d5f4db160b2d5/yarl-1.22.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:01e73b85a5434f89fc4fe27dcda2aff08ddf35e4d47bbbea3bdcd25321af538a", size = 93424, upload-time = "2025-10-06T14:10:16.115Z" }, + { url = "https://files.pythonhosted.org/packages/18/91/3274b215fd8442a03975ce6bee5fe6aa57a8326b29b9d3d56234a1dca244/yarl-1.22.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:22965c2af250d20c873cdbee8ff958fb809940aeb2e74ba5f20aaf6b7ac8c70c", size = 93821, upload-time = "2025-10-06T14:10:17.993Z" }, + { url = "https://files.pythonhosted.org/packages/61/3a/caf4e25036db0f2da4ca22a353dfeb3c9d3c95d2761ebe9b14df8fc16eb0/yarl-1.22.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b4f15793aa49793ec8d1c708ab7f9eded1aa72edc5174cae703651555ed1b601", size = 373243, upload-time = "2025-10-06T14:10:19.44Z" }, + { url = "https://files.pythonhosted.org/packages/6e/9e/51a77ac7516e8e7803b06e01f74e78649c24ee1021eca3d6a739cb6ea49c/yarl-1.22.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:e5542339dcf2747135c5c85f68680353d5cb9ffd741c0f2e8d832d054d41f35a", size = 342361, upload-time = "2025-10-06T14:10:21.124Z" }, + { url = "https://files.pythonhosted.org/packages/d4/f8/33b92454789dde8407f156c00303e9a891f1f51a0330b0fad7c909f87692/yarl-1.22.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:5c401e05ad47a75869c3ab3e35137f8468b846770587e70d71e11de797d113df", size = 387036, upload-time = "2025-10-06T14:10:22.902Z" }, + { url = "https://files.pythonhosted.org/packages/d9/9a/c5db84ea024f76838220280f732970aa4ee154015d7f5c1bfb60a267af6f/yarl-1.22.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:243dda95d901c733f5b59214d28b0120893d91777cb8aa043e6ef059d3cddfe2", size = 397671, upload-time = "2025-10-06T14:10:24.523Z" }, + { url = "https://files.pythonhosted.org/packages/11/c9/cd8538dc2e7727095e0c1d867bad1e40c98f37763e6d995c1939f5fdc7b1/yarl-1.22.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:bec03d0d388060058f5d291a813f21c011041938a441c593374da6077fe21b1b", size = 377059, upload-time = "2025-10-06T14:10:26.406Z" }, + { url = "https://files.pythonhosted.org/packages/a1/b9/ab437b261702ced75122ed78a876a6dec0a1b0f5e17a4ac7a9a2482d8abe/yarl-1.22.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:b0748275abb8c1e1e09301ee3cf90c8a99678a4e92e4373705f2a2570d581273", size = 365356, upload-time = "2025-10-06T14:10:28.461Z" }, + { url = "https://files.pythonhosted.org/packages/b2/9d/8e1ae6d1d008a9567877b08f0ce4077a29974c04c062dabdb923ed98e6fe/yarl-1.22.0-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:47fdb18187e2a4e18fda2c25c05d8251a9e4a521edaed757fef033e7d8498d9a", size = 361331, upload-time = "2025-10-06T14:10:30.541Z" }, + { url = "https://files.pythonhosted.org/packages/ca/5a/09b7be3905962f145b73beb468cdd53db8aa171cf18c80400a54c5b82846/yarl-1.22.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:c7044802eec4524fde550afc28edda0dd5784c4c45f0be151a2d3ba017daca7d", size = 382590, upload-time = "2025-10-06T14:10:33.352Z" }, + { url = "https://files.pythonhosted.org/packages/aa/7f/59ec509abf90eda5048b0bc3e2d7b5099dffdb3e6b127019895ab9d5ef44/yarl-1.22.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:139718f35149ff544caba20fce6e8a2f71f1e39b92c700d8438a0b1d2a631a02", size = 385316, upload-time = "2025-10-06T14:10:35.034Z" }, + { url = "https://files.pythonhosted.org/packages/e5/84/891158426bc8036bfdfd862fabd0e0fa25df4176ec793e447f4b85cf1be4/yarl-1.22.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:e1b51bebd221006d3d2f95fbe124b22b247136647ae5dcc8c7acafba66e5ee67", size = 374431, upload-time = "2025-10-06T14:10:37.76Z" }, + { url = "https://files.pythonhosted.org/packages/bb/49/03da1580665baa8bef5e8ed34c6df2c2aca0a2f28bf397ed238cc1bbc6f2/yarl-1.22.0-cp313-cp313-win32.whl", hash = "sha256:d3e32536234a95f513bd374e93d717cf6b2231a791758de6c509e3653f234c95", size = 81555, upload-time = "2025-10-06T14:10:39.649Z" }, + { url = "https://files.pythonhosted.org/packages/9a/ee/450914ae11b419eadd067c6183ae08381cfdfcb9798b90b2b713bbebddda/yarl-1.22.0-cp313-cp313-win_amd64.whl", hash = "sha256:47743b82b76d89a1d20b83e60d5c20314cbd5ba2befc9cda8f28300c4a08ed4d", size = 86965, upload-time = "2025-10-06T14:10:41.313Z" }, + { url = "https://files.pythonhosted.org/packages/98/4d/264a01eae03b6cf629ad69bae94e3b0e5344741e929073678e84bf7a3e3b/yarl-1.22.0-cp313-cp313-win_arm64.whl", hash = "sha256:5d0fcda9608875f7d052eff120c7a5da474a6796fe4d83e152e0e4d42f6d1a9b", size = 81205, upload-time = "2025-10-06T14:10:43.167Z" }, + { url = "https://files.pythonhosted.org/packages/88/fc/6908f062a2f77b5f9f6d69cecb1747260831ff206adcbc5b510aff88df91/yarl-1.22.0-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:719ae08b6972befcba4310e49edb1161a88cdd331e3a694b84466bd938a6ab10", size = 146209, upload-time = "2025-10-06T14:10:44.643Z" }, + { url = "https://files.pythonhosted.org/packages/65/47/76594ae8eab26210b4867be6f49129861ad33da1f1ebdf7051e98492bf62/yarl-1.22.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:47d8a5c446df1c4db9d21b49619ffdba90e77c89ec6e283f453856c74b50b9e3", size = 95966, upload-time = "2025-10-06T14:10:46.554Z" }, + { url = "https://files.pythonhosted.org/packages/ab/ce/05e9828a49271ba6b5b038b15b3934e996980dd78abdfeb52a04cfb9467e/yarl-1.22.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:cfebc0ac8333520d2d0423cbbe43ae43c8838862ddb898f5ca68565e395516e9", size = 97312, upload-time = "2025-10-06T14:10:48.007Z" }, + { url = "https://files.pythonhosted.org/packages/d1/c5/7dffad5e4f2265b29c9d7ec869c369e4223166e4f9206fc2243ee9eea727/yarl-1.22.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:4398557cbf484207df000309235979c79c4356518fd5c99158c7d38203c4da4f", size = 361967, upload-time = "2025-10-06T14:10:49.997Z" }, + { url = "https://files.pythonhosted.org/packages/50/b2/375b933c93a54bff7fc041e1a6ad2c0f6f733ffb0c6e642ce56ee3b39970/yarl-1.22.0-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:2ca6fd72a8cd803be290d42f2dec5cdcd5299eeb93c2d929bf060ad9efaf5de0", size = 323949, upload-time = "2025-10-06T14:10:52.004Z" }, + { url = "https://files.pythonhosted.org/packages/66/50/bfc2a29a1d78644c5a7220ce2f304f38248dc94124a326794e677634b6cf/yarl-1.22.0-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:ca1f59c4e1ab6e72f0a23c13fca5430f889634166be85dbf1013683e49e3278e", size = 361818, upload-time = "2025-10-06T14:10:54.078Z" }, + { url = "https://files.pythonhosted.org/packages/46/96/f3941a46af7d5d0f0498f86d71275696800ddcdd20426298e572b19b91ff/yarl-1.22.0-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:6c5010a52015e7c70f86eb967db0f37f3c8bd503a695a49f8d45700144667708", size = 372626, upload-time = "2025-10-06T14:10:55.767Z" }, + { url = "https://files.pythonhosted.org/packages/c1/42/8b27c83bb875cd89448e42cd627e0fb971fa1675c9ec546393d18826cb50/yarl-1.22.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9d7672ecf7557476642c88497c2f8d8542f8e36596e928e9bcba0e42e1e7d71f", size = 341129, upload-time = "2025-10-06T14:10:57.985Z" }, + { url = "https://files.pythonhosted.org/packages/49/36/99ca3122201b382a3cf7cc937b95235b0ac944f7e9f2d5331d50821ed352/yarl-1.22.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:3b7c88eeef021579d600e50363e0b6ee4f7f6f728cd3486b9d0f3ee7b946398d", size = 346776, upload-time = "2025-10-06T14:10:59.633Z" }, + { url = "https://files.pythonhosted.org/packages/85/b4/47328bf996acd01a4c16ef9dcd2f59c969f495073616586f78cd5f2efb99/yarl-1.22.0-cp313-cp313t-musllinux_1_2_armv7l.whl", hash = "sha256:f4afb5c34f2c6fecdcc182dfcfc6af6cccf1aa923eed4d6a12e9d96904e1a0d8", size = 334879, upload-time = "2025-10-06T14:11:01.454Z" }, + { url = "https://files.pythonhosted.org/packages/c2/ad/b77d7b3f14a4283bffb8e92c6026496f6de49751c2f97d4352242bba3990/yarl-1.22.0-cp313-cp313t-musllinux_1_2_ppc64le.whl", hash = "sha256:59c189e3e99a59cf8d83cbb31d4db02d66cda5a1a4374e8a012b51255341abf5", size = 350996, upload-time = "2025-10-06T14:11:03.452Z" }, + { url = "https://files.pythonhosted.org/packages/81/c8/06e1d69295792ba54d556f06686cbd6a7ce39c22307100e3fb4a2c0b0a1d/yarl-1.22.0-cp313-cp313t-musllinux_1_2_s390x.whl", hash = "sha256:5a3bf7f62a289fa90f1990422dc8dff5a458469ea71d1624585ec3a4c8d6960f", size = 356047, upload-time = "2025-10-06T14:11:05.115Z" }, + { url = "https://files.pythonhosted.org/packages/4b/b8/4c0e9e9f597074b208d18cef227d83aac36184bfbc6eab204ea55783dbc5/yarl-1.22.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:de6b9a04c606978fdfe72666fa216ffcf2d1a9f6a381058d4378f8d7b1e5de62", size = 342947, upload-time = "2025-10-06T14:11:08.137Z" }, + { url = "https://files.pythonhosted.org/packages/e0/e5/11f140a58bf4c6ad7aca69a892bff0ee638c31bea4206748fc0df4ebcb3a/yarl-1.22.0-cp313-cp313t-win32.whl", hash = "sha256:1834bb90991cc2999f10f97f5f01317f99b143284766d197e43cd5b45eb18d03", size = 86943, upload-time = "2025-10-06T14:11:10.284Z" }, + { url = "https://files.pythonhosted.org/packages/31/74/8b74bae38ed7fe6793d0c15a0c8207bbb819cf287788459e5ed230996cdd/yarl-1.22.0-cp313-cp313t-win_amd64.whl", hash = "sha256:ff86011bd159a9d2dfc89c34cfd8aff12875980e3bd6a39ff097887520e60249", size = 93715, upload-time = "2025-10-06T14:11:11.739Z" }, + { url = "https://files.pythonhosted.org/packages/69/66/991858aa4b5892d57aef7ee1ba6b4d01ec3b7eb3060795d34090a3ca3278/yarl-1.22.0-cp313-cp313t-win_arm64.whl", hash = "sha256:7861058d0582b847bc4e3a4a4c46828a410bca738673f35a29ba3ca5db0b473b", size = 83857, upload-time = "2025-10-06T14:11:13.586Z" }, + { url = "https://files.pythonhosted.org/packages/46/b3/e20ef504049f1a1c54a814b4b9bed96d1ac0e0610c3b4da178f87209db05/yarl-1.22.0-cp314-cp314-macosx_10_13_universal2.whl", hash = "sha256:34b36c2c57124530884d89d50ed2c1478697ad7473efd59cfd479945c95650e4", size = 140520, upload-time = "2025-10-06T14:11:15.465Z" }, + { url = "https://files.pythonhosted.org/packages/e4/04/3532d990fdbab02e5ede063676b5c4260e7f3abea2151099c2aa745acc4c/yarl-1.22.0-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:0dd9a702591ca2e543631c2a017e4a547e38a5c0f29eece37d9097e04a7ac683", size = 93504, upload-time = "2025-10-06T14:11:17.106Z" }, + { url = "https://files.pythonhosted.org/packages/11/63/ff458113c5c2dac9a9719ac68ee7c947cb621432bcf28c9972b1c0e83938/yarl-1.22.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:594fcab1032e2d2cc3321bb2e51271e7cd2b516c7d9aee780ece81b07ff8244b", size = 94282, upload-time = "2025-10-06T14:11:19.064Z" }, + { url = "https://files.pythonhosted.org/packages/a7/bc/315a56aca762d44a6aaaf7ad253f04d996cb6b27bad34410f82d76ea8038/yarl-1.22.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f3d7a87a78d46a2e3d5b72587ac14b4c16952dd0887dbb051451eceac774411e", size = 372080, upload-time = "2025-10-06T14:11:20.996Z" }, + { url = "https://files.pythonhosted.org/packages/3f/3f/08e9b826ec2e099ea6e7c69a61272f4f6da62cb5b1b63590bb80ca2e4a40/yarl-1.22.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:852863707010316c973162e703bddabec35e8757e67fcb8ad58829de1ebc8590", size = 338696, upload-time = "2025-10-06T14:11:22.847Z" }, + { url = "https://files.pythonhosted.org/packages/e3/9f/90360108e3b32bd76789088e99538febfea24a102380ae73827f62073543/yarl-1.22.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:131a085a53bfe839a477c0845acf21efc77457ba2bcf5899618136d64f3303a2", size = 387121, upload-time = "2025-10-06T14:11:24.889Z" }, + { url = "https://files.pythonhosted.org/packages/98/92/ab8d4657bd5b46a38094cfaea498f18bb70ce6b63508fd7e909bd1f93066/yarl-1.22.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:078a8aefd263f4d4f923a9677b942b445a2be970ca24548a8102689a3a8ab8da", size = 394080, upload-time = "2025-10-06T14:11:27.307Z" }, + { url = "https://files.pythonhosted.org/packages/f5/e7/d8c5a7752fef68205296201f8ec2bf718f5c805a7a7e9880576c67600658/yarl-1.22.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:bca03b91c323036913993ff5c738d0842fc9c60c4648e5c8d98331526df89784", size = 372661, upload-time = "2025-10-06T14:11:29.387Z" }, + { url = "https://files.pythonhosted.org/packages/b6/2e/f4d26183c8db0bb82d491b072f3127fb8c381a6206a3a56332714b79b751/yarl-1.22.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:68986a61557d37bb90d3051a45b91fa3d5c516d177dfc6dd6f2f436a07ff2b6b", size = 364645, upload-time = "2025-10-06T14:11:31.423Z" }, + { url = "https://files.pythonhosted.org/packages/80/7c/428e5812e6b87cd00ee8e898328a62c95825bf37c7fa87f0b6bb2ad31304/yarl-1.22.0-cp314-cp314-musllinux_1_2_armv7l.whl", hash = "sha256:4792b262d585ff0dff6bcb787f8492e40698443ec982a3568c2096433660c694", size = 355361, upload-time = "2025-10-06T14:11:33.055Z" }, + { url = "https://files.pythonhosted.org/packages/ec/2a/249405fd26776f8b13c067378ef4d7dd49c9098d1b6457cdd152a99e96a9/yarl-1.22.0-cp314-cp314-musllinux_1_2_ppc64le.whl", hash = "sha256:ebd4549b108d732dba1d4ace67614b9545b21ece30937a63a65dd34efa19732d", size = 381451, upload-time = "2025-10-06T14:11:35.136Z" }, + { url = "https://files.pythonhosted.org/packages/67/a8/fb6b1adbe98cf1e2dd9fad71003d3a63a1bc22459c6e15f5714eb9323b93/yarl-1.22.0-cp314-cp314-musllinux_1_2_s390x.whl", hash = "sha256:f87ac53513d22240c7d59203f25cc3beac1e574c6cd681bbfd321987b69f95fd", size = 383814, upload-time = "2025-10-06T14:11:37.094Z" }, + { url = "https://files.pythonhosted.org/packages/d9/f9/3aa2c0e480fb73e872ae2814c43bc1e734740bb0d54e8cb2a95925f98131/yarl-1.22.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:22b029f2881599e2f1b06f8f1db2ee63bd309e2293ba2d566e008ba12778b8da", size = 370799, upload-time = "2025-10-06T14:11:38.83Z" }, + { url = "https://files.pythonhosted.org/packages/50/3c/af9dba3b8b5eeb302f36f16f92791f3ea62e3f47763406abf6d5a4a3333b/yarl-1.22.0-cp314-cp314-win32.whl", hash = "sha256:6a635ea45ba4ea8238463b4f7d0e721bad669f80878b7bfd1f89266e2ae63da2", size = 82990, upload-time = "2025-10-06T14:11:40.624Z" }, + { url = "https://files.pythonhosted.org/packages/ac/30/ac3a0c5bdc1d6efd1b41fa24d4897a4329b3b1e98de9449679dd327af4f0/yarl-1.22.0-cp314-cp314-win_amd64.whl", hash = "sha256:0d6e6885777af0f110b0e5d7e5dda8b704efed3894da26220b7f3d887b839a79", size = 88292, upload-time = "2025-10-06T14:11:42.578Z" }, + { url = "https://files.pythonhosted.org/packages/df/0a/227ab4ff5b998a1b7410abc7b46c9b7a26b0ca9e86c34ba4b8d8bc7c63d5/yarl-1.22.0-cp314-cp314-win_arm64.whl", hash = "sha256:8218f4e98d3c10d683584cb40f0424f4b9fd6e95610232dd75e13743b070ee33", size = 82888, upload-time = "2025-10-06T14:11:44.863Z" }, + { url = "https://files.pythonhosted.org/packages/06/5e/a15eb13db90abd87dfbefb9760c0f3f257ac42a5cac7e75dbc23bed97a9f/yarl-1.22.0-cp314-cp314t-macosx_10_13_universal2.whl", hash = "sha256:45c2842ff0e0d1b35a6bf1cd6c690939dacb617a70827f715232b2e0494d55d1", size = 146223, upload-time = "2025-10-06T14:11:46.796Z" }, + { url = "https://files.pythonhosted.org/packages/18/82/9665c61910d4d84f41a5bf6837597c89e665fa88aa4941080704645932a9/yarl-1.22.0-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:d947071e6ebcf2e2bee8fce76e10faca8f7a14808ca36a910263acaacef08eca", size = 95981, upload-time = "2025-10-06T14:11:48.845Z" }, + { url = "https://files.pythonhosted.org/packages/5d/9a/2f65743589809af4d0a6d3aa749343c4b5f4c380cc24a8e94a3c6625a808/yarl-1.22.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:334b8721303e61b00019474cc103bdac3d7b1f65e91f0bfedeec2d56dfe74b53", size = 97303, upload-time = "2025-10-06T14:11:50.897Z" }, + { url = "https://files.pythonhosted.org/packages/b0/ab/5b13d3e157505c43c3b43b5a776cbf7b24a02bc4cccc40314771197e3508/yarl-1.22.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1e7ce67c34138a058fd092f67d07a72b8e31ff0c9236e751957465a24b28910c", size = 361820, upload-time = "2025-10-06T14:11:52.549Z" }, + { url = "https://files.pythonhosted.org/packages/fb/76/242a5ef4677615cf95330cfc1b4610e78184400699bdda0acb897ef5e49a/yarl-1.22.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:d77e1b2c6d04711478cb1c4ab90db07f1609ccf06a287d5607fcd90dc9863acf", size = 323203, upload-time = "2025-10-06T14:11:54.225Z" }, + { url = "https://files.pythonhosted.org/packages/8c/96/475509110d3f0153b43d06164cf4195c64d16999e0c7e2d8a099adcd6907/yarl-1.22.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:c4647674b6150d2cae088fc07de2738a84b8bcedebef29802cf0b0a82ab6face", size = 363173, upload-time = "2025-10-06T14:11:56.069Z" }, + { url = "https://files.pythonhosted.org/packages/c9/66/59db471aecfbd559a1fd48aedd954435558cd98c7d0da8b03cc6c140a32c/yarl-1.22.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:efb07073be061c8f79d03d04139a80ba33cbd390ca8f0297aae9cce6411e4c6b", size = 373562, upload-time = "2025-10-06T14:11:58.783Z" }, + { url = "https://files.pythonhosted.org/packages/03/1f/c5d94abc91557384719da10ff166b916107c1b45e4d0423a88457071dd88/yarl-1.22.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:e51ac5435758ba97ad69617e13233da53908beccc6cfcd6c34bbed8dcbede486", size = 339828, upload-time = "2025-10-06T14:12:00.686Z" }, + { url = "https://files.pythonhosted.org/packages/5f/97/aa6a143d3afba17b6465733681c70cf175af89f76ec8d9286e08437a7454/yarl-1.22.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:33e32a0dd0c8205efa8e83d04fc9f19313772b78522d1bdc7d9aed706bfd6138", size = 347551, upload-time = "2025-10-06T14:12:02.628Z" }, + { url = "https://files.pythonhosted.org/packages/43/3c/45a2b6d80195959239a7b2a8810506d4eea5487dce61c2a3393e7fc3c52e/yarl-1.22.0-cp314-cp314t-musllinux_1_2_armv7l.whl", hash = "sha256:bf4a21e58b9cde0e401e683ebd00f6ed30a06d14e93f7c8fd059f8b6e8f87b6a", size = 334512, upload-time = "2025-10-06T14:12:04.871Z" }, + { url = "https://files.pythonhosted.org/packages/86/a0/c2ab48d74599c7c84cb104ebd799c5813de252bea0f360ffc29d270c2caa/yarl-1.22.0-cp314-cp314t-musllinux_1_2_ppc64le.whl", hash = "sha256:e4b582bab49ac33c8deb97e058cd67c2c50dac0dd134874106d9c774fd272529", size = 352400, upload-time = "2025-10-06T14:12:06.624Z" }, + { url = "https://files.pythonhosted.org/packages/32/75/f8919b2eafc929567d3d8411f72bdb1a2109c01caaab4ebfa5f8ffadc15b/yarl-1.22.0-cp314-cp314t-musllinux_1_2_s390x.whl", hash = "sha256:0b5bcc1a9c4839e7e30b7b30dd47fe5e7e44fb7054ec29b5bb8d526aa1041093", size = 357140, upload-time = "2025-10-06T14:12:08.362Z" }, + { url = "https://files.pythonhosted.org/packages/cf/72/6a85bba382f22cf78add705d8c3731748397d986e197e53ecc7835e76de7/yarl-1.22.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:c0232bce2170103ec23c454e54a57008a9a72b5d1c3105dc2496750da8cfa47c", size = 341473, upload-time = "2025-10-06T14:12:10.994Z" }, + { url = "https://files.pythonhosted.org/packages/35/18/55e6011f7c044dc80b98893060773cefcfdbf60dfefb8cb2f58b9bacbd83/yarl-1.22.0-cp314-cp314t-win32.whl", hash = "sha256:8009b3173bcd637be650922ac455946197d858b3630b6d8787aa9e5c4564533e", size = 89056, upload-time = "2025-10-06T14:12:13.317Z" }, + { url = "https://files.pythonhosted.org/packages/f9/86/0f0dccb6e59a9e7f122c5afd43568b1d31b8ab7dda5f1b01fb5c7025c9a9/yarl-1.22.0-cp314-cp314t-win_amd64.whl", hash = "sha256:9fb17ea16e972c63d25d4a97f016d235c78dd2344820eb35bc034bc32012ee27", size = 96292, upload-time = "2025-10-06T14:12:15.398Z" }, + { url = "https://files.pythonhosted.org/packages/48/b7/503c98092fb3b344a179579f55814b613c1fbb1c23b3ec14a7b008a66a6e/yarl-1.22.0-cp314-cp314t-win_arm64.whl", hash = "sha256:9f6d73c1436b934e3f01df1e1b21ff765cd1d28c77dfb9ace207f746d4610ee1", size = 85171, upload-time = "2025-10-06T14:12:16.935Z" }, + { url = "https://files.pythonhosted.org/packages/73/ae/b48f95715333080afb75a4504487cbe142cae1268afc482d06692d605ae6/yarl-1.22.0-py3-none-any.whl", hash = "sha256:1380560bdba02b6b6c90de54133c81c9f2a453dee9912fe58c1dcced1edb7cff", size = 46814, upload-time = "2025-10-06T14:12:53.872Z" }, ] [[package]] name = "zc-lockfile" -version = "3.0.post1" +version = "4.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "setuptools" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/5b/83/a5432aa08312fc834ea594473385c005525e6a80d768a2ad246e78877afd/zc.lockfile-3.0.post1.tar.gz", hash = "sha256:adb2ee6d9e6a2333c91178dcb2c9b96a5744c78edb7712dc784a7d75648e81ec", size = 10190, upload-time = "2023-02-28T07:30:13.994Z" } +sdist = { url = "https://files.pythonhosted.org/packages/10/9a/2fef89272d98b799e4daa50201c5582ec76bdd4e92a1a7e3deb74c52b7fa/zc_lockfile-4.0.tar.gz", hash = "sha256:d3ab0f53974296a806db3219b9191ba0e6d5cbbd1daa2e0d17208cb9b29d2102", size = 10956, upload-time = "2025-09-18T07:32:34.412Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/a7/aa/47f00f32605177a945f3a1b36a1b2bb9a39260566541280fcee27cbff5cf/zc.lockfile-3.0.post1-py3-none-any.whl", hash = "sha256:ddb2d71088c061dc8a5edbaa346b637d742ca1e1564be75cb98e7dcae715de19", size = 9770, upload-time = "2023-02-28T07:30:12.145Z" }, + { url = "https://files.pythonhosted.org/packages/3b/7f/3a614b65bc4b181578b1d50a78663ee02d5d2d3b859712f3d3597c8afe6f/zc_lockfile-4.0-py3-none-any.whl", hash = "sha256:aa3aa295257bebaa09ea9ad5cb288bf9f98f88de6932f96b6659f62715d83581", size = 9143, upload-time = "2025-09-18T07:32:33.517Z" }, ] [[package]] name = "zndraw" -version = "0.5.10" +version = "0.5.11" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "ase" }, @@ -16334,8 +15407,7 @@ dependencies = [ { name = "eventlet" }, { name = "flask" }, { name = "flask-socketio" }, - { name = "networkx", version = "3.4.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, - { name = "networkx", version = "3.5", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "networkx" }, { name = "pandas" }, { name = "plotly" }, { name = "pydantic" }, @@ -16348,9 +15420,9 @@ dependencies = [ { name = "znjson" }, { name = "znsocket" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/1f/6c/2d8ac15d26bf4c29d677bfd50fa7b73565d5419d634584654ccb984e6f43/zndraw-0.5.10.tar.gz", hash = "sha256:bc4336494b4e50697538f8c09dd26d5e979b1b5e83f5c61625ac5de8e4ba2952", size = 6852599, upload-time = "2025-02-19T08:30:55.356Z" } +sdist = { url = "https://files.pythonhosted.org/packages/ef/21/63a767f19957d3efced39e7add3929891dd3d91825cada49baab853421eb/zndraw-0.5.11.tar.gz", hash = "sha256:ddfac6d9347480093ccd66e8a130d547a9bb1a31f9a2772886cde95d0a9db8d4", size = 6917326, upload-time = "2025-08-21T09:08:17.461Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/79/0b/a430a1fc2cbcfc35c91eba53bdf3b1b66b16abccc0d95f878b0059af10dd/zndraw-0.5.10-py3-none-any.whl", hash = "sha256:cbd850d548fb41777826c64e5a68c5b8afd243578ee258fd294b6cb3d84fc4ca", size = 3442726, upload-time = "2025-02-19T08:30:51.166Z" }, + { url = "https://files.pythonhosted.org/packages/5e/10/1b3a2f83e716110292ae90b08349a3c9ef00f5706d07ae508666d085043b/zndraw-0.5.11-py3-none-any.whl", hash = "sha256:cf9695122c811801da5433a4c28643caff13abe95072e6b403fce1d8b214e072", size = 3442726, upload-time = "2025-08-21T09:08:15.483Z" }, ] [[package]] @@ -16364,20 +15436,19 @@ wheels = [ [[package]] name = "znflow" -version = "0.2.5" +version = "0.2.7" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "networkx", version = "3.4.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, - { name = "networkx", version = "3.5", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11' or (extra == 'extra-5-mlipx-chgnet' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-grace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mace') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-matpes') or (extra == 'extra-5-mlipx-fairchem' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-mattersim') or (extra == 'extra-5-mlipx-mace' and extra == 'extra-5-mlipx-sevenn') or (extra == 'extra-5-mlipx-matpes' and extra == 'extra-5-mlipx-orb')" }, + { name = "networkx" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/8e/bc/6317d604bfafe626a59e5b3e83605e49735ccf5ac4483e6f9d026a1e9661/znflow-0.2.5.tar.gz", hash = "sha256:6e6773fe29333041292046785efbd9e83ddafac9a9345d153cd7e077b62544d5", size = 209711, upload-time = "2025-02-20T14:21:17.525Z" } +sdist = { url = "https://files.pythonhosted.org/packages/3c/50/c3f3738ae15f6e542939db41393105f0266889d4bd6ae550e7cc23c7001a/znflow-0.2.7.tar.gz", hash = "sha256:12f3584c6ba93250e93e2e63b7d600cc68bb39b6dd19e0f605a7430118863d91", size = 236297, upload-time = "2025-09-24T08:58:35.62Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/7e/ea/a3f7ddeec7ac3f4a3f501f762c403c8c64be63e0323e49148b2c09b77473/znflow-0.2.5-py3-none-any.whl", hash = "sha256:5cf25a022068e8353b69ad7a968eab6cee7c5999b30317bbdcfda5bc675f1178", size = 23050, upload-time = "2025-02-20T14:21:16.072Z" }, + { url = "https://files.pythonhosted.org/packages/e5/67/680655ae0444a3710f67259dcdbb3583ed0b93634aa82ffd18cf582e3150/znflow-0.2.7-py3-none-any.whl", hash = "sha256:cd2e45edc2e78a50c465a7045370ddd0a28faa67962d44dbcabd49540b11e72d", size = 23227, upload-time = "2025-09-24T08:58:34.713Z" }, ] [[package]] name = "znh5md" -version = "0.4.6" +version = "0.4.8" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "ase" }, @@ -16385,9 +15456,9 @@ dependencies = [ { name = "tqdm" }, { name = "typer" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/c8/0b/d57f54d7abb94002f29e636578890dd02793a3ec4a56b369c9551d1d9a66/znh5md-0.4.6.tar.gz", hash = "sha256:40d6908ee5c8fe0177e86ddc15eda5daa0795576042c96e5cff193bd4a0cdf24", size = 172235, upload-time = "2025-05-28T05:55:09.53Z" } +sdist = { url = "https://files.pythonhosted.org/packages/93/d4/50b9ad618d799983823ef4087033dcb7e90ffe95cb02fbdda01cd7fa0d66/znh5md-0.4.8.tar.gz", hash = "sha256:9dd02d45b5ed766e2f6a0c5b8c926cd15e5a8b9c3a80cab0303f518b129f16ac", size = 203729, upload-time = "2025-07-09T10:09:33.353Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/f0/50/134ab1e3b71ac78e40b94fe4b969ca75991f2c3e04dbe9e53e621794d049/znh5md-0.4.6-py3-none-any.whl", hash = "sha256:6107925aad479ffa8d6da4f769f7a0b07d21a60d0c3784f64a63a8d3eb322dad", size = 22984, upload-time = "2025-05-28T05:55:08.178Z" }, + { url = "https://files.pythonhosted.org/packages/81/03/4ceb3cec2f1b466c2c4dc609fd236dc064a1da1c612c89c12d2afeeaf0a0/znh5md-0.4.8-py3-none-any.whl", hash = "sha256:83e7c82424ae94e6b4d8a1704447c32eb7303e0c11c4d73605482fe0911ce267", size = 24424, upload-time = "2025-07-09T10:09:32.385Z" }, ] [[package]] @@ -16417,7 +15488,7 @@ wheels = [ [[package]] name = "zntrack" -version = "0.8.7" +version = "0.8.9" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "dvc" }, @@ -16429,7 +15500,7 @@ dependencies = [ { name = "znflow" }, { name = "znjson" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/b0/8a/a48a9beeb0817bf5a48153275559ed5ba2c2d65b892d000c278a3ce48653/zntrack-0.8.7.tar.gz", hash = "sha256:fc51eb7a96cf5d3baf24f413895748e7de1404ba931928267f5fcb2e140ab85b", size = 345873, upload-time = "2025-05-15T14:40:22.564Z" } +sdist = { url = "https://files.pythonhosted.org/packages/bb/f1/7ee60e2bfa3a5fb424459f0d8b818f9e48c4848ce848bd729c790c5c1b2c/zntrack-0.8.9.tar.gz", hash = "sha256:c7c8f7dd554fec761c5f120eef672479c252a1b4ce3749ce72f7a73e58f6ef54", size = 467387, upload-time = "2025-08-08T13:27:54.892Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/b7/e3/8540c753dc6d30ca1cec0789b431921961017eadd80b5f85a6f32a02bd26/zntrack-0.8.7-py3-none-any.whl", hash = "sha256:2eb2e8f4c9ea7d066a02ab28597e7ca21f1983035aad73c9f624aaba34b68316", size = 61030, upload-time = "2025-05-15T14:40:21.498Z" }, + { url = "https://files.pythonhosted.org/packages/5a/81/08d56f60f6c31510dec674e888953b109169659d742df839470d3cf1e073/zntrack-0.8.9-py3-none-any.whl", hash = "sha256:afb20f042b1a4d32f693b06eb2ad6ce6273ab6d52a9601a5cc18c964d041471f", size = 68314, upload-time = "2025-08-08T13:27:53.465Z" }, ] From 57c0f51db8e5fcbe3565708fa3b4a4f753fa0812 Mon Sep 17 00:00:00 2001 From: Fabian Zills <46721498+PythonFZ@users.noreply.github.com> Date: Thu, 4 Dec 2025 15:38:06 +0100 Subject: [PATCH 4/4] Add Python 3.13 to CI workflow matrix --- .github/workflows/pytest.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pytest.yaml b/.github/workflows/pytest.yaml index b6c17f20..d9a44946 100644 --- a/.github/workflows/pytest.yaml +++ b/.github/workflows/pytest.yaml @@ -14,9 +14,9 @@ jobs: fail-fast: false matrix: python-version: + - "3.13" - "3.12" - "3.11" - - "3.10" os: - ubuntu-latest